Home
last modified time | relevance | path

Searched refs:numWords (Results 1 – 4 of 4) sorted by relevance

/freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/
H A DAbstractBasicReader.h173 unsigned numWords = llvm::APInt::getNumWords(bitWidth); in readAPInt() local
175 for (uint32_t i = 0; i != numWords; ++i) in readAPInt()
177 return llvm::APInt(bitWidth, numWords, &data[0]); in readAPInt()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Support/
H A DAPInt.cpp36 inline static uint64_t* getClearedMemory(unsigned numWords) { in getClearedMemory() argument
37 uint64_t *result = new uint64_t[numWords]; in getClearedMemory()
38 memset(result, 0, numWords * sizeof(uint64_t)); in getClearedMemory()
44 inline static uint64_t* getMemory(unsigned numWords) { in getMemory() argument
45 return new uint64_t[numWords]; in getMemory()
110 APInt::APInt(unsigned numBits, unsigned numWords, const uint64_t bigVal[]) in APInt() argument
112 initFromArray(ArrayRef(bigVal, numWords)); in APInt()
/freebsd-14.2/contrib/llvm-project/clang/lib/CodeGen/
H A DCGObjCMac.cpp5395 auto skip = [&](unsigned numWords) { in buildBitmap() argument
5396 assert(numWords > 0); in buildBitmap()
5404 numWords -= claimed; in buildBitmap()
5410 while (numWords >= MaxNibble) { in buildBitmap()
5412 numWords -= MaxNibble; in buildBitmap()
5414 if (numWords) { in buildBitmap()
5421 assert(numWords > 0); in buildBitmap()
5429 numWords -= claimed; in buildBitmap()
5435 while (numWords >= MaxNibble) { in buildBitmap()
5437 numWords -= MaxNibble; in buildBitmap()
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ADT/
H A DAPInt.h135 APInt(unsigned numBits, unsigned numWords, const uint64_t bigVal[]);