Lines Matching refs:numWords
34 inline static uint64_t* getClearedMemory(unsigned numWords) { in getClearedMemory() argument
35 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 uint64_t * result = new uint64_t[numWords]; in getMemory()
112 APInt::APInt(unsigned numBits, unsigned numWords, const uint64_t bigVal[]) in APInt() argument
114 initFromArray(makeArrayRef(bigVal, numWords)); in APInt()
404 unsigned numWords = getNumWords(); in operator &=() local
405 for (unsigned i = 0; i < numWords; ++i) in operator &=()
416 unsigned numWords = getNumWords(); in operator |=() local
417 for (unsigned i = 0; i < numWords; ++i) in operator |=()
429 unsigned numWords = getNumWords(); in operator ^=() local
430 for (unsigned i = 0; i < numWords; ++i) in operator ^=()
436 unsigned numWords = getNumWords(); in AndSlowCase() local
437 uint64_t* val = getMemory(numWords); in AndSlowCase()
438 for (unsigned i = 0; i < numWords; ++i) in AndSlowCase()
444 unsigned numWords = getNumWords(); in OrSlowCase() local
445 uint64_t *val = getMemory(numWords); in OrSlowCase()
446 for (unsigned i = 0; i < numWords; ++i) in OrSlowCase()
452 unsigned numWords = getNumWords(); in XorSlowCase() local
453 uint64_t *val = getMemory(numWords); in XorSlowCase()
454 for (unsigned i = 0; i < numWords; ++i) in XorSlowCase()