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

  /external/llvm/lib/Support/
ConstantRange.cpp 90 APInt UMin(CR.getUnsignedMin());
91 if (UMin.isMaxValue())
93 return ConstantRange(UMin + 1, APInt::getNullValue(W));
102 APInt UMin(CR.getUnsignedMin());
103 if (UMin.isMinValue())
105 return ConstantRange(UMin, APInt::getNullValue(W));
659 APInt umin = APIntOps::umin(Other.getUnsignedMax(), getUnsignedMax());
660 if (umin.isAllOnesValue())
662 return ConstantRange(APInt::getNullValue(getBitWidth()), umin + 1)
    [all...]
  /external/llvm/lib/Transforms/Scalar/
LowerAtomic.cpp 82 case AtomicRMWInst::UMin:
  /external/llvm/include/llvm/IR/
Instructions.h 589 UMin,
592 LAST_BINOP = UMin,
    [all...]
  /external/llvm/lib/Bitcode/Writer/
BitcodeWriter.cpp 124 case AtomicRMWInst::UMin: return bitc::RMW_UMIN;
    [all...]
  /external/llvm/lib/IR/
AsmWriter.cpp 753 case AtomicRMWInst::UMin: Out << " umin"; break;
    [all...]
  /external/llvm/lib/Target/CppBackend/
CPPBackend.cpp     [all...]
  /frameworks/compile/slang/BitWriter_2_9_func/
BitcodeWriter.cpp 117 case AtomicRMWInst::UMin: return bitc::RMW_UMIN;
    [all...]
  /frameworks/compile/slang/BitWriter_3_2/
BitcodeWriter.cpp 126 case AtomicRMWInst::UMin: return bitc::RMW_UMIN;
    [all...]
  /external/clang/lib/CodeGen/
CGBuiltin.cpp     [all...]
  /external/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp 168 case bitc::RMW_UMIN: return AtomicRMWInst::UMin;
    [all...]
  /frameworks/compile/libbcc/bcinfo/BitReader_3_0/
BitcodeReader.cpp 464 case bitc::RMW_UMIN: return AtomicRMWInst::UMin;
    [all...]
  /external/llvm/lib/AsmParser/
LLParser.cpp     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGBuilder.cpp     [all...]

Completed in 561 milliseconds