Searched refs:MaxVal (Results 1 - 3 of 3) sorted by relevance

/external/quake/quake/src/WinQuake/
H A Dsnd_gus.cpp726 BYTE MaxVal; local
750 MaxVal=((CodecBase & 0xF0)>>4) | 0x40;
752 MaxVal|=0x10;
754 MaxVal|=0x20;
755 dos_outportb(GusBase+0x106,MaxVal);
/external/llvm/lib/CodeGen/SelectionDAG/
H A DTargetLowering.cpp2225 APInt MinVal, MaxVal; local
2229 MaxVal = APInt::getSignedMaxValue(OperandBitSize);
2232 MaxVal = APInt::getMaxValue(OperandBitSize);
2245 if (C1 == MaxVal) return DAG.getConstant(1, VT); // X <= MAX --> true
2256 if ((Cond == ISD::SETGT || Cond == ISD::SETUGT) && C1 == MaxVal)
2258 if ((Cond == ISD::SETLE || Cond == ISD::SETULE) && C1 == MaxVal)
2265 if ((Cond == ISD::SETLT || Cond == ISD::SETULT) && C1 == MaxVal)
2274 else if ((Cond == ISD::SETGT || Cond == ISD::SETUGT) && C1 == MaxVal-1)
2276 DAG.getConstant(MaxVal, N0.getValueType()),
/external/clang/lib/Frontend/
H A DInitPreprocessor.cpp159 llvm::APInt MaxVal = isSigned ? llvm::APInt::getSignedMaxValue(TypeWidth) local
161 Builder.defineMacro(MacroName, MaxVal.toString(10, isSigned) + ValSuffix);

Completed in 87 milliseconds