Home
last modified time | relevance | path

Searched full:estimate (Results 1 – 25 of 602) sorted by relevance

12345678910>>...25

/kernel/linux/linux-5.10/arch/x86/math-emu/
Dwm_sqrt.S94 /* We use a rough linear estimate for the first guess.. */
111 /* Make a linear first estimate */
131 * From our initial estimate, three iterations are enough to get us
141 divl %esi /* current estimate */
143 addl %eax,%esi /* the new estimate */
156 * Now that an estimate accurate to about 30 bits has been obtained (in %esi),
204 /* Form the new estimate in %esi:%edi */
356 /* First, the estimate must be rounded up. */
363 * We need just find the square of our estimate, compare it
364 * with the argument, and deduce whether our estimate is
[all …]
/kernel/linux/linux-6.6/arch/x86/math-emu/
Dwm_sqrt.S94 /* We use a rough linear estimate for the first guess.. */
111 /* Make a linear first estimate */
131 * From our initial estimate, three iterations are enough to get us
141 divl %esi /* current estimate */
143 addl %eax,%esi /* the new estimate */
156 * Now that an estimate accurate to about 30 bits has been obtained (in %esi),
204 /* Form the new estimate in %esi:%edi */
356 /* First, the estimate must be rounded up. */
363 * We need just find the square of our estimate, compare it
364 * with the argument, and deduce whether our estimate is
[all …]
/kernel/linux/linux-6.6/init/
Dcalibrate.c122 unsigned long estimate; in calibrate_delay_direct() local
125 /* compute the estimate */ in calibrate_delay_direct()
126 estimate = (good_timer_sum/good_timer_count); in calibrate_delay_direct()
127 maxdiff = estimate >> 3; in calibrate_delay_direct()
131 return estimate; in calibrate_delay_direct()
136 if ((measured_times[max] - estimate) < in calibrate_delay_direct()
137 (estimate - measured_times[min])) { in calibrate_delay_direct()
139 "min bogoMips estimate %d = %lu\n", in calibrate_delay_direct()
145 "max bogoMips estimate %d = %lu\n", in calibrate_delay_direct()
165 "estimate for loops_per_jiffy.\nProbably due to long platform " in calibrate_delay_direct()
[all …]
/kernel/linux/linux-5.10/init/
Dcalibrate.c122 unsigned long estimate; in calibrate_delay_direct() local
125 /* compute the estimate */ in calibrate_delay_direct()
126 estimate = (good_timer_sum/good_timer_count); in calibrate_delay_direct()
127 maxdiff = estimate >> 3; in calibrate_delay_direct()
131 return estimate; in calibrate_delay_direct()
136 if ((measured_times[max] - estimate) < in calibrate_delay_direct()
137 (estimate - measured_times[min])) { in calibrate_delay_direct()
139 "min bogoMips estimate %d = %lu\n", in calibrate_delay_direct()
145 "max bogoMips estimate %d = %lu\n", in calibrate_delay_direct()
165 "estimate for loops_per_jiffy.\nProbably due to long platform " in calibrate_delay_direct()
[all …]
/kernel/linux/linux-6.6/include/linux/
Dtfrc.h17 * @tfrcrx_x_recv: receiver estimate of sending rate (3.2.2)
19 * @tfrcrx_p: current estimate of loss event rate (3.2.2)
30 * @tfrctx_x_recv: receiver estimate of send rate (4.3)
32 * @tfrctx_rtt: (moving average) estimate of RTT (4.3)
34 * @tfrctx_rto: estimate of RTO, equals 4*RTT (4.3)
/kernel/linux/linux-5.10/include/linux/
Dtfrc.h17 * @tfrcrx_x_recv: receiver estimate of sending rate (3.2.2)
19 * @tfrcrx_p: current estimate of loss event rate (3.2.2)
30 * @tfrctx_x_recv: receiver estimate of send rate (4.3)
32 * @tfrctx_rtt: (moving average) estimate of RTT (4.3)
34 * @tfrctx_rto: estimate of RTO, equals 4*RTT (4.3)
/kernel/linux/linux-6.6/tools/testing/selftests/seccomp/
Dseccomp_benchmark.c199 #define ESTIMATE(fmt, var, what) do { \ in main() macro
206 ESTIMATE("total seccomp overhead for 1 bitmapped filter", calc, in main()
208 ESTIMATE("total seccomp overhead for 2 bitmapped filters", calc, in main()
210 ESTIMATE("total seccomp overhead for 3 full filters", calc, in main()
212 ESTIMATE("total seccomp overhead for 4 full filters", calc, in main()
214 ESTIMATE("seccomp entry overhead", entry, in main()
216 ESTIMATE("seccomp per-filter overhead (last 2 diff)", per_filter1, in main()
218 ESTIMATE("seccomp per-filter overhead (filters / 4)", per_filter2, in main()
/kernel/linux/linux-6.6/arch/powerpc/lib/
Ddiv64.S32 addc r9,r4,r10 # rounding up (so the estimate cannot
40 2: mullw r10,r11,r4 # to get an estimate of the quotient,
41 mulhwu r9,r11,r4 # multiply the estimate by the divisor,
43 add r8,r8,r11 # and add the estimate to the accumulated
/kernel/linux/linux-5.10/arch/powerpc/lib/
Ddiv64.S32 addc r9,r4,r10 # rounding up (so the estimate cannot
40 2: mullw r10,r11,r4 # to get an estimate of the quotient,
41 mulhwu r9,r11,r4 # multiply the estimate by the divisor,
43 add r8,r8,r11 # and add the estimate to the accumulated
/kernel/linux/linux-6.6/net/ipv4/
Dtcp_bbr.c41 * sample that matches or decreases its min_rtt estimate for 10 seconds, then
106 lt_use_bw:1; /* use lt_bw as our bw estimate? */
119 u32 full_bw; /* recent bw, to estimate if pipe is full */
177 /* To estimate if BBR_STARTUP mode (i.e. high_gain) has filled pipe... */
180 /* But after 3 rounds w/o significant bw growth, estimate pipe is full: */
192 /* If we estimate we're policed, use lt_bw for this many round trips: */
206 /* Do we estimate that STARTUP filled the pipe? */
284 /* Pace using current bw estimate and a gain factor. */
357 * noise may cause BBR to under-estimate the rate.
427 * departure time decisions. We calculate a rough estimate of the number of our
[all …]
/kernel/linux/linux-5.10/net/ipv4/
Dtcp_bbr.c41 * sample that matches or decreases its min_rtt estimate for 10 seconds, then
104 lt_use_bw:1; /* use lt_bw as our bw estimate? */
117 u32 full_bw; /* recent bw, to estimate if pipe is full */
175 /* To estimate if BBR_STARTUP mode (i.e. high_gain) has filled pipe... */
178 /* But after 3 rounds w/o significant bw growth, estimate pipe is full: */
190 /* If we estimate we're policed, use lt_bw for this many round trips: */
204 /* Do we estimate that STARTUP filled the pipe? */
282 /* Pace using current bw estimate and a gain factor. */
355 * noise may cause BBR to under-estimate the rate.
425 * departure time decisions. We calculate a rough estimate of the number of our
[all …]
/kernel/linux/linux-5.10/arch/powerpc/boot/
Ddiv64.S32 addc r9,r4,r10 # rounding up (so the estimate cannot
40 2: mullw r10,r11,r4 # to get an estimate of the quotient,
41 mulhwu r9,r11,r4 # multiply the estimate by the divisor,
43 add r8,r8,r11 # and add the estimate to the accumulated
/kernel/linux/linux-6.6/arch/powerpc/boot/
Ddiv64.S32 addc r9,r4,r10 # rounding up (so the estimate cannot
40 2: mullw r10,r11,r4 # to get an estimate of the quotient,
41 mulhwu r9,r11,r4 # multiply the estimate by the divisor,
43 add r8,r8,r11 # and add the estimate to the accumulated
/kernel/linux/linux-5.10/drivers/net/wireless/broadcom/brcm80211/brcmsmac/phy/
Dphy_hal.h127 u8 est_Pout[4]; /* Latest tx power out estimate per RF chain */
128 u8 est_Pout_act[4]; /* Latest tx power out estimate per RF chain
130 u8 est_Pout_cck; /* Latest CCK tx power out estimate */
145 u8 txpwr_est_Pout[2]; /* Latest estimate for 2.4 and 5 Ghz */
146 u8 txpwr_est_Pout_gofdm; /* Pwr estimate for 2.4 OFDM */
/kernel/linux/linux-6.6/arch/arc/lib/
Dstrcmp.S64 get a low estimate for r2, because in any affected bytes
71 bic_s r2,r2,r0 ; get low estimate for r2 and get ...
73 or_s r3,r3,r0 ; ... high estimate r3 so that r2 > r3 will ...
/kernel/linux/linux-5.10/arch/arc/lib/
Dstrcmp.S64 get a low estimate for r2, because in any affected bytes
71 bic_s r2,r2,r0 ; get low estimate for r2 and get ...
73 or_s r3,r3,r0 ; ... high estimate r3 so that r2 > r3 will ...
/kernel/linux/linux-6.6/net/dccp/ccids/
Dccid3.h69 * @tx_rtt: Estimate of current round trip time in usecs
120 * @rx_x_recv: Receiver estimate of send rate (RFC 3448, sec. 4.3)
121 * @rx_rtt: Receiver estimate of RTT
/kernel/linux/linux-5.10/net/dccp/ccids/
Dccid3.h69 * @tx_rtt: Estimate of current round trip time in usecs
120 * @rx_x_recv: Receiver estimate of send rate (RFC 3448, sec. 4.3)
121 * @rx_rtt: Receiver estimate of RTT
/kernel/linux/linux-6.6/drivers/net/wireless/broadcom/b43/
Dtables_nphy.h107 #define B43_NTAB_CHANEST B43_NTAB32(0x16, 0x000) /* Channel Estimate Table */
117 #define B43_NTAB_C0_ESTPLT B43_NTAB8 (0x1A, 0x000) /* Estimate Power Lookup Table Core 0 */
127 #define B43_NTAB_C1_ESTPLT B43_NTAB8 (0x1B, 0x000) /* Estimate Power Lookup Table Core 1 */
154 #define B43_NTAB_CHANEST_R3 B43_NTAB32(22, 0) /* channel estimate */
Dphy_n.h447 #define B43_NPHY_IQEST_CMD B43_PHY_N(0x129) /* I/Q estimate command */
450 #define B43_NPHY_IQEST_WT B43_PHY_N(0x12A) /* I/Q estimate wait time */
453 #define B43_NPHY_IQEST_SAMCNT B43_PHY_N(0x12B) /* I/Q estimate sample count */
454 #define B43_NPHY_IQEST_IQACC_LO0 B43_PHY_N(0x12C) /* I/Q estimate I/Q acc lo 0 */
455 #define B43_NPHY_IQEST_IQACC_HI0 B43_PHY_N(0x12D) /* I/Q estimate I/Q acc hi 0 */
456 #define B43_NPHY_IQEST_IPACC_LO0 B43_PHY_N(0x12E) /* I/Q estimate I power acc lo 0 */
457 #define B43_NPHY_IQEST_IPACC_HI0 B43_PHY_N(0x12F) /* I/Q estimate I power acc hi 0 */
458 #define B43_NPHY_IQEST_QPACC_LO0 B43_PHY_N(0x130) /* I/Q estimate Q power acc lo 0 */
459 #define B43_NPHY_IQEST_QPACC_HI0 B43_PHY_N(0x131) /* I/Q estimate Q power acc hi 0 */
460 #define B43_NPHY_IQEST_IQACC_LO1 B43_PHY_N(0x134) /* I/Q estimate I/Q acc lo 1 */
[all …]
/kernel/linux/linux-5.10/drivers/net/wireless/broadcom/b43/
Dtables_nphy.h107 #define B43_NTAB_CHANEST B43_NTAB32(0x16, 0x000) /* Channel Estimate Table */
117 #define B43_NTAB_C0_ESTPLT B43_NTAB8 (0x1A, 0x000) /* Estimate Power Lookup Table Core 0 */
127 #define B43_NTAB_C1_ESTPLT B43_NTAB8 (0x1B, 0x000) /* Estimate Power Lookup Table Core 1 */
154 #define B43_NTAB_CHANEST_R3 B43_NTAB32(22, 0) /* channel estimate */
Dphy_n.h447 #define B43_NPHY_IQEST_CMD B43_PHY_N(0x129) /* I/Q estimate command */
450 #define B43_NPHY_IQEST_WT B43_PHY_N(0x12A) /* I/Q estimate wait time */
453 #define B43_NPHY_IQEST_SAMCNT B43_PHY_N(0x12B) /* I/Q estimate sample count */
454 #define B43_NPHY_IQEST_IQACC_LO0 B43_PHY_N(0x12C) /* I/Q estimate I/Q acc lo 0 */
455 #define B43_NPHY_IQEST_IQACC_HI0 B43_PHY_N(0x12D) /* I/Q estimate I/Q acc hi 0 */
456 #define B43_NPHY_IQEST_IPACC_LO0 B43_PHY_N(0x12E) /* I/Q estimate I power acc lo 0 */
457 #define B43_NPHY_IQEST_IPACC_HI0 B43_PHY_N(0x12F) /* I/Q estimate I power acc hi 0 */
458 #define B43_NPHY_IQEST_QPACC_LO0 B43_PHY_N(0x130) /* I/Q estimate Q power acc lo 0 */
459 #define B43_NPHY_IQEST_QPACC_HI0 B43_PHY_N(0x131) /* I/Q estimate Q power acc hi 0 */
460 #define B43_NPHY_IQEST_IQACC_LO1 B43_PHY_N(0x134) /* I/Q estimate I/Q acc lo 1 */
[all …]
/kernel/linux/linux-6.6/tools/perf/pmu-events/arch/powerpc/power9/
Dmetrics.json805 …"BriefDescription": "estimate of dl2l3 distant MOD miss rates with measured DL2L3 MOD latency as a…
811 …"BriefDescription": "estimate of dl2l3 distant SHR miss rates with measured DL2L3 SHR latency as a…
817 …"BriefDescription": "estimate of distant L4 miss rates with measured DL4 latency as a %of dcache m…
823 …"BriefDescription": "estimate of distant memory miss rates with measured DMEM latency as a %of dca…
829 …"BriefDescription": "estimate of dl21 MOD miss rates with measured L21 MOD latency as a %of dcache…
835 …"BriefDescription": "estimate of dl21 SHR miss rates with measured L21 SHR latency as a %of dcache…
841 …"BriefDescription": "estimate of dl2 miss rates with measured L2 latency as a %of dcache miss cpi",
847 …"BriefDescription": "estimate of dl31 MOD miss rates with measured L31 MOD latency as a %of dcache…
853 …"BriefDescription": "estimate of dl31 SHR miss rates with measured L31 SHR latency as a %of dcache…
859 …"BriefDescription": "estimate of dl3 miss rates with measured L3 latency as a % of dcache miss cpi…
[all …]
/kernel/linux/linux-5.10/Documentation/misc-devices/
Dbh1770glc.rst23 but ALS side results are used to estimate reliability of the proximity sensor.
30 8 bit. Driver supports only one channel. Driver uses ALS results to estimate
/kernel/linux/linux-6.6/Documentation/misc-devices/
Dbh1770glc.rst23 but ALS side results are used to estimate reliability of the proximity sensor.
30 8 bit. Driver supports only one channel. Driver uses ALS results to estimate

12345678910>>...25