/external/v8/test/intl/overrides/ |
H A D | security.js | 50 assertDoesNotThrow('new String(\'abc\').localeCompare(\'bcd\')');
|
/external/icu/icu4c/source/i18n/ |
H A D | decNumberLocal.h | 474 #define GETCOEFF(df, bcd) { \ 476 *(bcd)=(uByte)DECCOMBMSD[sourhi>>26]; \ 477 dpd2bcd8(bcd+1, sourhi>>10); \ 478 dpd2bcd83(bcd+4, sourhi);} 479 #define GETWCOEFF(df, bcd) { \ 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 [all...] |
H A D | decNumber.c | 2537 /* start: 00a bcd efg hij klm npq */ 3479 /* bcd is the uInt array that will receive dn->digits BCD bytes, */ 3481 /* returns bcd */ 3483 /* bcd must have at least dn->digits bytes. No error is possible; if */ 3486 U_CAPI uByte * U_EXPORT2 uprv_decNumberGetBCD(const decNumber *dn, uByte *bcd) { argument 3487 uByte *ub=bcd+dn->digits-1; /* -> lsd */ 3491 for (; ub>=bcd; ub--, up++) *ub=*up; 3495 for (; ub>=bcd; ub--) { 3505 return bcd; 3511 /* bcd i 3520 uprv_decNumberSetBCD(decNumber *dn, const uByte *bcd, uInt n) argument [all...] |
/external/valgrind/memcheck/tests/amd64/ |
H A D | more_x87_fp.c | 148 unsigned short bcd[5]; local 151 asm("fbstp %0" : "=m" (bcd[0]) : "t" (a) : "st"); 152 asm("fbld %1" : "=t" (b) : "m" (bcd[0])); 153 printf("a=%f bcd=%04x%04x%04x%04x%04x b=%f\n", 154 a, bcd[4], bcd[3], bcd[2], bcd[1], bcd[0], b);
|
/external/valgrind/memcheck/tests/x86/ |
H A D | more_x86_fp.c | 138 unsigned short bcd[5]; local 141 asm("fbstp %0" : "=m" (bcd[0]) : "t" (a) : "st"); 142 asm("fbld %1" : "=t" (b) : "m" (bcd[0])); 143 printf("a=%f bcd=%04x%04x%04x%04x%04x b=%f\n", 144 a, bcd[4], bcd[3], bcd[2], bcd[1], bcd[0], b);
|
/external/valgrind/VEX/test/ |
H A D | test-amd64.c | 668 unsigned short bcd[5]; local 671 asm("fbstp %0" : "=m" (bcd[0]) : "t" (a) : "st"); 672 asm("fbld %1" : "=t" (b) : "m" (bcd[0])); 673 printf("a=%f bcd=%04x%04x%04x%04x%04x b=%f\n", 674 a, bcd[4], bcd[3], bcd[2], bcd[1], bcd[0], b);
|
H A D | test-i386.c | 630 unsigned short bcd[5]; local 633 asm("fbstp %0" : "=m" (bcd[0]) : "t" (a) : "st"); 634 asm("fbld %1" : "=t" (b) : "m" (bcd[0])); 635 printf("a=%f bcd=%04x%04x%04x%04x%04x b=%f\n", 636 a, bcd[4], bcd[3], bcd[2], bcd[1], bcd[0], b);
|
/external/skia/src/pathops/ |
H A D | SkPathOpsCubic.cpp | 94 double bcd = SkDInterp(bc, cd, t); local 95 double abcd = SkDInterp(abc, bcd, t); 101 dst[8] = bcd; 613 double bcd = SkDInterp(bc, cd, t); 614 double abcd = SkDInterp(abc, bcd, t);
|
/external/kernel-headers/original/uapi/asm-x86/asm/ |
H A D | kvm.h | 240 __u8 bcd; member in struct:kvm_pit_channel_state
|
/external/valgrind/VEX/priv/ |
H A D | host_generic_simd64.h | 165 extern ULong h_calc_BCDtoDPB ( ULong bcd );
|
H A D | host_generic_simd64.c | 1535 ULong h_calc_BCDtoDPB( ULong bcd ) 1543 chunk = bcd >> ( 4 - i ) * 12;
|
/external/skia/src/core/ |
H A D | SkGeometry.cpp | 364 SkScalar bcd = SkScalarInterp(bc, cd, t); 365 return SkScalarInterp(abc, bcd, t); 439 Sk2s bcd = interp(bc, cd, tt); local 440 Sk2s abcd = interp(abc, bcd, tt); 446 dst[4] = to_point(bcd);
|
/external/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/collator/ |
H A D | CollationAPITest.java | 806 String bcd = "bcd"; 807 if (col1.compare(abc, bcd) != abc.compareTo(bcd)) {
|
/external/google-breakpad/src/third_party/libdisasm/ |
H A D | libdis.h | 255 unsigned char bcd[10]; member in union:__anon5333::__anon5334
|
/external/icu/icu4c/source/test/intltest/ |
H A D | apicoll.cpp | 2225 UnicodeString bcd("bcd", 3); 2226 if (col1.compare(abc, bcd) != abc.compare(bcd)) {
|
/external/google-breakpad/src/third_party/libdisasm/swig/ |
H A D | libdisasm_oop.i | 157 unsigned char bcd[10];
|
/external/v8/test/mjsunit/third_party/ |
H A D | regexp-pcre.js | 93 res[14] = /a|[bcd]/i; 321 res[242] = /(?!.bcd).*/i; 1165 res[1086] = /([abc])*bcd/; 1180 res[1101] = /a[bcd]*dcdcde/; 1181 res[1102] = /a[bcd]+dcdcde/; 1257 res[1178] = /([abc])*bcd/i; 1272 res[1193] = /a[bcd]*dcdcde/i; 1273 res[1194] = /a[bcd]+dcdcde/i; 1332 res[1253] = /^[^bcd]*(c+)/; 1335 res[1256] = /^[^bcd]*( [all...] |