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

  /external/llvm/include/llvm/Support/
MathExtras.h 65 /// isUInt - Checks if an unsigned integer fits into the given bit width.
67 inline bool isUInt(uint64_t x) {
72 inline bool isUInt<8>(uint64_t x) {
76 inline bool isUInt<16>(uint64_t x) {
80 inline bool isUInt<32>(uint64_t x) {
88 return isUInt<N+S>(x) && (x % (1<<S) == 0);
  /external/llvm/lib/Target/Mips/
Mips16InstrInfo.cpp 179 if (isUInt<11>(FrameSize))
182 int Base = 2040; // should create template function like isUInt that
221 if (isUInt<11>(FrameSize))
224 int Base = 2040; // should create template function like isUInt that
Mips16ISelLowering.cpp 633 if (isUInt<8>(imm))
635 else if (isUInt<16>(imm))
647 if (isUInt<8>(Imm))
MipsISelLowering.cpp     [all...]
  /external/llvm/lib/Target/XCore/
XCoreISelDAGToDAG.cpp 168 else if (!isUInt<16>(Val)) {
  /external/llvm/lib/Target/PowerPC/
PPCISelDAGToDAG.cpp 484 if (isUInt<16>(Imm))
508 if (isInt32Immediate(RHS, Imm) && isUInt<16>(Imm))
525 if (isUInt<16>(Imm))
542 if (isUInt<32>(Imm)) {
551 if (isInt64Immediate(RHS.getNode(), Imm) && isUInt<16>(Imm))
    [all...]
  /external/llvm/lib/Target/Hexagon/
HexagonNewValueJump.cpp 215 if (!(isUInt<5>(v) ||
HexagonInstrInfo.cpp 945 return isUInt<6>(MI->getOperand(1).getImm());
965 return isUInt<6>(MI->getOperand(2).getImm());
    [all...]
HexagonISelDAGToDAG.cpp 195 return isUInt<6>(v);
    [all...]
  /external/llvm/lib/MC/
MCDwarf.cpp     [all...]
  /external/llvm/lib/CodeGen/
MachineVerifier.cpp 729 if (!isUInt<5>(MI->getOperand(1).getImm()))
    [all...]
  /external/llvm/lib/Target/ARM/
ARMFastISel.cpp 566 if (Subtarget->hasV6T2Ops() && isUInt<16>(CI->getZExtValue())) {
    [all...]
ARMISelLowering.cpp     [all...]
  /external/llvm/lib/Target/X86/
X86ISelLowering.cpp     [all...]

Completed in 326 milliseconds