HomeSort by relevance Sort by last modified time
    Searched defs:utostr (Results 1 - 5 of 5) sorted by null

  /external/swiftshader/third_party/LLVM/include/llvm/ADT/
StringExtras.h 81 static inline std::string utostr(uint64_t X, bool isNeg = false) { function in namespace:llvm
99 return utostr(static_cast<uint64_t>(-X), true);
101 return utostr(static_cast<uint64_t>(X));
  /external/llvm/include/llvm/ADT/
StringExtras.h 78 static inline std::string utostr(uint64_t X, bool isNeg = false) { function in namespace:llvm
96 return utostr(static_cast<uint64_t>(-X), true);
98 return utostr(static_cast<uint64_t>(X));
  /external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
StringExtras.h 79 static inline std::string utostr(uint64_t X, bool isNeg = false) { function in namespace:llvm
97 return utostr(static_cast<uint64_t>(-X), true);
99 return utostr(static_cast<uint64_t>(X));
  /external/capstone/arch/AArch64/
AArch64BaseInfo.c 81 static char *utostr(uint64_t X, bool isNeg) function
685 Op1S = utostr(Op1, false);
686 CRnS = utostr(CRn, false);
687 CRmS = utostr(CRm, false);
688 Op2S = utostr(Op2, false);
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ADT/
StringExtras.h 223 inline std::string utostr(uint64_t X, bool isNeg = false) { function in namespace:llvm
240 return utostr(static_cast<uint64_t>(-X), true);
242 return utostr(static_cast<uint64_t>(X));

Completed in 1941 milliseconds