Home
last modified time | relevance | path

Searched full:peak (Results 1 - 25 of 869) sorted by relevance

12345678910>>...35

/kernel/linux/linux-6.6/arch/arm64/boot/dts/qcom/
H A Dsa8540p.dtsi19 opp-peak-kBps = <(300000 * 32)>;
23 opp-peak-kBps = <(384000 * 32)>;
27 opp-peak-kBps = <(480000 * 32)>;
31 opp-peak-kBps = <(576000 * 32)>;
35 opp-peak-kBps = <(672000 * 32)>;
39 opp-peak-kBps = <(768000 * 32)>;
43 opp-peak-kBps = <(864000 * 32)>;
47 opp-peak-kBps = <(960000 * 32)>;
51 opp-peak-kBps = <(1075200 * 32)>;
55 opp-peak
[all...]
H A Dmsm8996pro.dtsi27 opp-peak-kBps = <192000>;
33 opp-peak-kBps = <192000>;
39 opp-peak-kBps = <192000>;
45 opp-peak-kBps = <192000>;
51 opp-peak-kBps = <192000>;
57 opp-peak-kBps = <307200>;
63 opp-peak-kBps = <307200>;
69 opp-peak-kBps = <384000>;
75 opp-peak-kBps = <441600>;
81 opp-peak
[all...]
H A Dsc7180-lite.dtsi9 opp-peak-kBps = <7216000 22425600>;
13 opp-peak-kBps = <7216000 22425600>;
17 opp-peak-kBps = <8532000 23347200>;
21 opp-peak-kBps = <8532000 23347200>;
25 opp-peak-kBps = <8532000 23347200>;
H A Dsdm660.dtsi28 opp-peak-kBps = <5412000>;
39 opp-peak-kBps = <5184000>;
46 opp-peak-kBps = <4068000>;
53 opp-peak-kBps = <3072000>;
60 opp-peak-kBps = <2724000>;
67 opp-peak-kBps = <2188000>;
75 opp-peak-kBps = <1648000>;
82 opp-peak-kBps = <1200000>;
/kernel/linux/linux-6.6/scripts/dtc/include-prefixes/arm64/qcom/
H A Dsa8540p.dtsi19 opp-peak-kBps = <(300000 * 32)>;
23 opp-peak-kBps = <(384000 * 32)>;
27 opp-peak-kBps = <(480000 * 32)>;
31 opp-peak-kBps = <(576000 * 32)>;
35 opp-peak-kBps = <(672000 * 32)>;
39 opp-peak-kBps = <(768000 * 32)>;
43 opp-peak-kBps = <(864000 * 32)>;
47 opp-peak-kBps = <(960000 * 32)>;
51 opp-peak-kBps = <(1075200 * 32)>;
55 opp-peak
[all...]
H A Dmsm8996pro.dtsi27 opp-peak-kBps = <192000>;
33 opp-peak-kBps = <192000>;
39 opp-peak-kBps = <192000>;
45 opp-peak-kBps = <192000>;
51 opp-peak-kBps = <192000>;
57 opp-peak-kBps = <307200>;
63 opp-peak-kBps = <307200>;
69 opp-peak-kBps = <384000>;
75 opp-peak-kBps = <441600>;
81 opp-peak
[all...]
H A Dsc7180-lite.dtsi9 opp-peak-kBps = <7216000 22425600>;
13 opp-peak-kBps = <7216000 22425600>;
17 opp-peak-kBps = <8532000 23347200>;
21 opp-peak-kBps = <8532000 23347200>;
25 opp-peak-kBps = <8532000 23347200>;
H A Dsdm660.dtsi28 opp-peak-kBps = <5412000>;
39 opp-peak-kBps = <5184000>;
46 opp-peak-kBps = <4068000>;
53 opp-peak-kBps = <3072000>;
60 opp-peak-kBps = <2724000>;
67 opp-peak-kBps = <2188000>;
75 opp-peak-kBps = <1648000>;
82 opp-peak-kBps = <1200000>;
/third_party/ffmpeg/libavfilter/opencl/
H A Dtonemap.cl26 extern float3 ootf(float3 c, float peak);
27 extern float3 inverse_ootf(float3 c, float peak);
31 float peak;
40 float direct(float s, float peak) {
44 float linear(float s, float peak) {
45 return s * tone_param / peak;
48 float gamma(float s, float peak) {
49 float p = s > 0.05f ? s /peak : 0.05f / peak;
54 float clip(float s, float peak) {
[all...]
H A Dcolorspace_common.cl80 float3 ootf_hlg(float3 c, float peak) {
82 float gamma = 1.2f + 0.42f * log10(peak * REFERENCE_WHITE / 1000.0f);
84 float factor = peak * powr(luma, gamma - 1.0f) / powr(12.0f, gamma);
88 float3 inverse_ootf_hlg(float3 c, float peak) {
89 float gamma = 1.2f + 0.42f * log10(peak * REFERENCE_WHITE / 1000.0f);
90 c *= powr(12.0f, gamma) / peak;
191 float3 ootf(float3 c, float peak) {
193 return ootf_impl(c, peak);
199 float3 inverse_ootf(float3 c, float peak) {
201 return inverse_ootf_impl(c, peak);
[all...]
/third_party/ffmpeg/libavfilter/
H A Dvf_tonemap.c60 double peak; member
96 static float mobius(float in, float j, double peak) in mobius() argument
103 a = -j * j * (peak - 1.0f) / (j * j - 2.0f * j + peak); in mobius()
104 b = (j * j - 2.0f * j * peak + peak) / FFMAX(peak - 1.0f, 1e-6); in mobius()
111 const AVPixFmtDescriptor *desc, int x, int y, double peak) in tonemap()
148 sig = sig * s->param / peak; in tonemap()
151 sig = sig > 0.05f ? pow(sig / peak, 1. in tonemap()
110 tonemap(TonemapContext *s, AVFrame *out, const AVFrame *in, const AVPixFmtDescriptor *desc, int x, int y, double peak) tonemap() argument
178 double peak; global() member
190 double peak = td->peak; tonemap_slice() local
209 double peak = s->peak; filter_frame() local
[all...]
H A Dcolorspace.c156 double peak = 0; in ff_determine_signal_peak() local
160 peak = clm->MaxCLL / REFERENCE_WHITE; in ff_determine_signal_peak()
164 if (!peak && sd) { in ff_determine_signal_peak()
167 peak = av_q2d(metadata->max_luminance) / REFERENCE_WHITE; in ff_determine_signal_peak()
170 // For untagged source, use peak of 10000 if SMPTE ST.2084 in ff_determine_signal_peak()
171 // otherwise assume HLG with reference display peak 1000. in ff_determine_signal_peak()
172 if (!peak) in ff_determine_signal_peak()
173 peak = in->color_trc == AVCOL_TRC_SMPTE2084 ? 100.0f : 10.0f; in ff_determine_signal_peak()
175 return peak; in ff_determine_signal_peak()
178 void ff_update_hdr_metadata(AVFrame *in, double peak) in ff_update_hdr_metadata() argument
[all...]
H A Daf_alimiter.c110 double peak, double limit, double patt, int asc) in get_rdelta()
166 double peak = 0; in filter_frame() local
172 peak = FFMAX(peak, fabs(sample)); in filter_frame()
175 if (s->auto_release && peak > limit) { in filter_frame()
176 s->asc += peak; in filter_frame()
180 if (peak > limit) { in filter_frame()
181 double patt = FFMIN(limit / peak, 1.); in filter_frame()
183 peak, limit, patt, 0); in filter_frame()
184 double delta = (limit / peak in filter_frame()
109 get_rdelta(AudioLimiterContext *s, double release, int sample_rate, double peak, double limit, double patt, int asc) get_rdelta() argument
[all...]
H A Dasrc_sinc.c219 int i, work_len, begin, end, imp_peak = 0, peak = 0; in fir_to_phase() local
291 /* Find peak pos. */ in fir_to_phase()
296 peak = i; in fir_to_phase()
302 while (peak && fabsf(work[peak - 1]) > fabsf(work[peak]) && (work[peak - 1] * work[peak] > 0)) { in fir_to_phase()
303 peak--; in fir_to_phase()
309 begin = peak in fir_to_phase()
[all...]
H A Daf_apsyclip.c89 // 1/window to calculate unwindowed peak. in generate_hann_window()
405 float peak; in feed() local
424 // It would be easier to calculate the peak from the unwindowed input. in feed()
425 // This is just for consistency with the clipped peak calculateion in feed()
430 peak = orig_peak; in feed()
439 // The last 1/3 of rounds have boosted delta to help reach the peak target faster in feed()
443 if (peak < 2.f) in feed()
460 peak = 0; in feed()
462 peak = FFMAX(peak, FFAB in feed()
[all...]
/third_party/alsa-utils/bat/
H A Danalyze.c42 /* calculate peak-to-average amplitude */ in check_amplitude()
62 * @return 0 if peak detected at right frequency,
63 * 1 if peak detected somewhere else
66 int check_peak(struct bat *bat, struct analyze *a, int end, int peak, float hz, in check_peak() argument
70 float hz_peak = (float) (peak) * hz; in check_peak()
75 fprintf(bat->log, _("Detected peak at %2.2f Hz of %2.2f dB\n"), hz_peak, in check_peak()
76 10.0 * log10f(a->mag[peak] / mean)); in check_peak()
81 fprintf(bat->err, _(" WARNING: Found low peak %2.2f Hz,"), in check_peak()
86 fprintf(bat->err, _(" FAIL: Peak freq too low %2.2f Hz\n"), in check_peak()
90 fprintf(bat->err, _(" FAIL: Peak fre in check_peak()
109 int i, start = -1, end = -1, peak = 0, signals = 0; check() local
[all...]
/kernel/linux/linux-5.10/net/sched/
H A Dsch_tbf.c60 one with rate P (peak rate) and depth M (equal to link MTU)
88 Note that the peak rate TBF is much more tough: with MTU 1500
89 P_crit = 150Kbytes/sec. So, if you need greater peak
104 struct psched_ratecfg peak; member
251 return q->peak.rate_bytes_ps; in tbf_peak_present()
274 ptoks -= (s64) psched_l2t_ns(&q->peak, len); in tbf_dequeue()
345 struct psched_ratecfg peak; in tbf_change() local
387 psched_ratecfg_precompute(&peak, &qopt->peakrate, prate64); in tbf_change()
388 if (peak.rate_bytes_ps <= rate.rate_bytes_ps) { in tbf_change()
390 peak in tbf_change()
[all...]
/kernel/linux/linux-6.6/net/sched/
H A Dsch_tbf.c61 one with rate P (peak rate) and depth M (equal to link MTU)
89 Note that the peak rate TBF is much more tough: with MTU 1500
90 P_crit = 150Kbytes/sec. So, if you need greater peak
105 struct psched_ratecfg peak; member
266 return q->peak.rate_bytes_ps; in tbf_peak_present()
289 ptoks -= (s64) psched_l2t_ns(&q->peak, len); in tbf_dequeue()
360 struct psched_ratecfg peak; in tbf_change() local
402 psched_ratecfg_precompute(&peak, &qopt->peakrate, prate64); in tbf_change()
403 if (peak.rate_bytes_ps <= rate.rate_bytes_ps) { in tbf_change()
405 peak in tbf_change()
[all...]
/third_party/libsnd/tests/
H A Dpeak_chunk_test.c60 printf (" aiff - test AIFF file PEAK chunk\n") ; in main()
61 printf (" caf - test CAF file PEAK chunk\n") ; in main()
62 printf (" wav - test WAV file peak chunk\n") ; in main()
130 /* Create some random data with a peak value of 0.66. */ in test_float_peak()
140 /* Write a file with PEAK chunks. */ in test_float_peak()
143 /* Try to confuse the header writer by adding a removing the PEAK chunk. */ in test_float_peak()
180 { printf ("\n\nLine %d: Bad peak value (%f should be %f) for command SFC_GET_SIGNAL_MAX.\n", __LINE__, data [0], (frames / 2) * 0.01) ; in test_float_peak()
190 { printf ("\n\nLine %d: Bad peak value (%f should be %f) for command SFC_GET_MAX_ALL_CHANNELS.\n", __LINE__, data [0], (frames / 2) * 0.01) ; in test_float_peak()
207 /* Write a file ***without*** PEAK chunks. */ in test_float_peak()
210 /* Try to confuse the header writer by adding a removing the PEAK chun in test_float_peak()
[all...]
/kernel/linux/linux-6.6/arch/arm/boot/dts/nvidia/
H A Dtegra124-peripherals-opp.dtsi336 opp-peak-kBps = <204000>;
342 opp-peak-kBps = <326400>;
348 opp-peak-kBps = <652800>;
354 opp-peak-kBps = <1088000>;
360 opp-peak-kBps = <1632000>;
366 opp-peak-kBps = <3264000>;
373 opp-peak-kBps = <4224000>;
379 opp-peak-kBps = <4800000>;
385 opp-peak-kBps = <5568000>;
391 opp-peak
[all...]
/kernel/linux/linux-6.6/arch/arm64/boot/dts/nvidia/
H A Dtegra132-peripherals-opp.dtsi338 opp-peak-kBps = <204000>;
344 opp-peak-kBps = <326400>;
350 opp-peak-kBps = <652800>;
356 opp-peak-kBps = <1088000>;
362 opp-peak-kBps = <1632000>;
368 opp-peak-kBps = <3264000>;
375 opp-peak-kBps = <4224000>;
381 opp-peak-kBps = <4800000>;
387 opp-peak-kBps = <5568000>;
393 opp-peak
[all...]
/kernel/linux/linux-6.6/scripts/dtc/include-prefixes/arm64/nvidia/
H A Dtegra132-peripherals-opp.dtsi338 opp-peak-kBps = <204000>;
344 opp-peak-kBps = <326400>;
350 opp-peak-kBps = <652800>;
356 opp-peak-kBps = <1088000>;
362 opp-peak-kBps = <1632000>;
368 opp-peak-kBps = <3264000>;
375 opp-peak-kBps = <4224000>;
381 opp-peak-kBps = <4800000>;
387 opp-peak-kBps = <5568000>;
393 opp-peak
[all...]
/kernel/linux/linux-6.6/scripts/dtc/include-prefixes/arm/nvidia/
H A Dtegra124-peripherals-opp.dtsi336 opp-peak-kBps = <204000>;
342 opp-peak-kBps = <326400>;
348 opp-peak-kBps = <652800>;
354 opp-peak-kBps = <1088000>;
360 opp-peak-kBps = <1632000>;
366 opp-peak-kBps = <3264000>;
373 opp-peak-kBps = <4224000>;
379 opp-peak-kBps = <4800000>;
385 opp-peak-kBps = <5568000>;
391 opp-peak
[all...]
/kernel/linux/linux-5.10/drivers/net/can/sja1000/
H A DKconfig42 tristate "PEAK PCAN-PCI/PCIe/miniPCI Cards"
46 (1, 2, 3 or 4 channels) from PEAK-System Technik
47 (http://www.peak-system.com).
50 bool "PEAK PCAN-ExpressCard Cards"
56 Say Y here if you want to use a PCAN-ExpressCard from PEAK-System
61 tristate "PEAK PCAN-PC Card"
66 from PEAK-System (http://www.peak-system.com). To compile this
/kernel/linux/linux-6.6/drivers/net/can/sja1000/
H A DKconfig42 tristate "PEAK PCAN-PCI/PCIe/miniPCI Cards"
46 (1, 2, 3 or 4 channels) from PEAK-System Technik
47 (http://www.peak-system.com).
50 bool "PEAK PCAN-ExpressCard Cards"
56 Say Y here if you want to use a PCAN-ExpressCard from PEAK-System
61 tristate "PEAK PCAN-PC Card"
66 from PEAK-System (http://www.peak-system.com). To compile this

Completed in 43 milliseconds

12345678910>>...35