Home
last modified time | relevance | path

Searched refs:HEX_DIGIT (Results 1 - 9 of 9) sorted by relevance

/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DUtility.java671 buffer.append(HEX_DIGIT[(c & 0700) >> 6]); // HEX_DIGIT works for octal in formatForSource()
672 buffer.append(HEX_DIGIT[(c & 0070) >> 3]); in formatForSource()
673 buffer.append(HEX_DIGIT[(c & 0007)]); in formatForSource()
683 buffer.append(HEX_DIGIT[(c & 0xF000) >> 12]); in formatForSource()
684 buffer.append(HEX_DIGIT[(c & 0x0F00) >> 8]); in formatForSource()
685 buffer.append(HEX_DIGIT[(c & 0x00F0) >> 4]); in formatForSource()
686 buffer.append(HEX_DIGIT[(c & 0x000F)]); in formatForSource()
695 static final char[] HEX_DIGIT = {'0','1','2','3','4','5','6','7', field in Utility
720 buffer.append(HEX_DIGIT[( in format1ForSource()
[all...]
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/
H A DUtility.java674 buffer.append(HEX_DIGIT[(c & 0700) >> 6]); // HEX_DIGIT works for octal in formatForSource()
675 buffer.append(HEX_DIGIT[(c & 0070) >> 3]); in formatForSource()
676 buffer.append(HEX_DIGIT[(c & 0007)]); in formatForSource()
686 buffer.append(HEX_DIGIT[(c & 0xF000) >> 12]); in formatForSource()
687 buffer.append(HEX_DIGIT[(c & 0x0F00) >> 8]); in formatForSource()
688 buffer.append(HEX_DIGIT[(c & 0x00F0) >> 4]); in formatForSource()
689 buffer.append(HEX_DIGIT[(c & 0x000F)]); in formatForSource()
698 static final char[] HEX_DIGIT = {'0','1','2','3','4','5','6','7', field in Utility
723 buffer.append(HEX_DIGIT[( in format1ForSource()
[all...]
/third_party/python/Objects/
H A Dfloatobject.c1442 /* for 0 <= j < ndigits, HEX_DIGIT(j) gives the jth most significant digit */ in float_fromhex()
1443 #define HEX_DIGIT(j) hex_from_char(*((j) < fdigits ? \ in float_fromhex() macro
1452 while (ndigits > 0 && HEX_DIGIT(ndigits-1) == 0) in float_fromhex()
1466 for (digit = HEX_DIGIT(ndigits-1); digit != 0; digit /= 2) in float_fromhex()
1485 x = 16.0*x + HEX_DIGIT(i); in float_fromhex()
1494 x = 16.0*x + HEX_DIGIT(i); in float_fromhex()
1495 digit = HEX_DIGIT(key_digit); in float_fromhex()
1503 key_digit+1 < ndigits && (HEX_DIGIT(key_digit+1) & 1) != 0)) in float_fromhex()
1507 if (HEX_DIGIT(i) != 0) { in float_fromhex()
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/lang/
H A DUProperty.java157 public static final int HEX_DIGIT = 13; field
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/lang/
H A DUProperty.java142 public static final int HEX_DIGIT = 13; field
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/lang/
H A DUCharacterTest.java1825 { 0x0044, UProperty.HEX_DIGIT, 1 }, in TestAdditionalProperties()
1826 { 0xff46, UProperty.HEX_DIGIT, 1 }, in TestAdditionalProperties()
1827 { 0x0047, UProperty.HEX_DIGIT, 0 }, in TestAdditionalProperties()
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/lang/
H A DUCharacterTest.java1830 { 0x0044, UProperty.HEX_DIGIT, 1 }, in TestAdditionalProperties()
1831 { 0xff46, UProperty.HEX_DIGIT, 1 }, in TestAdditionalProperties()
1832 { 0x0047, UProperty.HEX_DIGIT, 0 }, in TestAdditionalProperties()
/third_party/rust/crates/regex/regex-syntax/src/unicode_tables/
H A Dproperty_bool.rs35 ("Hex_Digit", HEX_DIGIT),
6135 pub const HEX_DIGIT: &'static [(char, char)] = &[ consts
/third_party/skia/third_party/externals/sfntly/java/lib/
H A Dicu4j-4_8_1_1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/ibm/ com/ibm/icu/ com/ibm/icu/impl/ ...

Completed in 25 milliseconds