/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/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/openssl/crypto/bn/asm/ |
D | sparct4-mont.pl | 119 my $NUM=shift; 123 .globl bn_mul_mont_t4_$NUM 125 bn_mul_mont_t4_$NUM: 175 for($i=0; $i<14 && $i<$NUM; $i++) { 184 for(; $i<$NUM; $i++) { 196 for($i=0; $i<14 && $i<$NUM; $i++) { 208 for(; $i<28 && $i<$NUM; $i++) { 220 for(; $i<$NUM; $i++) { 221 my $lo=($i<$NUM-1)?@N[$i+1]:"%o7"; 231 be SIZE_T_CC,.Lmsquare_$NUM [all …]
|
/third_party/e2fsprogs/tests/f_extent_htree/ |
D | script | 21 NUM=$(((BSIZE / (NAMELEN + 8)) * (BSIZE / 12) * 2)) 25 for N in $(seq $NUM); do 32 NUM=$((NUM * 5 / 3)) 33 echo "mke2fs -b $BSIZE -O dir_index,extent -E no_copy_xattrs -d$SRC -N$NUM $TMPFILE $NUM" >> $OUT 34 $MKE2FS -b $BSIZE -O dir_index,extent -E no_copy_xattrs -d$SRC -N$NUM $TMPFILE $NUM >> $OUT 2>&1
|
/third_party/boost/libs/phoenix/example/ |
D | parallel_for.cpp | 174 const int NUM = 1; in main() local 177 std::vector<int> a(NUM, 1); in main() 178 std::vector<int> b(NUM, 2); in main() 179 std::vector<int> c(NUM, 0); in main() 194 std::vector<int> a(NUM, 1); in main() 195 std::vector<int> b(NUM, 2); in main() 196 std::vector<int> c(NUM, 0); in main() 211 std::vector<int> a(NUM, 1); in main() 212 std::vector<int> b(NUM, 2); in main() 213 std::vector<int> c(NUM, 0); in main() [all …]
|
/third_party/ffmpeg/libavcodec/ppc/ |
D | h264qpel.c | 291 #define dspfunc(PFX, IDX, NUM) \ in ff_h264qpel_init_ppc() argument 292 c->PFX ## _pixels_tab[IDX][ 0] = PFX ## NUM ## _mc00_altivec; \ in ff_h264qpel_init_ppc() 293 c->PFX ## _pixels_tab[IDX][ 1] = PFX ## NUM ## _mc10_altivec; \ in ff_h264qpel_init_ppc() 294 c->PFX ## _pixels_tab[IDX][ 2] = PFX ## NUM ## _mc20_altivec; \ in ff_h264qpel_init_ppc() 295 c->PFX ## _pixels_tab[IDX][ 3] = PFX ## NUM ## _mc30_altivec; \ in ff_h264qpel_init_ppc() 296 c->PFX ## _pixels_tab[IDX][ 4] = PFX ## NUM ## _mc01_altivec; \ in ff_h264qpel_init_ppc() 297 c->PFX ## _pixels_tab[IDX][ 5] = PFX ## NUM ## _mc11_altivec; \ in ff_h264qpel_init_ppc() 298 c->PFX ## _pixels_tab[IDX][ 6] = PFX ## NUM ## _mc21_altivec; \ in ff_h264qpel_init_ppc() 299 c->PFX ## _pixels_tab[IDX][ 7] = PFX ## NUM ## _mc31_altivec; \ in ff_h264qpel_init_ppc() 300 c->PFX ## _pixels_tab[IDX][ 8] = PFX ## NUM ## _mc02_altivec; \ in ff_h264qpel_init_ppc() [all …]
|
/third_party/uboot/u-boot-2020.01/arch/arm/mach-keystone/include/mach/ |
D | clock.h | 60 #define GENERATE_ENUM(NUM, ENUM) ENUM = NUM, argument 61 #define GENERATE_INDX_STR(NUM, STRING) #NUM"\t- "#STRING"\n" argument
|
/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/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/ltp/testcases/kernel/hotplug/cpu_hotplug/functional/ |
D | cpuhotplug03.sh | 130 NUM=`ps -o psr -o command --no-headers -C cpuhotplug_do_s \ 133 if [ $NUM -lt 1 ]; then 144 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/openssl/util/ |
D | find-unused-errs | 41 NUM=`wc -l <$X2` 42 test $NUM -gt 2 && continue
|
/third_party/boost/libs/locale/src/shared/ |
D | mo_lambda.cpp | 126 enum { END = 0 , SHL = 256, SHR, GTE,LTE, EQ, NEQ, AND, OR, NUM, VARIABLE }; enumerator 236 if(val && res==NUM){ in get() 242 if(val && next_tocken==NUM) { in next() 244 return NUM; in next() 275 …lse if(isdigit(*ptr)) { int_value=strtol(text+pos,&tmp_ptr,0); pos=tmp_ptr-text; next_tocken=NUM; } in step() 324 else if(t.next()==NUM) { in value_expr()
|
/third_party/boost/boost/container/detail/ |
D | alloc_lib.h | 78 #define BOOST_CONTAINER_MEMCHAIN_INIT_FROM(PMEMCHAIN, FIRST, LAST, NUM)\ argument 81 (PMEMCHAIN)->num_mem = (NUM);\ 177 #define BOOST_CONTAINER_MEMCHAIN_INCORPORATE_AFTER(PMEMCHAIN, BEFORE_IT, FIRST, BEFORELAST, NUM)\ argument 184 size_t ____num____ = (NUM);\
|
/third_party/openssl/crypto/sha/asm/ |
D | sha1-c64xplus.pl | 38 ($CTX,$INP,$NUM) = ("A4","B4","A6"); # arguments 68 MV $NUM,A0 ; reassign $NUM 70 [!A0] BNOP RA ; if ($NUM==0) return;
|
D | sha256-c64xplus.pl | 32 ($CTXA,$INP,$NUM) = ("A4","B4","A6"); # arguments 70 MV $NUM,A0 ; reassign $NUM 72 [!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/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/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/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/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()
|