HomeSort by relevance Sort by last modified time
    Searched refs:hexDigit (Results 1 - 25 of 44) sorted by null

1 2

  /libcore/ojluni/src/main/java/sun/misc/
HexDumpEncoder.java 53 static void hexDigit(PrintStream p, byte x) {
84 hexDigit(pStream, (byte)((offset >>> 8) & 0xff));
85 hexDigit(pStream, (byte)(offset & 0xff));
93 hexDigit(pStream, buf[off]);
  /prebuilts/go/darwin-x86/src/net/
mac.go 7 const hexDigit = "0123456789abcdef"
21 buf = append(buf, hexDigit[b>>4])
22 buf = append(buf, hexDigit[b&0xF])
dnsclient.go 28 buf = append(buf, hexDigit[v&0xF])
30 buf = append(buf, hexDigit[v>>4])
parse.go 208 dst = append(dst, hexDigit[v&0xf])
ip.go 427 buf[i*2], buf[i*2+1] = hexDigit[b>>4], hexDigit[b&0xf]
  /prebuilts/go/linux-x86/src/net/
mac.go 7 const hexDigit = "0123456789abcdef"
21 buf = append(buf, hexDigit[b>>4])
22 buf = append(buf, hexDigit[b&0xF])
dnsclient.go 28 buf = append(buf, hexDigit[v&0xF])
30 buf = append(buf, hexDigit[v>>4])
parse.go 208 dst = append(dst, hexDigit[v&0xf])
ip.go 427 buf[i*2], buf[i*2+1] = hexDigit[b>>4], hexDigit[b&0xf]
  /external/owasp/sanitizer/src/main/org/owasp/html/
Encoding.java 231 int hexDigit = (codepoint >>> (digit << 2)) & 0xf;
232 output.append(HEX_NUMERAL[hexDigit]);
  /dalvik/libdex/
DexFile.cpp 138 static const char hexDigit[] = "0123456789abcdef";
144 *cp++ = hexDigit[digest[i] >> 4];
145 *cp++ = hexDigit[digest[i] & 0x0f];
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/codec/
EncoderUtil.java 414 sb.append(hexDigit(v >>> 4));
415 sb.append(hexDigit(v & 0xf));
627 private static char hexDigit(int i) {
  /packages/services/Telephony/src/org/apache/james/mime4j/codec/
EncoderUtil.java 414 sb.append(hexDigit(v >>> 4));
415 sb.append(hexDigit(v & 0xf));
627 private static char hexDigit(int i) {
  /external/icu/icu4c/source/test/intltest/
convtest.cpp 769 hexDigit(uint8_t digit) {
780 *out++=hexDigit((uint8_t)(b>>4));
781 *out++=hexDigit((uint8_t)(b&0xf));
788 *out++=hexDigit((uint8_t)(b>>4));
789 *out++=hexDigit((uint8_t)(b&0xf));
810 *out++=hexDigit((uint8_t)((c>>16)&0xf));
812 *out++=hexDigit((uint8_t)((c>>12)&0xf));
813 *out++=hexDigit((uint8_t)((c>>8)&0xf));
814 *out++=hexDigit((uint8_t)((c>>4)&0xf));
815 *out++=hexDigit((uint8_t)(c&0xf))
    [all...]
itspoof.cpp 352 int hexDigit = (c>>bitNum) & 0x0f;
353 if (hexDigit != 0 || doZeroes) {
355 dest.append((UChar)(hexDigit<=9? hexDigit + 0x30: hexDigit -10 + 0x41));
  /external/icu/icu4c/source/test/cintltst/
bocu1tst.c 752 hexDigit(uint8_t digit) {
770 *out++=hexDigit((uint8_t)(b>>4));
771 *out++=hexDigit((uint8_t)(b&0xf));
  /libcore/ojluni/src/main/java/java/util/
Properties.java     [all...]
  /external/icu/icu4c/source/tools/makeconv/
genmbcs.cpp 106 hexDigit(uint8_t digit) {
114 *s++=hexDigit((uint8_t)(*bytes>>4));
115 *s++=hexDigit((uint8_t)(*bytes&0xf));
    [all...]
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
HttpUrl.java     [all...]
  /prebuilts/go/darwin-x86/src/fmt/
scan.go 873 // hexDigit returns the value of the hexadecimal digit.
874 func hexDigit(d rune) (int, bool) {
895 value1, ok := hexDigit(rune1)
900 value2, ok := hexDigit(s.mustReadRune())
  /prebuilts/go/linux-x86/src/fmt/
scan.go 873 // hexDigit returns the value of the hexadecimal digit.
874 func hexDigit(d rune) (int, bool) {
895 value1, ok := hexDigit(rune1)
900 value2, ok := hexDigit(s.mustReadRune())
  /external/clang/lib/AST/
ItaniumMangle.cpp 709 llvm::integerPart hexDigit
711 hexDigit >>= (digitBitIndex % llvm::integerPartWidth);
712 hexDigit &= 0xF;
719 buffer[stringIndex] = charForHex[hexDigit];
    [all...]
  /external/llvm/lib/Support/
APFloat.cpp 315 unsigned int hexDigit;
330 hexDigit = hexDigitValue(*p);
334 if (hexDigit == -1U)
    [all...]
  /external/owasp/sanitizer/distrib/lib/
owasp-java-html-sanitizer.jar 
  /prebuilts/tools/common/m2/repository/org/apache/commons/commons-lang3/3.2.1/
commons-lang3-3.2.1.jar 

Completed in 3559 milliseconds

1 2