Home
last modified time | relevance | path

Searched refs:HEX_DIGITS (Results 1 - 7 of 7) sorted by relevance

/third_party/node/deps/openssl/openssl/crypto/ec/
H A Dec_print.c14 static const char *HEX_DIGITS = "0123456789ABCDEF"; variable
39 *(p++) = HEX_DIGITS[v >> 4]; in EC_POINT_point2hex()
40 *(p++) = HEX_DIGITS[v & 0x0F]; in EC_POINT_point2hex()
/third_party/openssl/crypto/ec/
H A Dec_print.c14 static const char *HEX_DIGITS = "0123456789ABCDEF"; variable
39 *(p++) = HEX_DIGITS[v >> 4]; in EC_POINT_point2hex()
40 *(p++) = HEX_DIGITS[v & 0x0F]; in EC_POINT_point2hex()
/third_party/protobuf/js/experimental/runtime/
H A Dint64.js194 nibbles[highIndex] = HEX_DIGITS[highBits & 0xF];
195 nibbles[lowIndex] = HEX_DIGITS[lowBits & 0xF];
401 const HEX_DIGITS = '0123456789abcdef';
/third_party/googletest/googlemock/scripts/generator/cpp/
H A Dtokenize.py41 HEX_DIGITS = set('0123456789abcdefABCDEF') variable
127 hex_digits = HEX_DIGITS
/third_party/node/deps/openssl/openssl/apps/
H A Dca.c1108 static const char HEX_DIGITS[] = "0123456789ABCDEF"; in ca_main() local
1111 *n++ = HEX_DIGITS[*psn >> 4]; in ca_main()
1112 *n++ = HEX_DIGITS[*psn & 0x0F]; in ca_main()
/third_party/openssl/apps/
H A Dca.c1094 static const char HEX_DIGITS[] = "0123456789ABCDEF"; in ca_main() local
1097 *n++ = HEX_DIGITS[*psn >> 4]; in ca_main()
1098 *n++ = HEX_DIGITS[*psn & 0x0F]; in ca_main()
/third_party/icu/icu4c/source/test/cintltst/
H A Dcloctst.c636 static const char HEX_DIGITS[] = { in UCharsToEscapedAscii() local
680 resultChars[resultLen++]=HEX_DIGITS[(uc>>12)&0xff]; in UCharsToEscapedAscii()
681 resultChars[resultLen++]=HEX_DIGITS[(uc>>8)&0xff]; in UCharsToEscapedAscii()
682 resultChars[resultLen++]=HEX_DIGITS[(uc>>4)&0xff]; in UCharsToEscapedAscii()
683 resultChars[resultLen++]=HEX_DIGITS[uc&0xff]; in UCharsToEscapedAscii()

Completed in 16 milliseconds