Searched refs:bcd (Results 1 - 25 of 29) 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.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...]
/external/icu/icu4c/source/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...]
/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/chromium_org/third_party/skia/experimental/Intersection/
H A DCubicSubDivide.cpp62 double bcd = interp(bc, cd, t); local
63 double abcd = interp(abc, bcd, t);
116 double bcd = interp(bc, cd, t); local
117 double abcd = interp(abc, bcd, t);
123 dst[8] = bcd;
H A DCubicReduceOrder.cpp18 double bcd = interp(bc, cd, t); local
19 return interp(abc, bcd, t);
/external/skia/experimental/Intersection/
H A DCubicSubDivide.cpp62 double bcd = interp(bc, cd, t); local
63 double abcd = interp(abc, bcd, t);
116 double bcd = interp(bc, cd, t); local
117 double abcd = interp(abc, bcd, t);
123 dst[8] = bcd;
H A DCubicReduceOrder.cpp18 double bcd = interp(bc, cd, t); local
19 return interp(abc, bcd, t);
/external/qemu/hw/timer/
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/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/chromium_org/third_party/skia/src/pathops/
H A DSkPathOpsCubic.cpp461 double bcd = SkDInterp(bc, cd, t); local
462 double abcd = SkDInterp(abc, bcd, t);
553 double bcd = SkDInterp(bc, cd, t); local
554 double abcd = SkDInterp(abc, bcd, t);
560 dst[8] = bcd;
/external/skia/src/pathops/
H A DSkPathOpsCubic.cpp461 double bcd = SkDInterp(bc, cd, t); local
462 double abcd = SkDInterp(abc, bcd, t);
553 double bcd = SkDInterp(bc, cd, t); local
554 double abcd = SkDInterp(abc, bcd, t);
560 dst[8] = bcd;
/external/kernel-headers/original/uapi/asm-x86/asm/
H A Dkvm.h237 __u8 bcd; member in struct:kvm_pit_channel_state
/external/linux-tools-perf/perf-3.12.0/arch/x86/include/uapi/asm/
H A Dkvm.h237 __u8 bcd; member in struct:kvm_pit_channel_state
/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.h165 extern ULong h_calc_BCDtoDPB ( ULong bcd );
/external/chromium_org/third_party/skia/src/core/
H A DSkGeometry.cpp399 SkScalar bcd = SkScalarInterp(bc, cd, t);
400 return SkScalarInterp(abc, bcd, t);
467 SkScalar bcd = SkScalarInterp(bc, cd, t); local
468 SkScalar abcd = SkScalarInterp(abc, bcd, t);
474 dst[8] = bcd;
/external/skia/src/core/
H A DSkGeometry.cpp399 SkScalar bcd = SkScalarInterp(bc, cd, t);
400 return SkScalarInterp(abc, bcd, t);
467 SkScalar bcd = SkScalarInterp(bc, cd, t); local
468 SkScalar abcd = SkScalarInterp(abc, bcd, t);
474 dst[8] = bcd;
/external/chromium_org/third_party/icu/source/test/intltest/
H A Dapicoll.cpp2159 UnicodeString bcd("bcd", 3);
2160 if (col1.compare(abc, bcd) != abc.compare(bcd)) {
/external/icu/icu4c/source/test/intltest/
H A Dapicoll.cpp2240 UnicodeString bcd("bcd", 3);
2241 if (col1.compare(abc, bcd) != abc.compare(bcd)) {

Completed in 318 milliseconds

12