/external/icu/icu4c/source/i18n/ |
D | decNumberLocal.h | 474 #define GETCOEFF(df, bcd) { \ argument 476 *(bcd)=(uByte)DECCOMBMSD[sourhi>>26]; \ 477 dpd2bcd8(bcd+1, sourhi>>10); \ 478 dpd2bcd83(bcd+4, sourhi);} 479 #define GETWCOEFF(df, bcd) { \ argument 482 *(bcd)=(uByte)DECCOMBMSD[sourhi>>26]; \ 483 dpd2bcd8(bcd+1, sourhi>>8); \ 484 dpd2bcd8(bcd+4, (sourhi<<2) | (sourlo>>30)); \ 485 dpd2bcd8(bcd+7, sourlo>>20); \ 486 dpd2bcd8(bcd+10, sourlo>>10); \ [all …]
|
/external/valgrind/memcheck/tests/amd64/ |
D | more_x87_fp.c | 148 unsigned short bcd[5]; in test_fbcd() local 151 asm("fbstp %0" : "=m" (bcd[0]) : "t" (a) : "st"); in test_fbcd() 152 asm("fbld %1" : "=t" (b) : "m" (bcd[0])); in test_fbcd() 154 a, bcd[4], bcd[3], bcd[2], bcd[1], bcd[0], b); in test_fbcd()
|
/external/valgrind/memcheck/tests/x86/ |
D | more_x86_fp.c | 138 unsigned short bcd[5]; in test_fbcd() local 141 asm("fbstp %0" : "=m" (bcd[0]) : "t" (a) : "st"); in test_fbcd() 142 asm("fbld %1" : "=t" (b) : "m" (bcd[0])); in test_fbcd() 144 a, bcd[4], bcd[3], bcd[2], bcd[1], bcd[0], b); in test_fbcd()
|
/external/opencv3/3rdparty/openexr/IlmImf/ |
D | ImfTimeCode.cpp | 143 bcdToBinary (unsigned int bcd) in bcdToBinary() argument 145 return int ((bcd & 0x0f) + 10 * ((bcd >> 4) & 0x0f)); in bcdToBinary()
|
/external/pcre/dist/testdata/ |
D | testinput4 | 38 a\x{240}bcd 44 a\x{240}bcd 50 a\x{240}bcd 110 a\x{100}bcd 113 a\x{100000}bcd 133 bcd 146 bcd
|
D | testinput9 | 94 a\x{240}bcd 100 a\x{240}bcd 106 a\x{240}bcd 166 a\x{100}bcd 169 a\x{100000}bcd 189 bcd 202 bcd
|
D | testoutput4 | 67 a\x{240}bcd 79 a\x{240}bcd 91 a\x{240}bcd 224 a\x{100}bcd 228 a\x{100000}bcd 262 bcd 263 0: bcd 281 bcd 282 0: bcd
|
D | testinput8 | 436 bcd 441 bcd\N 814 a bcd 2123 bcd 2128 bcd 2133 bcd 2138 bcd 2144 bcd 2151 bcd 2156 bcd [all …]
|
D | testoutput8 | 353 2: bcd 372 2: bcd 395 2: bcd 399 2: bcd 863 bcd 874 bcd\N 1529 a bcd 1530 0: a bcd 3258 bcd 3266 bcd [all …]
|
D | testinput1 | 308 a bcd 1695 bcd 1700 bcd 1705 bcd 1710 bcd 1716 bcd 1723 bcd 1728 bcd 1733 bcd 1739 bcd [all …]
|
D | testoutput1 | 604 a bcd 605 0: a bcd 2549 bcd 2557 bcd 2567 bcd 2577 bcd 2590 bcd 2606 bcd 2616 bcd 2626 bcd [all …]
|
D | testoutput9 | 154 a\x{240}bcd 163 a\x{240}bcd 173 a\x{240}bcd 280 a\x{100}bcd 284 a\x{100000}bcd 316 bcd 317 0: bcd 336 bcd 337 0: bcd
|
/external/skia/experimental/docs/ |
D | interpolatorFunctions.js | 11 var bcd = interp(bc, cd, t); 12 var abcd = interp(abc, bcd, t);
|
/external/llvm/test/Transforms/InstCombine/ |
D | strstr-1.ll | 10 @.str3 = private constant [4 x i8] c"bcd\00" 34 ; Check strstr("abcde", "bcd") -> "abcde" + 1.
|
/external/valgrind/VEX/test/ |
D | test-i386.c | 630 unsigned short bcd[5]; in test_fbcd() local 633 asm("fbstp %0" : "=m" (bcd[0]) : "t" (a) : "st"); in test_fbcd() 634 asm("fbld %1" : "=t" (b) : "m" (bcd[0])); in test_fbcd() 636 a, bcd[4], bcd[3], bcd[2], bcd[1], bcd[0], b); in test_fbcd()
|
D | test-amd64.c | 668 unsigned short bcd[5]; in test_fbcd() local 671 asm("fbstp %0" : "=m" (bcd[0]) : "t" (a) : "st"); in test_fbcd() 672 asm("fbld %1" : "=t" (b) : "m" (bcd[0])); in test_fbcd() 674 a, bcd[4], bcd[3], bcd[2], bcd[1], bcd[0], b); in test_fbcd()
|
/external/skia/src/pathops/ |
D | SkPathOpsCubic.cpp | 94 double bcd = SkDInterp(bc, cd, t); in interp_cubic_coords() local 95 double abcd = SkDInterp(abc, bcd, t); in interp_cubic_coords() 101 dst[8] = bcd; in interp_cubic_coords() 623 double bcd = SkDInterp(bc, cd, t); in interp_cubic_coords() local 624 double abcd = SkDInterp(abc, bcd, t); in interp_cubic_coords()
|
/external/v8/test/webkit/fast/js/kde/ |
D | statements-expected.txt | 30 PASS testSwitch(1) is 'bcd'
|
/external/skia/src/core/ |
D | SkGeometry.cpp | 313 SkScalar bcd = SkScalarInterp(bc, cd, t); in eval_cubic() local 314 return SkScalarInterp(abc, bcd, t); in eval_cubic() 406 Sk2s bcd = interp(bc, cd, tt); in SkChopCubicAt() local 407 Sk2s abcd = interp(abc, bcd, tt); in SkChopCubicAt() 413 dst[4] = to_point(bcd); in SkChopCubicAt()
|
/external/valgrind/VEX/priv/ |
D | host_generic_simd64.h | 165 extern ULong h_calc_BCDtoDPB ( ULong bcd );
|
/external/icu/icu4c/source/test/testdata/ |
D | re_tests.txt | 172 ([abc])*bcd abcd y $&-$1 abcd-a 186 (a|b)c*d abcd y $&-$1 bcd-b 204 a[bcd]*dcdcde adcdcde y $& adcdcde 205 a[bcd]+dcdcde adcdcde n - - 352 '([abc])*bcd'i ABCD y $&-$1 ABCD-A 368 'a[bcd]*dcdcde'i ADCDCDE y $& ADCDCDE 369 'a[bcd]+dcdcde'i ADCDCDE n - - 550 ^[^bcd]*(c+) aexycd y $1 c 555 ^[^bcd]*(c+) aexycd y $1 c
|
/external/kernel-headers/original/uapi/asm-x86/asm/ |
D | kvm.h | 242 __u8 bcd; member
|
/external/valgrind/docs/internals/ |
D | s390-opcodes.csv | 703 cdstr,"convert from signed bcd long dfp","not implemented", 704 cxstr,"convert from signed bcd extended dfp","not implemented", 705 cdutr,"convert from unsigned bcd to long dfp","not implemented", 706 cxutr,"convert from unsigned bcd to extended dfp","not implemented", 709 csdtr,"convert from long dfp to signed bcd","not implemented", 710 csxtr,"convert from extended dfp to signed bcd","not implemented", 711 cudtr,"convert from long dfp to unsigned bcd","not implemented", 712 cuxtr,"convert from extended dfp to unsigned bcd","not implemented",
|
/external/google-breakpad/src/third_party/libdisasm/ |
D | libdis.h | 255 unsigned char bcd[10]; member
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/collator/ |
D | CollationAPITest.java | 810 String bcd = "bcd"; 811 if (col1.compare(abc, bcd) != abc.compareTo(bcd)) {
|