Home
last modified time | relevance | path

Searched full:throughput (Results 1 – 25 of 347) sorted by relevance

12345678910>>...14

/freebsd/contrib/llvm-project/llvm/lib/MC/
H A DMCSchedule.cpp92 std::optional<double> Throughput; in getReciprocalThroughput() local
101 Throughput = Throughput ? std::min(*Throughput, Temp) : Temp; in getReciprocalThroughput()
103 if (Throughput) in getReciprocalThroughput()
104 return 1.0 / *Throughput; in getReciprocalThroughput()
106 // If no throughput value was calculated, assume that we can execute at the in getReciprocalThroughput()
138 std::optional<double> Throughput; in getReciprocalThroughput() local
145 Throughput = Throughput in getReciprocalThroughput()
[all...]
/freebsd/tools/tools/usbtest/
H A Dusbtest.c194 int throughput = 0; in show_default_audio_select() local
216 len = sizeof(throughput); in show_default_audio_select()
218 error = sysctlbyname("hw.usb.g_audio.throughput", in show_default_audio_select()
219 &throughput, &len, 0, 0); in show_default_audio_select()
222 printf("WARNING: Could not get throughput " in show_default_audio_select()
241 "t: Throughput: %d bytes/second\n", in show_default_audio_select()
246 pattern, pattern_interval, throughput); in show_default_audio_select()
523 int throughput = 0; in show_default_modem_select() local
545 len = sizeof(throughput); in show_default_modem_select()
547 error = sysctlbyname("hw.usb.g_modem.throughput", in show_default_modem_select()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/MCA/
H A DSupport.cpp86 // The block throughput is bounded from above by the hardware dispatch in computeBlockRThroughput()
87 // throughput. That is because the DispatchWidth is an upper bound on the in computeBlockRThroughput()
91 // The block throughput is also limited by the amount of hardware parallelism. in computeBlockRThroughput()
100 double Throughput = static_cast<double>(ReleaseAtCycles) / MCDesc.NumUnits; in computeBlockRThroughput() local
101 Max = std::max(Max, Throughput); in computeBlockRThroughput()
104 // The block reciprocal throughput is computed as the MAX of: in computeBlockRThroughput()
/freebsd/share/doc/smm/05.fastfs/
H A D4.t50 Table 2 summarizes the measured throughput of the new file system.
117 The throughput rate is tied much more strongly to the
121 Synthetic work loads suggest that throughput deteriorates
174 seeks resulting in a lower throughput rate.
204 Greater disk throughput could be achieved by rewriting the disk drivers
226 and the current throughput rates are already limited by the
242 current throughput rates are already limited by the speed
H A D1.t65 system is incapable of providing the data throughput rates
72 need to have a high throughput from the file system.
73 High throughput rates are also needed by programs
89 the underlying implementation to increase its throughput.
H A D2.t96 and many seeks severely limits file system throughput.
99 reliability and throughput.
115 throughput.
116 Although the throughput had doubled,
/freebsd/usr.sbin/ppp/
H A Dipv6cp.c53 #include "throughput.h"
296 throughput_init(&ipv6cp->throughput, SAMPLE_PERIOD); in ipv6cp_Init()
304 throughput_destroy(&ipv6cp->throughput); in ipv6cp_Destroy()
345 throughput_disp(&ipv6cp->throughput, arg->prompt); in ipv6cp_Show()
369 throughput_addin(&ipv6cp->throughput, n); in ipv6cp_AddInOctets()
375 throughput_addout(&ipv6cp->throughput, n); in ipv6cp_AddOutOctets()
481 fp->bundle->links, RAD_START, &ipv6cp->throughput); in ipv6cp_LayerUp()
534 fp->bundle->links, RAD_STOP, &ipv6cp->throughput); in ipv6cp_LayerDown()
578 throughput_start(&ipv6cp->throughput, "IPV6CP throughput", in ipv6cp_LayerStart()
591 throughput_stop(&ipv6cp->throughput); in ipv6cp_LayerFinish()
[all …]
H A Dlink.h46 struct pppThroughput total; /* Link throughput statistics */
47 struct pppThroughput *parent; /* MP link throughput statistics */
H A Dipv6cp.h55 struct pppThroughput throughput; /* throughput statistics */ member
H A Dipcp.c70 #include "throughput.h"
165 throughput_addin(&ipcp->throughput, n); in ipcp_AddInOctets()
171 throughput_addout(&ipcp->throughput, n); in ipcp_AddOutOctets()
416 throughput_disp(&ipcp->throughput, arg->prompt); in ipcp_Show()
494 throughput_init(&ipcp->throughput, SAMPLE_PERIOD); in ipcp_Init()
502 throughput_destroy(&ipcp->throughput); in ipcp_Destroy()
825 throughput_start(&ipcp->throughput, "IPCP throughput", in IpcpLayerStart()
838 throughput_stop(&ipcp->throughput); in IpcpLayerFinish()
839 throughput_log(&ipcp->throughput, LogIPCP, NULL); in IpcpLayerFinish()
881 fp->bundle->links, RAD_STOP, &ipcp->throughput); in IpcpLayerDown()
[all …]
/freebsd/usr.bin/clang/llvm-mca/
H A Dllvm-mca.142 Performance is measured in terms of throughput as well as processor resource
84 throughput, but also to understand what processor resources are available
270 Print information about bottlenecks that affect the throughput. This analysis
627 overview of the performance throughput. Important performance indicators are
629 Throughput).
639 Field \fIBlock RThroughput\fP is the reciprocal of the block throughput. Block
640 throughput is a theoretical quantity computed as the maximum number of blocks
642 of loop carried dependencies. Block throughput is superiorly limited by the
653 maximum throughput which can be computed by dividing the number of uOps of a
670 the Dispatch Width (2.00), and the theoretical maximum uOp throughput (1.50) is
[all …]
/freebsd/contrib/ntp/sntp/libevent/test/
H A Dbench_httpclient.c183 double throughput; in main() local
215 throughput = total_n_handled / in main()
226 printf("\n%d requests in %d.%06d sec. (%.2f throughput)\n" in main()
231 throughput, in main()
/freebsd/contrib/libevent/test/
H A Dbench_httpclient.c183 double throughput; in main() local
215 throughput = total_n_handled / in main()
226 printf("\n%d requests in %d.%06d sec. (%.2f throughput)\n" in main()
231 throughput, in main()
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DCostModel.cpp13 // the throughput of the machine assuming that all loads hit the cache, all
35 "throughput", "Reciprocal throughput"),
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/slog/
H A Dslog_replay_volume.ksh121 log_must zfs set logbias=throughput $TESTPOOL/$TESTVOL
122 log_must dd if=/dev/urandom of=$MNTPNT/throughput-8k bs=8k count=1
123 log_must dd if=/dev/urandom of=$MNTPNT/throughput-128k bs=128k count=1
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/zvol/zvol_misc/
H A Dzvol_misc_zil.ksh54 typeset -a logbias_prop_vals=('latency' 'throughput')
59 # 1. Create a ZVOL with logbias=throughput and sync=always
/freebsd/sbin/dump/
H A Ddumprmt.c126 int throughput; in rmtgetconn() local
168 throughput = IPTOS_THROUGHPUT; in rmtgetconn()
170 &throughput, sizeof(throughput)) < 0) in rmtgetconn()
/freebsd/share/man/man4/
H A Diflib.480 This results in higher transmit throughput.
97 This will lower the maximum throughput, but will also lower transmit latency.
100 Doing so usually increases the transmit throughput by reducing the number of
/freebsd/sys/contrib/dev/iwlwifi/fw/api/
H A Drs.h309 * High-throughput (HT) rate format
311 * Very High-throughput (VHT) rate format
333 * High-throughput (HT) rate format for bits 7:0
367 * Very High-throughput (VHT) rate format for bits 7:0
501 * (0) Legacy CCK (1) Legacy OFDM (2) High-throughput (HT)
502 * (3) Very High-throughput (VHT) (4) High-efficiency (HE)
503 * (5) Extremely High-throughput (EHT)
/freebsd/share/doc/papers/diskperf/
H A Dabs.ms64 throughput for various I/O operations using the most attractive currently
94 arbitration scheme to produce another increase in throughput.
H A Dconclusions.ms32 Peak available throughput is only one criterion
43 to the peak throughput available.
H A Dequip.ms45 two drive throughput.
67 The UDA50 also orders disk requests to maximize throughput
/freebsd/lib/libpmc/pmu-events/arch/x86/silvermont/
H A Dfrontend.json30 …": "Counts the number of times a decode restriction reduced the decode throughput due to wrong ins…
34 …": "Counts the number of times a decode restriction reduced the decode throughput due to wrong ins…
/freebsd/lib/libdpv/
H A Ddpv.3325 can display throughput statistics.
331 Throughput statistics are calculated from the below global
340 Throughput information is displayed in the status line
/freebsd/sys/contrib/device-tree/Bindings/input/touchscreen/
H A Dcypress,cy8ctma340.yaml47 the device on the SPI bus. The throughput is maximum 2 Mbps so the
48 typical value is 2000000, if higher rates are used the total throughput

12345678910>>...14