Home
last modified time | relevance | path

Searched refs:hiBit (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
500 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()