Home
last modified time | relevance | path

Searched full:reduction (Results 1 – 25 of 545) sorted by relevance

12345678910>>...22

/kernel/linux/linux-5.10/net/ipv4/
Dtcp_yeah.c142 u32 reduction = min(queue / TCP_YEAH_GAMMA , in tcp_yeah_cong_avoid() local
145 tp->snd_cwnd -= reduction; in tcp_yeah_cong_avoid()
191 u32 reduction; in tcp_yeah_ssthresh() local
194 reduction = yeah->lastQ; in tcp_yeah_ssthresh()
196 reduction = min(reduction, max(tp->snd_cwnd>>1, 2U)); in tcp_yeah_ssthresh()
198 reduction = max(reduction, tp->snd_cwnd >> TCP_YEAH_DELTA); in tcp_yeah_ssthresh()
200 reduction = max(tp->snd_cwnd>>1, 2U); in tcp_yeah_ssthresh()
205 return max_t(int, tp->snd_cwnd - reduction, 2); in tcp_yeah_ssthresh()
/kernel/linux/linux-6.6/net/ipv4/
Dtcp_yeah.c142 u32 reduction = min(queue / TCP_YEAH_GAMMA , in tcp_yeah_cong_avoid() local
145 tcp_snd_cwnd_set(tp, tcp_snd_cwnd(tp) - reduction); in tcp_yeah_cong_avoid()
191 u32 reduction; in tcp_yeah_ssthresh() local
194 reduction = yeah->lastQ; in tcp_yeah_ssthresh()
196 reduction = min(reduction, max(tcp_snd_cwnd(tp)>>1, 2U)); in tcp_yeah_ssthresh()
198 reduction = max(reduction, tcp_snd_cwnd(tp) >> TCP_YEAH_DELTA); in tcp_yeah_ssthresh()
200 reduction = max(tcp_snd_cwnd(tp)>>1, 2U); in tcp_yeah_ssthresh()
205 return max_t(int, tcp_snd_cwnd(tp) - reduction, 2); in tcp_yeah_ssthresh()
/kernel/linux/linux-5.10/drivers/staging/media/atomisp/pci/isp/kernels/ynr/ynr_1.0/
Dia_css_ynr_types.h20 * CSS-API header file for Noise Reduction (BNR) and YCC Noise Reduction (YNR,CNR).
23 /* Configuration used by Bayer Noise Reduction (BNR) and
24 * YCC Noise Reduction (YNR,CNR).
32 ia_css_u0_16 bnr_gain; /** Strength of noise reduction (BNR).
35 ia_css_u0_16 ynr_gain; /** Strength of noise reduction (YNR).
/kernel/linux/linux-6.6/drivers/staging/media/atomisp/pci/isp/kernels/ynr/ynr_1.0/
Dia_css_ynr_types.h20 * CSS-API header file for Noise Reduction (BNR) and YCC Noise Reduction (YNR,CNR).
23 /* Configuration used by Bayer Noise Reduction (BNR) and
24 * YCC Noise Reduction (YNR,CNR).
32 ia_css_u0_16 bnr_gain; /** Strength of noise reduction (BNR).
35 ia_css_u0_16 ynr_gain; /** Strength of noise reduction (YNR).
/kernel/linux/linux-5.10/arch/s390/crypto/
Dcrc32be-vx.S31 * The CRC-32 constant block contains reduction constants to fold and
44 * Barret reduction constant, u, is defined as floor(x**64 / P(x)).
118 * the reduction constants in V0. The intermediate result is
164 * XORed with the intermediate reduction result.
173 * the Barret reduction.
178 * The input values to the Barret reduction are the degree-63 polynomial
179 * in V1 (R(x)), degree-32 generator polynomial, and the reduction
180 * constant u. The Barret reduction result is the CRC value of R(x) mod
183 * The Barret reduction algorithm is defined as:
Dcrc32le-vx.S32 * The CRC-32 constant block contains reduction constants to fold and
45 * The bitreflected Barret reduction constant, u', is defined as
153 * the R1 and R2 reduction constants in V0. The intermediate result
238 * Apply a Barret reduction to compute the final 32-bit CRC value.
240 * The input values to the Barret reduction are the degree-63 polynomial
241 * in V1 (R(x)), degree-32 generator polynomial, and the reduction
242 * constant u. The Barret reduction result is the CRC value of R(x) mod
245 * The Barret reduction algorithm is defined as:
/kernel/linux/linux-6.6/arch/s390/crypto/
Dcrc32be-vx.S31 * The CRC-32 constant block contains reduction constants to fold and
44 * Barret reduction constant, u, is defined as floor(x**64 / P(x)).
119 * the reduction constants in V0. The intermediate result is
165 * XORed with the intermediate reduction result.
174 * the Barret reduction.
179 * The input values to the Barret reduction are the degree-63 polynomial
180 * in V1 (R(x)), degree-32 generator polynomial, and the reduction
181 * constant u. The Barret reduction result is the CRC value of R(x) mod
184 * The Barret reduction algorithm is defined as:
Dcrc32le-vx.S32 * The CRC-32 constant block contains reduction constants to fold and
45 * The bitreflected Barret reduction constant, u', is defined as
155 * the R1 and R2 reduction constants in V0. The intermediate result
240 * Apply a Barret reduction to compute the final 32-bit CRC value.
242 * The input values to the Barret reduction are the degree-63 polynomial
243 * in V1 (R(x)), degree-32 generator polynomial, and the reduction
244 * constant u. The Barret reduction result is the CRC value of R(x) mod
247 * The Barret reduction algorithm is defined as:
/kernel/linux/linux-6.6/drivers/staging/media/atomisp/pci/
Datomisp_compat_ioctl32.h131 compat_uptr_t tnr_config; /* Temporal Noise Reduction */
133 compat_uptr_t ynr_config; /* Y(Luma) Noise Reduction */
136 compat_uptr_t cnr_config; /* Chroma Noise Reduction */
145 compat_uptr_t nr_config; /* Noise Reduction config */
149 compat_uptr_t anr_config; /* Advanced Noise Reduction */
151 compat_uptr_t xnr_config; /* eXtra Noise Reduction */
/kernel/linux/linux-6.6/lib/crypto/mpi/
Dmpi-mod.c1 /* mpi-mod.c - Modular reduction
12 /* Context used with Barrett reduction. */
84 * Using Barrett reduction. Before using this function
87 * and also conveys M. If the Barret reduction could no be done a
88 * straightforward reduction method is used.
/kernel/linux/linux-5.10/lib/mpi/
Dmpi-mod.c1 /* mpi-mod.c - Modular reduction
12 /* Context used with Barrett reduction. */
84 * Using Barrett reduction. Before using this function
87 * and also conveys M. If the Barret reduction could no be done a
88 * straightforward reduction method is used.
/kernel/linux/linux-6.6/drivers/net/wireless/intel/iwlwifi/fw/api/
Dpower.h253 * struct iwl_reduce_tx_power_cmd - TX power reduction command
281 * struct iwl_dev_tx_power_common - Common part of the TX power reduction cmd
299 * struct iwl_dev_tx_power_cmd_v3 - TX power reduction command version 3
309 * struct iwl_dev_tx_power_cmd_v4 - TX power reduction command version 4
312 * reduction.
322 * struct iwl_dev_tx_power_cmd_v5 - TX power reduction command version 5
325 * reduction.
343 * struct iwl_dev_tx_power_cmd_v6 - TX power reduction command version 6
346 * reduction.
364 * struct iwl_dev_tx_power_cmd_v7 - TX power reduction command version 7
[all …]
/kernel/linux/linux-6.6/Documentation/devicetree/bindings/sound/
Dst,sta32x.txt67 If present, power bridge correction for THD reduction near maximum
70 - st,am-reduction-mode:
71 If present, FFX mode runs in AM reduction mode, otherwise normal
97 // correction for THD reduction
Dst,sta350.txt71 If present, power bridge correction for THD reduction near maximum
74 - st,am-reduction-mode:
75 If present, FFX mode runs in AM reduction mode, otherwise normal
127 // correction for THD reduction
/kernel/linux/linux-5.10/Documentation/devicetree/bindings/sound/
Dst,sta32x.txt67 If present, power bridge correction for THD reduction near maximum
70 - st,am-reduction-mode:
71 If present, FFX mode runs in AM reduction mode, otherwise normal
97 // correction for THD reduction
Dst,sta350.txt71 If present, power bridge correction for THD reduction near maximum
74 - st,am-reduction-mode:
75 If present, FFX mode runs in AM reduction mode, otherwise normal
127 // correction for THD reduction
/kernel/linux/linux-5.10/drivers/staging/media/atomisp/pci/
Datomisp_compat_ioctl32.h191 compat_uptr_t tnr_config; /* Temporal Noise Reduction */
193 compat_uptr_t ynr_config; /* Y(Luma) Noise Reduction */
196 compat_uptr_t cnr_config; /* Chroma Noise Reduction */
205 compat_uptr_t nr_config; /* Noise Reduction config */
209 compat_uptr_t anr_config; /* Advanced Noise Reduction */
211 compat_uptr_t xnr_config; /* eXtra Noise Reduction */
/kernel/linux/linux-5.10/drivers/staging/media/ipu3/include/
Dintel-ipu3.h585 /* Bayer Noise Reduction related structs */
1846 /* Chroma Noise Reduction */
1849 * struct ipu3_uapi_yuvp1_chnr_enable_config - Chroma noise reduction enable
1851 * @enable: enable/disable chroma noise reduction
1881 * struct ipu3_uapi_yuvp1_chnr_sense_gain_config - Chroma noise reduction gains
1928 * struct ipu3_uapi_yuvp1_chnr_config - Chroma noise reduction config
1930 * @enable: chroma noise reduction enable, see
1932 * @coring: coring config for chroma noise reduction, see
1934 * @sense_gain: sensitivity config for chroma noise reduction, see
1936 * @iir_fir: iir and fir config for chroma noise reduction, see
[all …]
/kernel/linux/linux-6.6/drivers/staging/media/ipu3/include/uapi/
Dintel-ipu3.h619 /* Bayer Noise Reduction related structs */
1883 /* Chroma Noise Reduction */
1886 * struct ipu3_uapi_yuvp1_chnr_enable_config - Chroma noise reduction enable
1888 * @enable: enable/disable chroma noise reduction
1918 * struct ipu3_uapi_yuvp1_chnr_sense_gain_config - Chroma noise reduction gains
1965 * struct ipu3_uapi_yuvp1_chnr_config - Chroma noise reduction config
1967 * @enable: chroma noise reduction enable, see
1969 * @coring: coring config for chroma noise reduction, see
1971 * @sense_gain: sensitivity config for chroma noise reduction, see
1973 * @iir_fir: iir and fir config for chroma noise reduction, see
[all …]
/kernel/linux/linux-5.10/drivers/staging/media/atomisp/pci/isp/kernels/tnr/tnr3/
Dia_css_tnr3_types.h20 * CSS-API header file for Temporal Noise Reduction v3 (TNR3) kernel
30 /* Temporal Noise Reduction v3 (TNR3) configuration.
44 * 4. Selection of the reference frame buffer to be used for noise reduction.
/kernel/linux/linux-6.6/drivers/staging/media/atomisp/pci/isp/kernels/tnr/tnr3/
Dia_css_tnr3_types.h20 * CSS-API header file for Temporal Noise Reduction v3 (TNR3) kernel
30 /* Temporal Noise Reduction v3 (TNR3) configuration.
44 * 4. Selection of the reference frame buffer to be used for noise reduction.
/kernel/linux/linux-5.10/drivers/net/wireless/intel/iwlwifi/fw/api/
Dpower.h311 * struct iwl_reduce_tx_power_cmd - TX power reduction command
339 * struct iwl_dev_tx_power_common - Common part of the TX power reduction cmd
357 * struct iwl_dev_tx_power_cmd_v3 - TX power reduction command version 3
367 * struct iwl_dev_tx_power_cmd_v4 - TX power reduction command version 4
370 * reduction.
380 * struct iwl_dev_tx_power_cmd_v5 - TX power reduction command version 5
383 * reduction.
401 * struct iwl_dev_tx_power_cmd_v5 - TX power reduction command version 5
404 * reduction.
422 * struct iwl_dev_tx_power_cmd - TX power reduction command (multiversion)
/kernel/linux/linux-6.6/arch/arm64/crypto/
Dsm4-ce-gcm-core.S100 #define REDUCTION(a, r0, r1, rconst, T0, T1) \ macro
229 REDUCTION(RHASH, RR0, RR1, RRCONST, RTMP2, RTMP3); \
283 REDUCTION(RH2, RR0, RR1, RRCONST, RTMP2, RTMP3)
287 REDUCTION(RH3, RR0, RR1, RRCONST, RTMP2, RTMP3)
291 REDUCTION(RH4, RR0, RR1, RRCONST, RTMP2, RTMP3)
349 REDUCTION(RHASH, RR0, RR1, RRCONST, RTMP0, RTMP1)
362 REDUCTION(RHASH, RR0, RR1, RRCONST, RTMP2, RTMP3)
452 REDUCTION(RHASH, RR0, RR1, RRCONST, RTMP0, RTMP1)
477 REDUCTION(RHASH, RR0, RR1, RRCONST, RTMP2, RTMP3)
515 REDUCTION(RHASH, RR0, RR1, RRCONST, RTMP2, RTMP3)
[all …]
/kernel/linux/linux-6.6/include/media/i2c/
Dupd64031a.h3 * upd64031a - NEC Electronics Ghost Reduction input defines
11 /* Ghost reduction modes */
/kernel/linux/linux-5.10/include/media/i2c/
Dupd64031a.h3 * upd64031a - NEC Electronics Ghost Reduction input defines
11 /* Ghost reduction modes */

12345678910>>...22