Searched refs:HEX_DIGITS (Results 1 – 7 of 7) sorted by relevance
/third_party/openssl/crypto/ec/ |
D | ec_print.c | 72 static const char *HEX_DIGITS = "0123456789ABCDEF"; variable 97 *(p++) = HEX_DIGITS[v >> 4]; in EC_POINT_point2hex() 98 *(p++) = HEX_DIGITS[v & 0x0F]; in EC_POINT_point2hex()
|
/third_party/mindspore/mindspore/lite/java/java/fl_client/src/main/java/com/mindspore/flclient/cipher/ |
D | BaseUtil.java | 31 …private static final char[] HEX_DIGITS = new char[]{'0', '1', '2', '3', '4', '5', '6', '7', '8', '… field in BaseUtil 50 chars[i * 2] = HEX_DIGITS[(byteNum & 240) >> 4]; in byte2HexString() 51 chars[i * 2 + 1] = HEX_DIGITS[byteNum & 15]; in byte2HexString()
|
/third_party/protobuf/js/experimental/runtime/ |
D | int64.js | 194 nibbles[highIndex] = HEX_DIGITS[highBits & 0xF]; 195 nibbles[lowIndex] = HEX_DIGITS[lowBits & 0xF]; 401 const HEX_DIGITS = '0123456789abcdef'; constant
|
/third_party/googletest/googlemock/scripts/generator/cpp/ |
D | tokenize.py | 41 HEX_DIGITS = set('0123456789abcdefABCDEF') variable 127 hex_digits = HEX_DIGITS
|
/third_party/ejdb/src/bindings/ejdb2_jni/src/main/java/com/softmotions/ejdb2/ |
D | JSON.java | 809 …private static final char[] HEX_DIGITS = { '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'a', … field in JSON.JsonWriter 919 … return new char[] { '\\', 'u', '0', '0', HEX_DIGITS[ch >> 4 & 0x000f], HEX_DIGITS[ch & 0x000f] }; in getReplacementChars()
|
/third_party/openssl/apps/ |
D | ca.c | 1010 static const char HEX_DIGITS[] = "0123456789ABCDEF"; in ca_main() local 1013 *n++ = HEX_DIGITS[*psn >> 4]; in ca_main() 1014 *n++ = HEX_DIGITS[*psn & 0x0F]; in ca_main()
|
/third_party/icu/icu4c/source/test/cintltst/ |
D | cloctst.c | 626 static const char HEX_DIGITS[] = { in UCharsToEscapedAscii() local 670 resultChars[resultLen++]=HEX_DIGITS[(uc>>12)&0xff]; in UCharsToEscapedAscii() 671 resultChars[resultLen++]=HEX_DIGITS[(uc>>8)&0xff]; in UCharsToEscapedAscii() 672 resultChars[resultLen++]=HEX_DIGITS[(uc>>4)&0xff]; in UCharsToEscapedAscii() 673 resultChars[resultLen++]=HEX_DIGITS[uc&0xff]; in UCharsToEscapedAscii()
|