Home
last modified time | relevance | path

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

/freebsd-9-stable/contrib/llvm/include/llvm/ADT/
DAPInt.h495 static APInt getBitsSet(unsigned numBits, unsigned loBit, unsigned hiBit) { in getBitsSet() argument
496 assert(hiBit <= numBits && "hiBit out of range"); in getBitsSet()
498 if (hiBit < loBit) in getBitsSet()
499 return getLowBitsSet(numBits, hiBit) | in getBitsSet()
501 return getLowBitsSet(numBits, hiBit - loBit).shl(loBit); in getBitsSet()