Home
last modified time | relevance | path

Searched refs:bcd (Results 1 – 25 of 78) sorted by relevance

1234

/external/icu/icu4j/main/tests/core/src/com/ibm/icu/impl/number/
DDecimalQuantity_ByteArrayBCD.java17 private byte[] bcd = new byte[100]; field in DecimalQuantity_ByteArrayBCD
56 return bcd[position]; in getDigitPos()
63 bcd[position] = value; in setDigitPos()
71 bcd[i] = bcd[i - numDigits]; in shiftLeft()
74 bcd[i] = 0; in shiftLeft()
84 bcd[i] = bcd[i + numDigits]; in shiftRight()
87 bcd[i] = 0; in shiftRight()
96 bcd[i] = (byte) 0; in setBcdToZero()
110 bcd[i] = (byte) (n % 10); in readIntToBcd()
124 System.arraycopy(LONG_MIN_VALUE, 0, bcd, 0, LONG_MIN_VALUE.length); in readLongToBcd()
[all …]
DDecimalQuantity_64BitBCD.java17 private long bcd; field in DecimalQuantity_64BitBCD
56 return (byte) ((bcd >>> (position * 4)) & 0xf); in getDigitPos()
63 bcd = bcd & ~(0xfL << shift) | ((long) value << shift); in setDigitPos()
69 bcd <<= (numDigits * 4);
76 bcd >>>= (numDigits * 4);
83 bcd = 0L;
100 bcd = result >>> (i * 4);
114 bcd = result >>> (adjustment * 4); field in DecimalQuantity_64BitBCD
130 bcd = result >>> (adjustment * 4); in readBigIntegerToBcd()
149 if (bcd == 0L) { in compact()
[all …]
/external/icu/android_icu4j/src/main/tests/android/icu/impl/number/
DDecimalQuantity_ByteArrayBCD.java20 private byte[] bcd = new byte[100]; field in DecimalQuantity_ByteArrayBCD
59 return bcd[position]; in getDigitPos()
66 bcd[position] = value; in setDigitPos()
74 bcd[i] = bcd[i - numDigits]; in shiftLeft()
77 bcd[i] = 0; in shiftLeft()
87 bcd[i] = bcd[i + numDigits]; in shiftRight()
90 bcd[i] = 0; in shiftRight()
99 bcd[i] = (byte) 0; in setBcdToZero()
113 bcd[i] = (byte) (n % 10); in readIntToBcd()
127 System.arraycopy(LONG_MIN_VALUE, 0, bcd, 0, LONG_MIN_VALUE.length); in readLongToBcd()
[all …]
DDecimalQuantity_64BitBCD.java20 private long bcd; field in DecimalQuantity_64BitBCD
59 return (byte) ((bcd >>> (position * 4)) & 0xf); in getDigitPos()
66 bcd = bcd & ~(0xfL << shift) | ((long) value << shift); in setDigitPos()
72 bcd <<= (numDigits * 4);
79 bcd >>>= (numDigits * 4);
86 bcd = 0L;
103 bcd = result >>> (i * 4);
117 bcd = result >>> (adjustment * 4); field in DecimalQuantity_64BitBCD
133 bcd = result >>> (adjustment * 4); in readBigIntegerToBcd()
152 if (bcd == 0L) { in compact()
[all …]
/external/icu/icu4c/source/i18n/
DdecNumberLocal.h477 #define GETCOEFF(df, bcd) { \ argument
479 *(bcd)=(uByte)DECCOMBMSD[sourhi>>26]; \
480 dpd2bcd8(bcd+1, sourhi>>10); \
481 dpd2bcd83(bcd+4, sourhi);}
482 #define GETWCOEFF(df, bcd) { \ argument
485 *(bcd)=(uByte)DECCOMBMSD[sourhi>>26]; \
486 dpd2bcd8(bcd+1, sourhi>>8); \
487 dpd2bcd8(bcd+4, (sourhi<<2) | (sourlo>>30)); \
488 dpd2bcd8(bcd+7, sourlo>>20); \
489 dpd2bcd8(bcd+10, sourlo>>10); \
[all …]
/external/valgrind/memcheck/tests/amd64/
Dmore_x87_fp.c148 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/
Dmore_x86_fp.c138 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/valgrind/none/tests/amd64/
Dfb_test_amd64.c990 unsigned short bcd[5]; in test_fbcd() local
993 asm("fbstp %0" : "=m" (bcd[0]) : "t" (a) : "st"); in test_fbcd()
994 asm("fbld %1" : "=t" (b) : "m" (bcd[0])); in test_fbcd()
996 a, bcd[4], bcd[3], bcd[2], bcd[1], bcd[0], b); in test_fbcd()
/external/skqp/experimental/docs/
DinterpolatorFunctions.js11 var bcd = interp(bc, cd, t);
12 var abcd = interp(abc, bcd, t);
/external/skia/experimental/docs/
DinterpolatorFunctions.js11 var bcd = interp(bc, cd, t);
12 var abcd = interp(abc, bcd, t);
/external/llvm/test/Transforms/InstCombine/
Dstrstr-1.ll10 @.str3 = private constant [4 x i8] c"bcd\00"
34 ; Check strstr("abcde", "bcd") -> "abcde" + 1.
/external/swiftshader/third_party/LLVM/test/Transforms/SimplifyLibCalls/
DStrStr.ll10 @.str3 = private constant [4 x i8] c"bcd\00" ; <[4 x i8]*> [#uses=1]
36 ; strstr("abcde", "bcd") -> "abcde"+1
/external/honggfuzz/examples/apache-httpd/corpus_http2/
D1dbf2b922aef1c3ea2fa46eaa6f29004.00000078.honggfuzz.cov3 Host:[200::Abcd:abcd:f1cd:acd:%bcd:f1cd:ab.d:f1]
D21f7bee405b8aa5db631a925d26854fd.00000c28.honggfuzz.cov3 Host:[220::�bcd:abbd:f1c:f1cd:abcd:f1]
/external/honggfuzz/examples/apache-httpd/corpus_http1/
D1dbf2b922aef1c3ea2fa46eaa6f29004.00000078.honggfuzz.cov3 Host:[200::Abcd:abcd:f1cd:acd:%bcd:f1cd:ab.d:f1]
D21f7bee405b8aa5db631a925d26854fd.00000c28.honggfuzz.cov3 Host:[220::�bcd:abbd:f1c:f1cd:abcd:f1]
/external/skia/src/pathops/
DSkPathOpsCubic.cpp91 double bcd = SkDInterp(bc, cd, t); in interp_cubic_coords() local
92 double abcd = SkDInterp(abc, bcd, t); in interp_cubic_coords()
98 dst[8] = bcd; in interp_cubic_coords()
650 double bcd = SkDInterp(bc, cd, t); in interp_cubic_coords() local
651 double abcd = SkDInterp(abc, bcd, t); in interp_cubic_coords()
/external/skqp/src/pathops/
DSkPathOpsCubic.cpp91 double bcd = SkDInterp(bc, cd, t); in interp_cubic_coords() local
92 double abcd = SkDInterp(abc, bcd, t); in interp_cubic_coords()
98 dst[8] = bcd; in interp_cubic_coords()
650 double bcd = SkDInterp(bc, cd, t); in interp_cubic_coords() local
651 double abcd = SkDInterp(abc, bcd, t); in interp_cubic_coords()
/external/pcre/dist2/testdata/
Dtestinput6434 bcd
439 bcd\=notempty
806 a bcd
2104 bcd
2109 bcd
2114 bcd
2119 bcd
2125 bcd
2135 bcd
2141 bcd
[all …]
Dtestoutput6320 2: bcd
334 2: bcd
350 2: bcd
354 2: bcd
788 bcd
798 bcd\=notempty
1409 a bcd
1410 0: a bcd
3069 bcd
3077 bcd
[all …]
Dtestinput1313 a bcd
1682 bcd
1687 bcd
1692 bcd
1697 bcd
1703 bcd
1713 bcd
1719 bcd
1726 bcd
1734 bcd
[all …]
/external/skqp/src/gpu/ccpr/
DGrCCGeometry.cpp503 Sk2f bcd = lerp(bc, cd, TT); in chopCubic() local
504 Sk2f abcd = lerp(abc, bcd, TT); in chopCubic()
506 (this->*AppendRight)(abcd, bcd, cd, p3, maxFutureSubdivisions); in chopCubic()
/external/skia/src/gpu/ccpr/
DGrCCGeometry.cpp503 Sk2f bcd = lerp(bc, cd, TT); in chopCubic() local
504 Sk2f abcd = lerp(abc, bcd, TT); in chopCubic()
506 (this->*AppendRight)(abcd, bcd, cd, p3, maxFutureSubdivisions); in chopCubic()
/external/icu/icu4c/source/test/testdata/
Dre_tests.txt172 ([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/valgrind/VEX/priv/
Dhost_generic_simd64.h165 extern ULong h_calc_BCDtoDPB ( ULong bcd );

1234