Searched defs:bcd (Results 1 - 8 of 8) sorted by relevance

/external/valgrind/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/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/skia/src/pathops/
H A DSkPathOpsCubic.cpp91 double bcd = SkDInterp(bc, cd, t); local
92 double abcd = SkDInterp(abc, bcd, t);
98 dst[8] = bcd;
657 double bcd = SkDInterp(bc, cd, t);
658 double abcd = SkDInterp(abc, bcd, t);
/external/valgrind/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/uapi/asm-x86/asm/
H A Dkvm.h242 __u8 bcd; member in struct:kvm_pit_channel_state
/external/google-breakpad/src/third_party/libdisasm/
H A Dlibdis.h255 unsigned char bcd[10]; member in union:__anon6951::__anon6952
/external/icu/icu4c/source/i18n/
H A DdecNumber.c2539 /* start: 00a bcd efg hij klm npq */
3481 /* bcd is the uInt array that will receive dn->digits BCD bytes, */
3483 /* returns bcd */
3485 /* bcd must have at least dn->digits bytes. No error is possible; if */
3488 U_CAPI uByte * U_EXPORT2 uprv_decNumberGetBCD(const decNumber *dn, uByte *bcd) { argument
3489 uByte *ub=bcd+dn->digits-1; /* -> lsd */
3493 for (; ub>=bcd; ub--, up++) *ub=*up;
3497 for (; ub>=bcd; ub--) {
3507 return bcd;
3513 /* bcd i
3522 uprv_decNumberSetBCD(decNumber *dn, const uByte *bcd, uInt n) argument
[all...]

Completed in 2352 milliseconds