HomeSort by relevance Sort by last modified time
    Searched refs:IntShift (Results 1 - 2 of 2) sorted by null

  /external/clang/test/SemaTemplate/
instantiate-enum-2.cpp 6 IntShift = (unsigned long long)IntBits,
7 ShiftedIntMask = (1 << IntShift)
  /external/llvm/include/llvm/ADT/
PointerIntPair.h 55 /// IntShift - The number of low bits that we reserve for other uses, and
57 IntShift = (uintptr_t)PtrTraits::NumLowBitsAvailable-IntBits,
63 ShiftedIntMask = (uintptr_t)(IntMask << IntShift)
80 return (IntType)((Value >> IntShift) & IntMask);
98 Value |= IntWord << IntShift; // Set new integer.
117 Value = PtrWord | (IntWord << IntShift);

Completed in 479 milliseconds