HomeSort by relevance Sort by last modified time
    Searched defs:hexDigit (Results 1 - 25 of 35) 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]);
  /external/llvm/lib/Support/
APFloat.cpp 315 unsigned int hexDigit;
330 hexDigit = hexDigitValue(*p);
334 if (hexDigit == -1U)
    [all...]
  /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];
  /libcore/ojluni/src/main/java/java/util/
Properties.java     [all...]
  /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/cintltst/
bocu1tst.c 752 hexDigit(uint8_t digit) {
770 *out++=hexDigit((uint8_t)(b>>4));
771 *out++=hexDigit((uint8_t)(b&0xf));
  /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/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/clang/lib/AST/
ItaniumMangle.cpp 709 llvm::integerPart hexDigit
711 hexDigit >>= (digitBitIndex % llvm::integerPartWidth);
712 hexDigit &= 0xF;
719 buffer[stringIndex] = charForHex[hexDigit];
    [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 
  /prebuilts/tools/common/m2/repository/org/apache/commons/commons-lang3/3.3/
commons-lang3-3.3.jar 
  /prebuilts/tools/common/m2/repository/org/apache/commons/commons-lang3/3.3.2/
commons-lang3-3.3.2.jar 
  /prebuilts/tools/common/m2/repository/org/apache/commons/commons-lang3/3.4/
commons-lang3-3.4.jar 
  /prebuilts/tools/common/offline-m2/org/apache/commons/commons-lang3/3.3.2/
commons-lang3-3.3.2.jar 
  /prebuilts/tools/common/m2/repository/com/squareup/okhttp/okhttp/2.5.0/
okhttp-2.5.0.jar 
  /development/tools/checkstyle/
checkstyle.jar 
  /frameworks/data-binding/prebuilds/1.0-rc0/
databinding-studio-bundle.jar 
  /prebuilts/devtools/tools/lib/
lombok-ast-0.2.3.jar 
  /prebuilts/gradle-plugin/com/android/tools/external/lombok/lombok-ast/0.2.2/
lombok-ast-0.2.2.jar 
  /prebuilts/gradle-plugin/com/android/tools/external/lombok/lombok-ast/0.2.3/
lombok-ast-0.2.3.jar 
  /prebuilts/tools/common/lombok-ast/
lombok-ast-0.2.2.jar 

Completed in 441 milliseconds

1 2