Home
last modified time | relevance | path

Searched refs:samp (Results 1 – 25 of 35) sorted by relevance

12

/OK3568_Linux_fs/yocto/poky/meta/recipes-devtools/gcc/gcc/
H A D0002-aarch64-add-armv9-a-to-march.patch71 …@item @samp{armv8.4-a} @tab Armv8.4-A @tab @samp{armv8.3-a}, @samp{+flagm}, @samp{+fp16fml}, @samp
72 …@item @samp{armv8.5-a} @tab Armv8.5-A @tab @samp{armv8.4-a}, @samp{+sb}, @samp{+ssbs}, @samp{+pred…
73 @item @samp{armv8.6-a} @tab Armv8.6-A @tab @samp{armv8.5-a}, @samp{+bf16}, @samp{+i8mm}
74 +@item @samp{armv8.7-a} @tab Armv8.7-A @tab @samp{armv8.6-a}, @samp{+ls64}
75 +@item @samp{armv9-a} @tab Armv9-A @tab @samp{armv8.5-a}, @samp{+sve}, @samp{+sve2}
76 @item @samp{armv8-r} @tab Armv8-R @tab @samp{armv8-r}
80 @samp{armv8.4-a},
81 @samp{armv8.5-a},
82 @samp{armv8.6-a},
83 +@samp{armv9-a},
[all …]
H A D0004-arm-add-armv9-a-architecture-to-march.patch252 @samp{armv7-m}, @samp{armv7e-m},
253 @samp{armv8-m.base}, @samp{armv8-m.main},
254 @samp{armv8.1-m.main},
255 +@samp{armv9-a},
256 @samp{iwmmxt} and @samp{iwmmxt2}.
/OK3568_Linux_fs/kernel/tools/testing/ktest/
H A Dcompare-ktest-sample.pl18 $samp{$1} = 1;
24 if (!defined($samp{$opt})) {
29 foreach $samp (keys %samp) {
30 if (!defined($opt{$samp})) {
31 print "samp = $samp\n";
/OK3568_Linux_fs/buildroot/dl/sox/git/src/
H A Dprc.c246 static size_t read_samples(sox_format_t * ft, sox_sample_t *buf, size_t samp) in read_samples() argument
274 nsamp = min(p->frame_samp, samp); in read_samples()
281 p->nsamp += samp; in read_samples()
282 return lsx_rawread(ft, buf, samp); in read_samples()
368 size_t written1, samp = min(nsamp - written, 800); in write_samples() local
370 write_cardinal(ft, (unsigned) samp); in write_samples()
372 write_cardinal(ft, (unsigned) ((samp / 2) + (samp % 2) + 4)); in write_samples()
374 lsx_debug_more("list length %lu", (unsigned long)samp); in write_samples()
375 lsx_writedw(ft, (unsigned) samp); in write_samples()
377 written1 = lsx_adpcm_write(ft, &p->adpcm, buf + written, samp); in write_samples()
[all …]
H A Dstat.c157 double delta, samp = (double)lsamp / stat->scale; in sox_stat_flow() local
171 if (stat->min > samp) in sox_stat_flow()
172 stat->min = samp; in sox_stat_flow()
173 else if (stat->max < samp) in sox_stat_flow()
174 stat->max = samp; in sox_stat_flow()
177 stat->sum1 += samp; in sox_stat_flow()
178 stat->sum2 += samp*samp; in sox_stat_flow()
179 stat->asum += fabs(samp); in sox_stat_flow()
181 delta = fabs(samp - stat->last); in sox_stat_flow()
190 stat->last = samp; in sox_stat_flow()
H A Dgsm.c104 static size_t sox_gsmread(sox_format_t * ft, sox_sample_t *buf, size_t samp) in sox_gsmread() argument
113 while (done < samp) in sox_gsmread()
115 while (p->samplePtr < p->sampleTop && done < samp) in sox_gsmread()
119 if (done>=samp) break; in sox_gsmread()
183 static size_t sox_gsmwrite(sox_format_t * ft, const sox_sample_t *buf, size_t samp) in sox_gsmwrite() argument
188 while (done < samp) in sox_gsmwrite()
191 while ((p->samplePtr < p->sampleTop) && (done < samp)) in sox_gsmwrite()
H A Dau.c113 static size_t dec_read(sox_format_t *ft, sox_sample_t *buf, size_t samp) in dec_read() argument
119 for (done = 0; samp > 0 && unpack_input(ft, &code) >= 0; ++done, --samp) in dec_read()
H A Dnoiseprof.c119 size_t samp = min(*isamp, *osamp); in sox_noiseprof_flow() local
121 size_t i, j, n = min(samp / chans, WINDOWSIZE - p->bufdata); in sox_noiseprof_flow()
H A Dsox.h973 #define SOX_SAMPLE_CLIP_COUNT(samp, clips) \ argument
975 if (samp > SOX_SAMPLE_MAX) \
976 { samp = SOX_SAMPLE_MAX; clips++; } \
977 else if (samp < SOX_SAMPLE_MIN) \
978 { samp = SOX_SAMPLE_MIN; clips++; } \
H A Dcompand.c174 static void doVolume(double *v, double samp, priv_t * l, int chan) in doVolume() argument
176 double s = -samp / SOX_SAMPLE_MIN; in doVolume()
H A Dnoisered.c259 size_t samp = min(*isamp, *osamp); in sox_noisered_flow() local
261 size_t track_samples = samp / tracks; in sox_noisered_flow()
H A Deffects_i.c247 #define TEST(st, samp, len) \
250 assert(samples == samp && next == str + len);
H A Dmp3.c1142 static size_t sox_mp3write(sox_format_t * ft, const sox_sample_t *buf, size_t samp) in sox_mp3write() argument
1147 int nsamples = samp/ft->signal.channels; in sox_mp3write()
1152 new_buffer_size = samp * sizeof(float); in sox_mp3write()
1168 for(s = 0; s < samp; s++) in sox_mp3write()
1228 return samp; in sox_mp3write()
H A Dmcompand.c264 static void doVolume(double *v, double samp, comp_band_t * l, size_t chan) in doVolume() argument
266 double s = samp/(~((sox_sample_t)1<<31)); in doVolume()
/OK3568_Linux_fs/kernel/include/sound/
H A Dwavefront.h415 #define WF_SET_CHANNEL(samp,chn) \ argument
416 (samp)->Unused1 = chn & 0x1; \
417 (samp)->Unused2 = chn & 0x2; \
418 (samp)->Unused3 = chn & 0x4
420 #define WF_GET_CHANNEL(samp) \ argument
421 (((samp)->Unused3 << 2)|((samp)->Unused2<<1)|(samp)->Unused1)
/OK3568_Linux_fs/buildroot/boot/grub2/
H A D0036-kern-lockdown-Set-a-variable-if-the-GRUB-is-locked-d.patch27 +The @samp{lockdown} variable is set to @samp{y} when the GRUB is locked down.
H A D0148-templates-Disable-the-os-prober-by-default.patch30 @@ -1481,10 +1481,13 @@ boot sequence. If you have problems, set this option to @samp{text} and
37 -for them. Set this option to @samp{true} to disable this.
43 +this option to @samp{false} to enable this feature in the
H A D0143-shim_lock-Only-skip-loading-shim_lock-verifier-with-.patch44 +enabled. The @samp{shim_lock} variable is set to @samp{y} when shim_lock verifier
47 +or by building grub image with @samp{--disable-shim-lock} option.
/OK3568_Linux_fs/buildroot/board/rockchip/rk3566_rk3568/fs-overlay/usr/share/matrix-gui-2.0/css/
H A Dfonts-min.css7 …helvetica,clean,sans-serif}table{font-size:inherit;font:100%}pre,code,kbd,samp,tt{font-family:mono… selector
H A Dyui-reset-fonts-base.css7 …helvetica,clean,sans-serif}table{font-size:inherit;font:100%}pre,code,kbd,samp,tt{font-family:mono… selector
/OK3568_Linux_fs/buildroot/board/forlinx/ok3568/fs-overlay/usr/share/matrix-gui-2.0/css/
H A Dfonts-min.css7 …helvetica,clean,sans-serif}table{font-size:inherit;font:100%}pre,code,kbd,samp,tt{font-family:mono… selector
H A Dyui-reset-fonts-base.css7 …helvetica,clean,sans-serif}table{font-size:inherit;font:100%}pre,code,kbd,samp,tt{font-family:mono… selector
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/lib/gcc/aarch64-none-linux-gnu/10.3.1/plugin/include/
H A Dtarget.def238 should be excluded; on many systems, the letter @samp{L} at the\n\
375 instruction the name @samp{return} and do not define the macro\n\
378 Do not define a pattern named @samp{return} if you want the\n\
381 define a @samp{return} pattern with a validity condition that tests the\n\
382 target switches appropriately. If the @samp{return} pattern's validity\n\
555 and assign it to @samp{DECL_SECTION_NAME (@var{decl})}.\n\
570 @samp{DECL_SECTION_NAME (@var{decl})}.\n\
635 e.g.@: @samp{%o0} on a sparc. The addition must preserve the values of\n\
649 return to whoever called the current @samp{thunk}.\n\
822 @code{SYMBOL_REF} for which @samp{SYMBOL_REF_ANCHOR_P (@var{x})} is true.\n\
[all …]
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/lib/gcc/arm-none-linux-gnueabihf/10.3.1/plugin/include/
H A Dtarget.def238 should be excluded; on many systems, the letter @samp{L} at the\n\
375 instruction the name @samp{return} and do not define the macro\n\
378 Do not define a pattern named @samp{return} if you want the\n\
381 define a @samp{return} pattern with a validity condition that tests the\n\
382 target switches appropriately. If the @samp{return} pattern's validity\n\
555 and assign it to @samp{DECL_SECTION_NAME (@var{decl})}.\n\
570 @samp{DECL_SECTION_NAME (@var{decl})}.\n\
635 e.g.@: @samp{%o0} on a sparc. The addition must preserve the values of\n\
649 return to whoever called the current @samp{thunk}.\n\
822 @code{SYMBOL_REF} for which @samp{SYMBOL_REF_ANCHOR_P (@var{x})} is true.\n\
[all …]
/OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-extended/nana/nana/
H A Dmodify-acinclude.m4-and-configure.in.patch57 -# @code{ac_cv_prog_cc_stdc} is set to @samp{no}. If you wrote your source

12