HomeSort by relevance Sort by last modified time
    Searched defs:bcd (Results 1 - 22 of 22) sorted by null

  /libcore/luni/src/test/java/libcore/libcore/internal/
StringPoolTest.java 26 String bcd = stringPool.get(new char[] { 'a', 'b', 'c', 'd', 'e' }, 1, 3); local
27 assertEquals("bcd", bcd);
28 assertSame(bcd, stringPool.get(new char[] { 'a', 'b', 'c', 'd', 'e' }, 1, 3));
  /external/icu/android_icu4j/src/main/tests/android/icu/impl/number/
DecimalQuantity_64BitBCD.java 14 * The BCD of the 16 digits of the number represented by this object. Every 4 bits of the long map
15 * to one digit. For example, the number "12345" in BCD is "0x12345".
17 * <p>Whenever bcd changes internally, {@link #compact()} must be called, except in special cases
20 private long bcd; field in class:DecimalQuantity_64BitBCD
59 return (byte) ((bcd >>> (position * 4)) & 0xf);
66 bcd = bcd & ~(0xfL << shift) | ((long) value << shift);
72 bcd <<= (numDigits * 4);
79 bcd >>>= (numDigits * 4);
86 bcd = 0L
117 bcd = result >>> (adjustment * 4); field in class:DecimalQuantity_64BitBCD
    [all...]
DecimalQuantity_ByteArrayBCD.java 14 * The BCD of the 16 digits of the number represented by this object. Every 4 bits of the long map
15 * to one digit. For example, the number "12345" in BCD is "0x12345".
17 * <p>Whenever bcd changes internally, {@link #compact()} must be called, except in special cases
20 private byte[] bcd = new byte[100]; field in class:DecimalQuantity_ByteArrayBCD
59 return bcd[position];
66 bcd[position] = value;
74 bcd[i] = bcd[i - numDigits];
77 bcd[i] = 0;
87 bcd[i] = bcd[i + numDigits]
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/impl/number/
DecimalQuantity_64BitBCD.java 11 * The BCD of the 16 digits of the number represented by this object. Every 4 bits of the long map
12 * to one digit. For example, the number "12345" in BCD is "0x12345".
14 * <p>Whenever bcd changes internally, {@link #compact()} must be called, except in special cases
17 private long bcd; field in class:DecimalQuantity_64BitBCD
56 return (byte) ((bcd >>> (position * 4)) & 0xf);
63 bcd = bcd & ~(0xfL << shift) | ((long) value << shift);
69 bcd <<= (numDigits * 4);
76 bcd >>>= (numDigits * 4);
83 bcd = 0L
114 bcd = result >>> (adjustment * 4); field in class:DecimalQuantity_64BitBCD
    [all...]
DecimalQuantity_ByteArrayBCD.java 11 * The BCD of the 16 digits of the number represented by this object. Every 4 bits of the long map
12 * to one digit. For example, the number "12345" in BCD is "0x12345".
14 * <p>Whenever bcd changes internally, {@link #compact()} must be called, except in special cases
17 private byte[] bcd = new byte[100]; field in class:DecimalQuantity_ByteArrayBCD
56 return bcd[position];
63 bcd[position] = value;
71 bcd[i] = bcd[i - numDigits];
74 bcd[i] = 0;
84 bcd[i] = bcd[i + numDigits]
    [all...]
  /libcore/luni/src/test/java/libcore/java/util/concurrent/
CopyOnWriteArrayListTest.java 56 List<String> bcd = list.subList(1, 4); local
59 bcd.get(1);
68 List<String> bcd = list.subList(1, 4); local
71 bcd.get(1);
80 List<String> bcd = list.subList(1, 4); local
84 bcd.get(1);
107 List<String> bcd = list.subList(1, 4); local
108 bcd.clear();
110 bcd.addAll(Arrays.asList("B", "C", "D"));
121 Iterator<String> bcd = list.subList(1, 4).iterator() local
132 List<String> bcd = list.subList(1, 4); local
141 List<String> bcd = list.subList(1, 4); local
206 List<String> bcd = list.subList(1, 4); local
215 List<String> bcd = list.subList(1, 4); local
    [all...]
  /external/valgrind/memcheck/tests/amd64/
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/
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/skia/src/gpu/ccpr/
GrCCGeometry.cpp 503 Sk2f bcd = lerp(bc, cd, TT); local
504 Sk2f abcd = lerp(abc, bcd, TT);
506 (this->*AppendRight)(abcd, bcd, cd, p3, maxFutureSubdivisions);
  /external/skia/src/pathops/
SkPathOpsCubic.cpp 91 double bcd = SkDInterp(bc, cd, t); local
92 double abcd = SkDInterp(abc, bcd, t);
98 dst[8] = bcd;
650 double bcd = SkDInterp(bc, cd, t);
651 double abcd = SkDInterp(abc, bcd, t);
  /external/skqp/src/gpu/ccpr/
GrCCGeometry.cpp 503 Sk2f bcd = lerp(bc, cd, TT); local
504 Sk2f abcd = lerp(abc, bcd, TT);
506 (this->*AppendRight)(abcd, bcd, cd, p3, maxFutureSubdivisions);
  /external/skqp/src/pathops/
SkPathOpsCubic.cpp 91 double bcd = SkDInterp(bc, cd, t); local
92 double abcd = SkDInterp(abc, bcd, t);
98 dst[8] = bcd;
650 double bcd = SkDInterp(bc, cd, t);
651 double abcd = SkDInterp(abc, bcd, t);
  /external/valgrind/none/tests/amd64/
fb_test_amd64.c 990 unsigned short bcd[5]; local
993 asm("fbstp %0" : "=m" (bcd[0]) : "t" (a) : "st");
994 asm("fbld %1" : "=t" (b) : "m" (bcd[0]));
995 xxprintf("a=%f bcd=%04x%04x%04x%04x%04x b=%f\n",
996 a, bcd[4], bcd[3], bcd[2], bcd[1], bcd[0], b);
  /bionic/libc/kernel/uapi/asm-x86/asm/
kvm.h 216 __u8 bcd; member in struct:kvm_pit_channel_state
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/collator/
CollationAPITest.java 835 String bcd = "bcd"; local
    [all...]
  /external/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/collator/
CollationAPITest.java 832 String bcd = "bcd"; local
    [all...]
  /external/kernel-headers/original/uapi/asm-x86/asm/
kvm.h 246 __u8 bcd; member in struct:kvm_pit_channel_state
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/asm/
kvm.h 220 __u8 bcd; member in struct:kvm_pit_channel_state
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/asm/
kvm.h 220 __u8 bcd; member in struct:kvm_pit_channel_state
  /external/google-breakpad/src/third_party/libdisasm/
libdis.h 255 unsigned char bcd[10]; member in union:__anon21001::__anon21002
404 insn_bcdconv = 0xF002, /* convert to or from BCD */
    [all...]
  /external/valgrind/none/tests/ppc64/
test_isa_3_0.c 3814 unsigned int integer, altivec, altivec_quad, altivec_double, dfp, bcd, misc, mffs, member in struct:insn_sel_flags_t_struct
    [all...]
  /prebuilts/tools/common/m2/repository/org/json/json/20141113/
json-20141113.jar 

Completed in 870 milliseconds