/third_party/ffmpeg/libavcodec/ |
D | h264qpel.c | 54 #define dspfunc2(PFX, IDX, NUM, depth) \ in ff_h264qpel_init() argument 55 c->PFX ## _pixels_tab[IDX][ 0] = FUNCC(PFX ## NUM ## _mc00, depth); \ in ff_h264qpel_init() 56 c->PFX ## _pixels_tab[IDX][ 1] = FUNCC(PFX ## NUM ## _mc10, depth); \ in ff_h264qpel_init() 57 c->PFX ## _pixels_tab[IDX][ 2] = FUNCC(PFX ## NUM ## _mc20, depth); \ in ff_h264qpel_init() 58 c->PFX ## _pixels_tab[IDX][ 3] = FUNCC(PFX ## NUM ## _mc30, depth); \ in ff_h264qpel_init() 59 c->PFX ## _pixels_tab[IDX][ 4] = FUNCC(PFX ## NUM ## _mc01, depth); \ in ff_h264qpel_init() 60 c->PFX ## _pixels_tab[IDX][ 5] = FUNCC(PFX ## NUM ## _mc11, depth); \ in ff_h264qpel_init() 61 c->PFX ## _pixels_tab[IDX][ 6] = FUNCC(PFX ## NUM ## _mc21, depth); \ in ff_h264qpel_init() 62 c->PFX ## _pixels_tab[IDX][ 7] = FUNCC(PFX ## NUM ## _mc31, depth); \ in ff_h264qpel_init() 63 c->PFX ## _pixels_tab[IDX][ 8] = FUNCC(PFX ## NUM ## _mc02, depth); \ in ff_h264qpel_init() [all …]
|
D | cavsdsp.c | 552 #define dspfunc(PFX, IDX, NUM) \ in ff_cavsdsp_init() argument 553 c->PFX ## _pixels_tab[IDX][ 0] = PFX ## NUM ## _mc00_c; \ in ff_cavsdsp_init() 554 c->PFX ## _pixels_tab[IDX][ 1] = PFX ## NUM ## _mc10_c; \ in ff_cavsdsp_init() 555 c->PFX ## _pixels_tab[IDX][ 2] = PFX ## NUM ## _mc20_c; \ in ff_cavsdsp_init() 556 c->PFX ## _pixels_tab[IDX][ 3] = PFX ## NUM ## _mc30_c; \ in ff_cavsdsp_init() 557 c->PFX ## _pixels_tab[IDX][ 4] = PFX ## NUM ## _mc01_c; \ in ff_cavsdsp_init() 558 c->PFX ## _pixels_tab[IDX][ 5] = PFX ## NUM ## _mc11_c; \ in ff_cavsdsp_init() 559 c->PFX ## _pixels_tab[IDX][ 6] = PFX ## NUM ## _mc21_c; \ in ff_cavsdsp_init() 560 c->PFX ## _pixels_tab[IDX][ 7] = PFX ## NUM ## _mc31_c; \ in ff_cavsdsp_init() 561 c->PFX ## _pixels_tab[IDX][ 8] = PFX ## NUM ## _mc02_c; \ in ff_cavsdsp_init() [all …]
|
D | qpeldsp.c | 785 #define dspfunc(PFX, IDX, NUM) \ in DIRAC_MC() argument 786 c->PFX ## _pixels_tab[IDX][0] = PFX ## NUM ## _mc00_c; \ in DIRAC_MC() 787 c->PFX ## _pixels_tab[IDX][1] = PFX ## NUM ## _mc10_c; \ in DIRAC_MC() 788 c->PFX ## _pixels_tab[IDX][2] = PFX ## NUM ## _mc20_c; \ in DIRAC_MC() 789 c->PFX ## _pixels_tab[IDX][3] = PFX ## NUM ## _mc30_c; \ in DIRAC_MC() 790 c->PFX ## _pixels_tab[IDX][4] = PFX ## NUM ## _mc01_c; \ in DIRAC_MC() 791 c->PFX ## _pixels_tab[IDX][5] = PFX ## NUM ## _mc11_c; \ in DIRAC_MC() 792 c->PFX ## _pixels_tab[IDX][6] = PFX ## NUM ## _mc21_c; \ in DIRAC_MC() 793 c->PFX ## _pixels_tab[IDX][7] = PFX ## NUM ## _mc31_c; \ in DIRAC_MC() 794 c->PFX ## _pixels_tab[IDX][8] = PFX ## NUM ## _mc02_c; \ in DIRAC_MC() [all …]
|
/third_party/openssl/crypto/bn/asm/ |
D | sparct4-mont.pl | 121 my $NUM=shift; 125 .globl bn_mul_mont_t4_$NUM 127 bn_mul_mont_t4_$NUM: 177 for($i=0; $i<14 && $i<$NUM; $i++) { 186 for(; $i<$NUM; $i++) { 198 for($i=0; $i<14 && $i<$NUM; $i++) { 210 for(; $i<28 && $i<$NUM; $i++) { 222 for(; $i<$NUM; $i++) { 223 my $lo=($i<$NUM-1)?@N[$i+1]:"%o7"; 233 be SIZE_T_CC,.Lmsquare_$NUM [all …]
|
/third_party/musl/src/passwd/ |
D | putspent.c | 4 #define NUM(n) ((n) == -1 ? 0 : -1), ((n) == -1 ? 0 : (n)) macro 10 STR(sp->sp_namp), STR(sp->sp_pwdp), NUM(sp->sp_lstchg), in putspent() 11 NUM(sp->sp_min), NUM(sp->sp_max), NUM(sp->sp_warn), in putspent() 12 NUM(sp->sp_inact), NUM(sp->sp_expire), NUM(sp->sp_flag)) < 0 ? -1 : 0; in putspent()
|
/third_party/musl/libc-test/src/functionalext/supplement/stdlib/ |
D | bsearch.c | 19 #define NUM 8 macro 32 int array[NUM] = {9, 2, 7, 11, 3, 87, 34, 6}; in bsearch_0100() 35 qsort(array, NUM, sizeof(int), compare); in bsearch_0100() 36 p = (int *)bsearch(&key, array, NUM, sizeof(int), compare); in bsearch_0100() 47 int array[NUM] = {9, 2, 7, 11, 3, 87, 34, 6}; in bsearch_0200() 50 qsort(array, NUM, sizeof(int), compare); in bsearch_0200()
|
/third_party/ffmpeg/libavcodec/ppc/ |
D | h264qpel.c | 292 #define dspfunc(PFX, IDX, NUM) \ in ff_h264qpel_init_ppc() argument 293 c->PFX ## _pixels_tab[IDX][ 0] = PFX ## NUM ## _mc00_altivec; \ in ff_h264qpel_init_ppc() 294 c->PFX ## _pixels_tab[IDX][ 1] = PFX ## NUM ## _mc10_altivec; \ in ff_h264qpel_init_ppc() 295 c->PFX ## _pixels_tab[IDX][ 2] = PFX ## NUM ## _mc20_altivec; \ in ff_h264qpel_init_ppc() 296 c->PFX ## _pixels_tab[IDX][ 3] = PFX ## NUM ## _mc30_altivec; \ in ff_h264qpel_init_ppc() 297 c->PFX ## _pixels_tab[IDX][ 4] = PFX ## NUM ## _mc01_altivec; \ in ff_h264qpel_init_ppc() 298 c->PFX ## _pixels_tab[IDX][ 5] = PFX ## NUM ## _mc11_altivec; \ in ff_h264qpel_init_ppc() 299 c->PFX ## _pixels_tab[IDX][ 6] = PFX ## NUM ## _mc21_altivec; \ in ff_h264qpel_init_ppc() 300 c->PFX ## _pixels_tab[IDX][ 7] = PFX ## NUM ## _mc31_altivec; \ in ff_h264qpel_init_ppc() 301 c->PFX ## _pixels_tab[IDX][ 8] = PFX ## NUM ## _mc02_altivec; \ in ff_h264qpel_init_ppc() [all …]
|
/third_party/skia/third_party/externals/angle2/tools/flex-bison/third_party/skeletons/ |
D | bison.m4 | 292 [[YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing 293 STATE-NUM.]]) 296 [[YYDEFACT[STATE-NUM] -- Default reduction number in state STATE-NUM. 300 $1([pgoto], [b4_pgoto], [[YYPGOTO[NTERM-NUM].]]) 302 $1([defgoto], [b4_defgoto], [[YYDEFGOTO[NTERM-NUM].]]) 305 [[YYTABLE[YYPACT[STATE-NUM]] -- What to do in state STATE-NUM. If 312 [[YYSTOS[STATE-NUM] -- The (internal number of the) accessing 313 symbol of state STATE-NUM.]]) 392 # __b4_symbol(NUM, FIELD) 394 # Recover a FIELD about symbol #NUM. Thanks to m4_indir, fails if [all …]
|
/third_party/rust/crates/clap/tests/ |
D | macros.rs | 4 let arg = clap::arg!(foo: --bar <NUM>); in name_explicit() 13 let arg = clap::arg!(--bar <NUM>); in name_from_long() 22 let arg = clap::arg!(<NUM>); in name_from_value() 189 let arg = clap::arg!(foo: -b <NUM>); in short_with_value() 197 let arg = clap::arg!(foo: -'b' <NUM>); in short_with_value() 205 let arg = clap::arg!(foo: -b <NUM> ...); in short_with_value() 213 let arg = clap::arg!(foo: -b <NUM> "How to use it"); in short_with_value() 227 let arg = clap::arg!(<NUM>); in positional() 235 let arg = clap::arg!([NUM]); in positional() 243 let arg = clap::arg!(<NUM>); in positional() [all …]
|
/third_party/node/test/parallel/ |
D | test-process-getactivehandles.js | 6 const NUM = 8; constant 17 if (clients_counter >= NUM) return; 27 if (++clients_counter >= NUM)
|
/third_party/ltp/testcases/kernel/hotplug/cpu_hotplug/functional/ |
D | cpuhotplug03.sh | 134 NUM=`ps -o psr -o command --no-headers -C cpuhotplug_do_s \ 137 if [ $NUM -lt 1 ]; then 148 tst_resm TPASS "$NUM cpuhotplug_do_spin_loop processes found on \
|
/third_party/skia/third_party/externals/brotli/c/tools/ |
D | brotli.md | 76 * `-q NUM`, `--quality=NUM`: 82 * `-w NUM`, `--lgwin=NUM`: 84 `(2**NUM - 16)`; 0 lets compressor decide over the optimal value; bigger
|
/third_party/ejdb/src/jbs/ |
D | README.md | 14 -p, --port=NUM HTTP server port numer. Default: 9191 25 …-S, --sbz=NUM Max sorting buffer size. If exceeded, an overflow temp file for data will be create… 27 …-D, --dsz=NUM Initial size of buffer to process/store document on queries. Preferable average siz…
|
/third_party/openssl/util/ |
D | find-unused-errs | 41 NUM=`wc -l <$X2` 42 test $NUM -gt 2 && continue
|
/third_party/libbpf/src/ |
D | libbpf_common.h | 46 #define ___libbpf_select(NAME, NUM) ___libbpf_cat(NAME, NUM) argument
|
/third_party/openssl/crypto/sha/asm/ |
D | sha1-c64xplus.pl | 37 ($CTX,$INP,$NUM) = ("A4","B4","A6"); # arguments 67 MV $NUM,A0 ; reassign $NUM 69 [!A0] BNOP RA ; if ($NUM==0) return;
|
D | sha256-c64xplus.pl | 31 ($CTXA,$INP,$NUM) = ("A4","B4","A6"); # arguments 69 MV $NUM,A0 ; reassign $NUM 71 [!A0] BNOP RA ; if ($NUM==0) return;
|
/third_party/skia/third_party/externals/icu/source/samples/coll/ |
D | coll.cpp | 67 enum {FLAG, NUM, STRING} type; enumerator 82 {"-level", OptSpec::NUM, &opt_level}, 111 case OptSpec::NUM: in processOptions()
|
/third_party/icu/icu4c/source/samples/coll/ |
D | coll.cpp | 67 enum {FLAG, NUM, STRING} type; enumerator 82 {"-level", OptSpec::NUM, &opt_level}, 111 case OptSpec::NUM: in processOptions()
|
/third_party/flutter/skia/third_party/externals/icu/source/samples/coll/ |
D | coll.cpp | 67 enum {FLAG, NUM, STRING} type; enumerator 82 {"-level", OptSpec::NUM, &opt_level}, 111 case OptSpec::NUM: in processOptions()
|
/third_party/ffmpeg/libavcodec/x86/ |
D | h264dsp_init.c | 29 #define IDCT_ADD_FUNC(NUM, DEPTH, OPT) \ argument 30 void ff_h264_idct ## NUM ## _add_ ## DEPTH ## _ ## OPT(uint8_t *dst, \ 52 #define IDCT_ADD_REP_FUNC(NUM, REP, DEPTH, OPT) \ argument 53 void ff_h264_idct ## NUM ## _add ## REP ## _ ## DEPTH ## _ ## OPT \ 74 #define IDCT_ADD_REP_FUNC2(NUM, REP, DEPTH, OPT) \ argument 75 void ff_h264_idct ## NUM ## _add ## REP ## _ ## DEPTH ## _ ## OPT \
|
/third_party/icu/icu4c/source/test/perf/ubrkperf/ |
D | ubrkperfold.cpp | 130 enum {FLAG, NUM, STRING} type; enumerator 137 {"-langid", OptSpec::NUM, &opt_langid}, 142 {"-loop", OptSpec::NUM, &opt_loopCount}, 143 {"-time", OptSpec::NUM, &opt_time}, 144 {"-passes", OptSpec::NUM, &opt_passesCount}, 257 case OptSpec::NUM: in ProcessOptions()
|
/third_party/icu/icu4c/source/samples/strsrch/ |
D | strsrch.cpp | 75 enum {FLAG, NUM, STRING} type; enumerator 90 {"-level", OptSpec::NUM, &opt_level}, 121 case OptSpec::NUM: in processOptions()
|
/third_party/skia/third_party/externals/icu/source/samples/strsrch/ |
D | strsrch.cpp | 75 enum {FLAG, NUM, STRING} type; enumerator 90 {"-level", OptSpec::NUM, &opt_level}, 121 case OptSpec::NUM: in processOptions()
|
/third_party/flutter/skia/third_party/externals/icu/source/samples/strsrch/ |
D | strsrch.cpp | 75 enum {FLAG, NUM, STRING} type; enumerator 90 {"-level", OptSpec::NUM, &opt_level}, 121 case OptSpec::NUM: in processOptions()
|