Home
last modified time | relevance | path

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

/llvm-project-15.0.7/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()
/llvm-project-15.0.7/llvm/lib/Support/
H A DAPInt.cpp35 inline static uint64_t* getClearedMemory(unsigned numWords) { in getClearedMemory() argument
36 uint64_t *result = new uint64_t[numWords]; in getClearedMemory()
37 memset(result, 0, numWords * sizeof(uint64_t)); in getClearedMemory()
43 inline static uint64_t* getMemory(unsigned numWords) { in getMemory() argument
44 return new uint64_t[numWords]; in getMemory()
109 APInt::APInt(unsigned numBits, unsigned numWords, const uint64_t bigVal[]) in APInt() argument
111 initFromArray(makeArrayRef(bigVal, numWords)); in APInt()
/llvm-project-15.0.7/clang/lib/CodeGen/
H A DCGObjCMac.cpp5426 auto skip = [&](unsigned numWords) { in buildBitmap() argument
5427 assert(numWords > 0); in buildBitmap()
5435 numWords -= claimed; in buildBitmap()
5441 while (numWords >= MaxNibble) { in buildBitmap()
5443 numWords -= MaxNibble; in buildBitmap()
5445 if (numWords) { in buildBitmap()
5452 assert(numWords > 0); in buildBitmap()
5460 numWords -= claimed; in buildBitmap()
5466 while (numWords >= MaxNibble) { in buildBitmap()
5468 numWords -= MaxNibble; in buildBitmap()
[all …]
/llvm-project-15.0.7/llvm/include/llvm/ADT/
H A DAPInt.h134 APInt(unsigned numBits, unsigned numWords, const uint64_t bigVal[]);