Searched refs:bcd (Results 1 - 25 of 27) sorted by relevance

12

/external/chromium_org/v8/test/intl/overrides/
H A Dsecurity.js50 assertDoesNotThrow('new String(\'abc\').localeCompare(\'bcd\')');
/external/chromium_org/third_party/icu/source/i18n/
H A DdecNumberLocal.h486 #define GETCOEFF(df, bcd) { \
488 *(bcd)=(uByte)DECCOMBMSD[sourhi>>26]; \
489 dpd2bcd8(bcd+1, sourhi>>10); \
490 dpd2bcd83(bcd+4, sourhi);}
491 #define GETWCOEFF(df, bcd) { \
494 *(bcd)=(uByte)DECCOMBMSD[sourhi>>26]; \
495 dpd2bcd8(bcd+1, sourhi>>8); \
496 dpd2bcd8(bcd+4, (sourhi<<2) | (sourlo>>30)); \
497 dpd2bcd8(bcd+7, sourlo>>20); \
498 dpd2bcd8(bcd
[all...]
H A DdecNumber.c2518 /* start: 00a bcd efg hij klm npq */
3456 /* bcd is the uInt array that will receive dn->digits BCD bytes, */
3458 /* returns bcd */
3460 /* bcd must have at least dn->digits bytes. No error is possible; if */
3463 U_CAPI uByte * U_EXPORT2 uprv_decNumberGetBCD(const decNumber *dn, uByte *bcd) { argument
3464 uByte *ub=bcd+dn->digits-1; /* -> lsd */
3468 for (; ub>=bcd; ub--, up++) *ub=*up;
3472 for (; ub>=bcd; ub--) {
3482 return bcd;
3488 /* bcd i
3497 uprv_decNumberSetBCD(decNumber *dn, const uByte *bcd, uInt n) argument
[all...]
/external/icu4c/i18n/
H A DdecNumberLocal.h474 #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 DdecNumber.c2535 /* start: 00a bcd efg hij klm npq */
3477 /* bcd is the uInt array that will receive dn->digits BCD bytes, */
3479 /* returns bcd */
3481 /* bcd must have at least dn->digits bytes. No error is possible; if */
3484 U_CAPI uByte * U_EXPORT2 uprv_decNumberGetBCD(const decNumber *dn, uByte *bcd) { argument
3485 uByte *ub=bcd+dn->digits-1; /* -> lsd */
3489 for (; ub>=bcd; ub--, up++) *ub=*up;
3493 for (; ub>=bcd; ub--) {
3503 return bcd;
3509 /* bcd i
3518 uprv_decNumberSetBCD(decNumber *dn, const uByte *bcd, uInt n) argument
[all...]
/external/valgrind/main/memcheck/tests/amd64/
H A Dmore_x87_fp.c148 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/main/memcheck/tests/x86/
H A Dmore_x86_fp.c138 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/qemu/hw/
H A Di8254.c47 uint8_t bcd; /* not supported */ member in struct:PITChannelState
268 s->bcd;
284 s->bcd = val & 1;
410 qemu_put_8s(f, &s->bcd);
441 qemu_get_8s(f, &s->bcd);
/external/qemu/telephony/
H A Dgsm.h25 /* convert a 8-bit value into the corresponding nibble-bcd byte */
28 /* convert a nibble-bcd byte into an int, invalid nibbles are silently converted to 0 */
145 /** Dial Numbers: TON byte + 'count' bcd numbers
148 /* convert a bcd-coded GSM dial number into an ASCII string (not zero-terminated)
152 extern int gsm_bcdnum_to_ascii ( cbytes_t bcd, int num_digits, bytes_t dst );
154 /* convert an ASCII dial-number into a bcd-coded string, returns the number of 4-bit nibbles written, */
H A Dgsm.c40 gsm_bcdi_to_ascii( cbytes_t bcd, int bcdlen, bytes_t dst )
48 int c = (bcd[0] >> shift) & 0xf;
60 bcd++;
996 gsm_bcdnum_to_ascii( cbytes_t bcd, int count, bytes_t dst ) argument
1002 int c = (bcd[0] >> shift) & 0xf;
1016 bcd += 1;
/external/chromium_org/third_party/skia/src/pathops/
H A DSkPathOpsCubic.cpp386 double bcd = SkDInterp(bc, cd, t); local
387 double abcd = SkDInterp(abc, bcd, t);
478 double bcd = SkDInterp(bc, cd, t); local
479 double abcd = SkDInterp(abc, bcd, t);
485 dst[8] = bcd;
H A DSkReduceOrder.cpp191 double bcd = SkDInterp(bc, cd, t); local
192 return SkDInterp(abc, bcd, t);
/external/skia/src/pathops/
H A DSkPathOpsCubic.cpp386 double bcd = SkDInterp(bc, cd, t); local
387 double abcd = SkDInterp(abc, bcd, t);
478 double bcd = SkDInterp(bc, cd, t); local
479 double abcd = SkDInterp(abc, bcd, t);
485 dst[8] = bcd;
H A DSkReduceOrder.cpp191 double bcd = SkDInterp(bc, cd, t); local
192 return SkDInterp(abc, bcd, t);
/external/valgrind/main/VEX/test/
H A Dtest-amd64.c668 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 Dtest-i386.c630 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/kernel-headers/original/asm-mips/sgi/
H A Dhpc3.h66 volatile u32 bcd; /* byte count info */ member in struct:hpc3_scsiregs
/external/qemu/android/config/linux-x86/asm/
H A Dkvm.h214 __u8 bcd; member in struct:kvm_pit_channel_state
/external/qemu/android/config/linux-x86_64/asm/
H A Dkvm.h214 __u8 bcd; member in struct:kvm_pit_channel_state
/external/valgrind/main/VEX/priv/
H A Dhost_generic_simd64.h163 extern ULong h_BCDtoDPB ( ULong bcd );
H A Dhost_generic_simd64.c1520 ULong h_BCDtoDPB( ULong bcd )
1528 chunk = bcd >> ( 4 - i ) * 12;
/external/chromium_org/third_party/skia/src/core/
H A DSkGeometry.cpp502 SkScalar bcd = SkScalarInterp(bc, cd, t);
503 return SkScalarInterp(abc, bcd, t);
575 SkScalar bcd = SkScalarInterp(bc, cd, t); local
576 SkScalar abcd = SkScalarInterp(abc, bcd, t);
582 dst[8] = bcd;
/external/skia/src/core/
H A DSkGeometry.cpp502 SkScalar bcd = SkScalarInterp(bc, cd, t);
503 return SkScalarInterp(abc, bcd, t);
575 SkScalar bcd = SkScalarInterp(bc, cd, t); local
576 SkScalar abcd = SkScalarInterp(abc, bcd, t);
582 dst[8] = bcd;
/external/chromium_org/third_party/icu/source/test/intltest/
H A Dapicoll.cpp2139 UnicodeString bcd("bcd", 3);
2140 if (col1.compare(abc, bcd) != abc.compare(bcd)) {
/external/icu4c/test/intltest/
H A Dapicoll.cpp2168 UnicodeString bcd("bcd", 3);
2169 if (col1.compare(abc, bcd) != abc.compare(bcd)) {

Completed in 798 milliseconds

12