Lines Matching refs:numWords
35 inline static uint64_t* getClearedMemory(unsigned numWords) { in getClearedMemory() argument
36 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 uint64_t * result = new uint64_t[numWords]; in getMemory()
113 APInt::APInt(unsigned numBits, unsigned numWords, const uint64_t bigVal[]) in APInt() argument
115 initFromArray(makeArrayRef(bigVal, numWords)); in APInt()
405 unsigned numWords = getNumWords(); in operator &=() local
406 for (unsigned i = 0; i < numWords; ++i) in operator &=()
417 unsigned numWords = getNumWords(); in operator |=() local
418 for (unsigned i = 0; i < numWords; ++i) in operator |=()
430 unsigned numWords = getNumWords(); in operator ^=() local
431 for (unsigned i = 0; i < numWords; ++i) in operator ^=()
437 unsigned numWords = getNumWords(); in AndSlowCase() local
438 uint64_t* val = getMemory(numWords); in AndSlowCase()
439 for (unsigned i = 0; i < numWords; ++i) in AndSlowCase()
445 unsigned numWords = getNumWords(); in OrSlowCase() local
446 uint64_t *val = getMemory(numWords); in OrSlowCase()
447 for (unsigned i = 0; i < numWords; ++i) in OrSlowCase()
453 unsigned numWords = getNumWords(); in XorSlowCase() local
454 uint64_t *val = getMemory(numWords); in XorSlowCase()
455 for (unsigned i = 0; i < numWords; ++i) in XorSlowCase()