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