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

1 2

  /hardware/qcom/msm8998/json-c/
bits.h 21 #define hexdigit(x) (((x) <= '9') ? (x) - '0' : ((x) & 7) + 9) macro
  /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/syslinux/core/fs/pxe/
urlparse.c 153 static int hexdigit(char c) function
184 x = hexdigit(p[0]);
186 y = hexdigit(p[1]);
  /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:__anon36804
208 Stream << '\\' << hexdigit(C >> 4) << hexdigit(C & 0x0F);
  /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-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/darwin-x86/clang-4393122/include/llvm/ADT/
StringExtras.h 32 /// hexdigit - Return the hexadecimal character for the
34 static inline char hexdigit(unsigned X, bool LowerCase = false) { function in namespace:llvm
68 *--BufPtr = hexdigit(Mod, LowerCase);
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/ADT/
StringExtras.h 32 /// hexdigit - Return the hexadecimal character for the
34 static inline char hexdigit(unsigned X, bool LowerCase = false) { function in namespace:llvm
68 *--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);
  /prebuilts/clang/host/linux-x86/clang-4393122/include/llvm/ADT/
StringExtras.h 32 /// hexdigit - Return the hexadecimal character for the
34 static inline char hexdigit(unsigned X, bool LowerCase = false) { function in namespace:llvm
68 *--BufPtr = hexdigit(Mod, LowerCase);
  /prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/ADT/
StringExtras.h 32 /// hexdigit - Return the hexadecimal character for the
34 static inline char hexdigit(unsigned X, bool LowerCase = false) { function in namespace:llvm
68 *--BufPtr = hexdigit(Mod, LowerCase);
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/ADT/
StringExtras.h 34 /// hexdigit - Return the hexadecimal character for the
36 static inline char hexdigit(unsigned X, bool LowerCase = false) { function in namespace:llvm
85 *--BufPtr = hexdigit(Mod, LowerCase);
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/ADT/
StringExtras.h 34 /// hexdigit - Return the hexadecimal character for the
36 static inline char hexdigit(unsigned X, bool LowerCase = false) { function in namespace:llvm
85 *--BufPtr = hexdigit(Mod, LowerCase);
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/ADT/
StringExtras.h 34 /// hexdigit - Return the hexadecimal character for the
36 static inline char hexdigit(unsigned X, bool LowerCase = false) { function in namespace:llvm
85 *--BufPtr = hexdigit(Mod, LowerCase);
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/ADT/
StringExtras.h 34 /// hexdigit - Return the hexadecimal character for the
36 static inline char hexdigit(unsigned X, bool LowerCase = false) { function in namespace:llvm
85 *--BufPtr = hexdigit(Mod, LowerCase);
  /prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/ADT/
StringExtras.h 34 /// hexdigit - Return the hexadecimal character for the
36 static inline char hexdigit(unsigned X, bool LowerCase = false) { function in namespace:llvm
85 *--BufPtr = hexdigit(Mod, LowerCase);
  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/ADT/
StringExtras.h 34 /// hexdigit - Return the hexadecimal character for the
36 static inline char hexdigit(unsigned X, bool LowerCase = false) { function in namespace:llvm
85 *--BufPtr = hexdigit(Mod, LowerCase);
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/ADT/
StringExtras.h 34 /// hexdigit - Return the hexadecimal character for the
36 static inline char hexdigit(unsigned X, bool LowerCase = false) { function in namespace:llvm
85 *--BufPtr = hexdigit(Mod, LowerCase);
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/ADT/
StringExtras.h 34 /// hexdigit - Return the hexadecimal character for the
36 static inline char hexdigit(unsigned X, bool LowerCase = false) { function in namespace:llvm
85 *--BufPtr = hexdigit(Mod, LowerCase);
  /external/tcpdump/
print-esp.c 280 static u_int hexdigit(netdissect_options *ndo, char hex) function
298 byte = (hexdigit(ndo, hexstring[0]) << 4) + hexdigit(ndo, hexstring[1]);
  /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/valgrind/coregrind/m_aspacemgr/
aspacemgr-linux.c 3252 static Int hexdigit ( HChar c ) function
    [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 886 milliseconds

1 2