Home
last modified time | relevance | path

Searched refs:loBit (Results 1 – 1 of 1) sorted by relevance

/external/llvm/include/llvm/ADT/
DAPInt.h499 static APInt getBitsSet(unsigned numBits, unsigned loBit, unsigned hiBit) { in getBitsSet() argument
501 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()