Searched refs:hiBit (Results 1 – 1 of 1) sorted by relevance
499 static APInt getBitsSet(unsigned numBits, unsigned loBit, unsigned hiBit) { in getBitsSet() argument500 assert(hiBit <= numBits && "hiBit out of range"); in getBitsSet()502 if (hiBit < loBit) in getBitsSet()503 return getLowBitsSet(numBits, hiBit) | in getBitsSet()505 return getLowBitsSet(numBits, hiBit - loBit).shl(loBit); in getBitsSet()