HomeSort by: relevance | last modified time | path
    Searched defs:getUnsigned (Results 1 - 4 of 4) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Support/
DataExtractor.cpp 126 uint64_t DataExtractor::getUnsigned(uint64_t *offset_ptr, uint32_t byte_size,
138 llvm_unreachable("getUnsigned unhandled case!");
  /src/external/apache2/llvm/dist/clang/lib/ASTMatchers/Dynamic/
VariantValue.cpp 295 setUnsigned(Other.getUnsigned());
368 unsigned VariantValue::getUnsigned() const {
  /src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
APSInt.h 332 static APSInt getUnsigned(uint64_t X) { return APSInt(APInt(64, X), true); }
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
DataExtractor.h 270 uint64_t getUnsigned(uint64_t *offset_ptr, uint32_t byte_size,
276 uint64_t getUnsigned(Cursor &C, uint32_t Size) const {
277 return getUnsigned(&C.Offset, Size, &C.Err);
323 return getUnsigned(offset_ptr, AddressSize);
329 uint64_t getAddress(Cursor &C) const { return getUnsigned(C, AddressSize); }

Completed in 25 milliseconds