Searched refs:UMax (Results 1 - 14 of 14) sorted by relevance

/macosx-10.10.1/AppleUSBIrDA-145.2.4/IrDA/
H A DIrDATypes.h103 inline ULong UMax(ULong a, ULong b) { return (a > b) ? a : b; } function
104 inline ULong UMinMax(ULong l, ULong x, ULong h) { return UMin(UMax(l, x), h); }
/macosx-10.10.1/llvmCore-3425.0.34/lib/Support/
H A DConstantRange.cpp66 APInt UMax(CR.getUnsignedMax());
67 if (UMax.isMinValue())
69 return ConstantRange(APInt::getMinValue(W), UMax);
78 APInt UMax(CR.getUnsignedMax());
79 if (UMax.isMaxValue())
81 return ConstantRange(APInt::getMinValue(W), UMax + 1);
/macosx-10.10.1/llvmCore-3425.0.34/lib/Transforms/Scalar/
H A DLowerAtomic.cpp78 case AtomicRMWInst::UMax:
/macosx-10.10.1/llvmCore-3425.0.34/lib/Analysis/
H A DScalarEvolution.cpp2519 // Find the first UMax
2523 // Check to see if one of the operands is a UMax. If so, expand its operands
2527 while (const SCEVUMaxExpr *UMax = dyn_cast<SCEVUMaxExpr>(Ops[Idx])) {
2529 Ops.append(UMax->op_begin(), UMax->op_end());
3308 if (const SCEVUMaxExpr *UMax = dyn_cast<SCEVUMaxExpr>(S)) {
3309 ConstantRange X = getUnsignedRange(UMax->getOperand(0));
3310 for (unsigned i = 1, e = UMax->getNumOperands(); i != e; ++i)
3311 X = X.umax(getUnsignedRange(UMax->getOperand(i)));
3312 return setUnsignedRange(UMax, ConservativeResul
[all...]
/macosx-10.10.1/vim-55/runtime/syntax/
H A Dmupad.vim187 syn keyword mupadIdentifier UName URange UMin UMax VName VRange VMin VMax
/macosx-10.10.1/llvmCore-3425.0.34/unittests/Support/
H A DConstantRangeTest.cpp403 TEST_F(ConstantRangeTest, UMax) {
/macosx-10.10.1/llvmCore-3425.0.34/lib/Transforms/InstCombine/
H A DInstCombineCompares.cpp2732 APFloat UMax(RHS.getSemantics(), APFloat::fcZero, false);
2733 UMax.convertFromAPInt(APInt::getMaxValue(IntWidth), false,
2735 if (UMax.compare(RHS) == APFloat::cmpLessThan) { // umax < 13123.0
/macosx-10.10.1/llvmCore-3425.0.34/lib/Bitcode/Writer/
H A DBitcodeWriter.cpp125 case AtomicRMWInst::UMax: return bitc::RMW_UMAX;
/macosx-10.10.1/llvmCore-3425.0.34/lib/Target/CppBackend/
H A DCPPBackend.cpp1566 case AtomicRMWInst::UMax: Operation = "AtomicRMWInst::UMax"; break;
/macosx-10.10.1/llvmCore-3425.0.34/lib/VMCore/
H A DAsmWriter.cpp700 case AtomicRMWInst::UMax: Out << " umax"; break;
/macosx-10.10.1/llvmCore-3425.0.34/include/llvm/
H A DInstructions.h588 UMax, enumerator in enum:llvm::AtomicRMWInst::BinOp
/macosx-10.10.1/llvmCore-3425.0.34/lib/AsmParser/
H A DLLParser.cpp3922 case lltok::kw_umax: Operation = AtomicRMWInst::UMax; break;
/macosx-10.10.1/llvmCore-3425.0.34/lib/Bitcode/Reader/
H A DBitcodeReader.cpp171 case bitc::RMW_UMAX: return AtomicRMWInst::UMax;
/macosx-10.10.1/llvmCore-3425.0.34/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.cpp3463 case AtomicRMWInst::UMax: NT = ISD::ATOMIC_LOAD_UMAX; break;

Completed in 480 milliseconds