Home
last modified time | relevance | path

Searched refs:getU (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DDataExtractor.cpp41 T DataExtractor::getU(uint64_t *offset_ptr, Error *Err) const { in getU() function in DataExtractor
72 *value_ptr = getU<T>(offset_ptr, Err); in getUs()
81 return getU<uint8_t>(offset_ptr, Err); in getU8()
94 return getU<uint16_t>(offset_ptr, Err); in getU16()
103 uint24_t ExtractedVal = getU<uint24_t>(OffsetPtr, Err); in getU24()
109 return getU<uint32_t>(offset_ptr, Err); in getU32()
118 return getU<uint64_t>(offset_ptr, Err); in getU64()
H A DScaledNumber.cpp25 auto getU = [](uint64_t N) { return N >> 32; }; in multiply64() local
27 uint64_t UL = getU(LHS), LL = getL(LHS), UR = getU(RHS), LR = getL(RHS); in multiply64()
36 Upper += getU(N) + (NewLower < Lower); in multiply64()
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DDataExtractor.h702 template <typename T> T getU(uint64_t *OffsetPtr, Error *Err) const;