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

1 2 3

  /hardware/qcom/msm8998/json-c/
bits.h 21 #define hexdigit(x) (((x) <= '9') ? (x) - '0' : ((x) & 7) + 9) macro
  /external/llvm/lib/ObjectYAML/
YAML.cpp 60 OS << hexdigit(Byte >> 4) << hexdigit(Byte & 0xf);
  /external/ipsec-tools/src/libipsec/
policy_token.l 72 hexdigit [0-9A-Fa-f]
92 hexpair {hexdigit}{hexdigit}
93 hexstring 0[xX]{hexdigit}+
  /external/llvm/lib/Support/
ScopedPrinter.cpp 40 OS << hexdigit((Data[addr + i] >> 4) & 0xF, false)
41 << hexdigit(Data[addr + i] & 0xF, false);
raw_ostream.cpp 175 *--CurPtr = hexdigit(x, /*LowerCase*/true);
207 *this << hexdigit((c >> 4 & 0xF));
208 *this << hexdigit((c >> 0) & 0xF);
426 *--CurPtr = hexdigit(x, !FN.Upper);
  /external/syslinux/core/fs/pxe/
urlparse.c 153 static int hexdigit(char c) function
184 x = hexdigit(p[0]);
186 y = hexdigit(p[1]);
  /external/swiftshader/third_party/LLVM/include/llvm/ADT/
StringExtras.h 28 /// hexdigit - Return the hexadecimal character for the
30 static inline char hexdigit(unsigned X, bool LowerCase = false) { function in namespace:llvm
54 *--BufPtr = hexdigit(Mod);
  /external/llvm/include/llvm/ADT/
StringExtras.h 24 /// hexdigit - Return the hexadecimal character for the
26 static inline char hexdigit(unsigned X, bool LowerCase = false) { function in namespace:llvm
55 *--BufPtr = hexdigit(Mod, LowerCase);
  /external/swiftshader/third_party/subzero/src/
IceGlobalInits.cpp 26 char hexdigit(unsigned X) { return X < 10 ? '0' + X : 'A' + X - 10; } function in namespace:__anon33378
208 Stream << '\\' << hexdigit(C >> 4) << hexdigit(C & 0x0F);
  /external/vboot_reference/host/arch/arm/lib/
crossystem_arch.c 352 char hexdigit[3]; local
357 hexdigit[2] = '\0';
359 hexdigit[0] = hexstring[i * 2];
360 hexdigit[1] = hexstring[i * 2 + 1];
361 vnc->raw[i] = strtol(hexdigit, NULL, 16);
  /external/llvm/lib/MC/
MCFragment.cpp 363 OS << hexdigit((Contents[i] >> 4) & 0xF) << hexdigit(Contents[i] & 0xF);
387 OS << hexdigit((Contents[i] >> 4) & 0xF) << hexdigit(Contents[i] & 0xF);
  /external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
StringExtras.h 25 /// hexdigit - Return the hexadecimal character for the
27 static inline char hexdigit(unsigned X, bool LowerCase = false) { function in namespace:llvm
56 *--BufPtr = hexdigit(Mod, LowerCase);
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/ADT/
StringExtras.h 25 /// hexdigit - Return the hexadecimal character for the
27 static inline char hexdigit(unsigned X, bool LowerCase = false) { function in namespace:llvm
56 *--BufPtr = hexdigit(Mod, LowerCase);
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/ADT/
StringExtras.h 25 /// hexdigit - Return the hexadecimal character for the
27 static inline char hexdigit(unsigned X, bool LowerCase = false) { function in namespace:llvm
56 *--BufPtr = hexdigit(Mod, LowerCase);
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/ADT/
StringExtras.h 25 /// hexdigit - Return the hexadecimal character for the
27 static inline char hexdigit(unsigned X, bool LowerCase = false) { function in namespace:llvm
56 *--BufPtr = hexdigit(Mod, LowerCase);
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/ADT/
StringExtras.h 25 /// hexdigit - Return the hexadecimal character for the
27 static inline char hexdigit(unsigned X, bool LowerCase = false) { function in namespace:llvm
56 *--BufPtr = hexdigit(Mod, LowerCase);
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/ADT/
StringExtras.h 25 /// hexdigit - Return the hexadecimal character for the
27 static inline char hexdigit(unsigned X, bool LowerCase = false) { function in namespace:llvm
56 *--BufPtr = hexdigit(Mod, LowerCase);
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/ADT/
StringExtras.h 25 /// hexdigit - Return the hexadecimal character for the
27 static inline char hexdigit(unsigned X, bool LowerCase = false) { function in namespace:llvm
56 *--BufPtr = hexdigit(Mod, LowerCase);
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/ADT/
StringExtras.h 25 /// hexdigit - Return the hexadecimal character for the
27 static inline char hexdigit(unsigned X, bool LowerCase = false) { function in namespace:llvm
56 *--BufPtr = hexdigit(Mod, LowerCase);
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/ADT/
StringExtras.h 25 /// hexdigit - Return the hexadecimal character for the
27 static inline char hexdigit(unsigned X, bool LowerCase = false) { function in namespace:llvm
56 *--BufPtr = hexdigit(Mod, LowerCase);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
unicodeobject.c 3040 static const char *hexdigit = "0123456789abcdef"; local
3323 static const char *hexdigit = "0123456789abcdef"; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
unicodeobject.c 2992 static const char *hexdigit = "0123456789abcdef"; local
3275 static const char *hexdigit = "0123456789abcdef"; local
    [all...]
  /external/python/cpython2/Objects/
unicodeobject.c 3047 static const char *hexdigit = "0123456789abcdef"; local
3330 static const char *hexdigit = "0123456789abcdef"; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
cPickle.c 1320 static const char *hexdigit = "0123456789abcdef"; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
cPickle.c 1289 static const char *hexdigit = "0123456789abcdef"; local
    [all...]

Completed in 595 milliseconds

1 2 3