Searched refs:numWords (Results 1 – 4 of 4) sorted by relevance
| /src/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | AbstractBasicReader.h | 173 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()
|
| /src/contrib/llvm-project/llvm/lib/Support/ |
| H A D | APInt.cpp | 36 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()
|
| /src/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | CGObjCMac.cpp | 5402 auto skip = [&](unsigned numWords) { in buildBitmap() argument 5403 assert(numWords > 0); in buildBitmap() 5410 unsigned claimed = std::min(MaxNibble - lastSkip, numWords); in buildBitmap() 5411 numWords -= claimed; in buildBitmap() 5417 while (numWords >= MaxNibble) { in buildBitmap() 5419 numWords -= MaxNibble; in buildBitmap() 5421 if (numWords) { in buildBitmap() 5422 buffer.push_back(numWords << SkipShift); in buildBitmap() 5427 auto scan = [&](unsigned numWords) { in buildBitmap() argument 5428 assert(numWords > 0); in buildBitmap() [all …]
|
| /src/contrib/llvm-project/llvm/include/llvm/ADT/ |
| H A D | APInt.h | 137 APInt(unsigned numBits, unsigned numWords, const uint64_t bigVal[]);
|