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

  /external/icu/android_icu4j/src/main/tests/android/icu/dev/impl/number/
DecimalQuantity_64BitBCD.java 17 * The BCD of the 16 digits of the number represented by this object. Every 4 bits of the long map
18 * to one digit. For example, the number "12345" in BCD is "0x12345".
20 * <p>Whenever bcd changes internally, {@link #compact()} must be called, except in special cases
23 private long bcd; field in class:DecimalQuantity_64BitBCD
62 return (byte) ((bcd >>> (position * 4)) & 0xf);
69 bcd = bcd & ~(0xfL << shift) | ((long) value << shift);
75 bcd <<= (numDigits * 4);
82 bcd >>>= (numDigits * 4);
89 bcd = 0L
120 bcd = result >>> (adjustment * 4); field in class:DecimalQuantity_64BitBCD
    [all...]
DecimalQuantity_ByteArrayBCD.java 17 * The BCD of the 16 digits of the number represented by this object. Every 4 bits of the long map
18 * to one digit. For example, the number "12345" in BCD is "0x12345".
20 * <p>Whenever bcd changes internally, {@link #compact()} must be called, except in special cases
23 private byte[] bcd = new byte[100]; field in class:DecimalQuantity_ByteArrayBCD
62 return bcd[position];
69 bcd[position] = value;
77 bcd[i] = bcd[i - numDigits];
80 bcd[i] = 0;
90 bcd[i] = bcd[i + numDigits]
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/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/skia/src/pathops/
SkPathOpsCubic.cpp 90 double bcd = SkDInterp(bc, cd, t); local
91 double abcd = SkDInterp(abc, bcd, t);
97 dst[8] = bcd;
647 double bcd = SkDInterp(bc, cd, t);
648 double abcd = SkDInterp(abc, bcd, t);
  /external/skqp/src/pathops/
SkPathOpsCubic.cpp 90 double bcd = SkDInterp(bc, cd, t); local
91 double abcd = SkDInterp(abc, bcd, t);
97 dst[8] = bcd;
647 double bcd = SkDInterp(bc, cd, t);
648 double abcd = SkDInterp(abc, bcd, t);
  /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...]
  /bionic/libc/kernel/uapi/asm-x86/asm/
kvm.h 216 __u8 bcd; member in struct:kvm_pit_channel_state
  /external/kernel-headers/original/uapi/asm-x86/asm/
kvm.h 246 __u8 bcd; member in struct:kvm_pit_channel_state