HomeSort by relevance Sort by last modified time
    Searched defs:Amt (Results 1 - 17 of 17) sorted by null

  /external/clang/lib/Analysis/
ScanfFormatString.cpp 133 const OptionalAmount &Amt = clang::analyze_format_string::ParseAmount(I, E);
134 if (Amt.getHowSpecified() != OptionalAmount::NotSpecified) {
135 assert(Amt.getHowSpecified() == OptionalAmount::Constant);
136 FS.setFieldWidth(Amt);
FormatString.cpp 82 const OptionalAmount &Amt = ParseAmount(I, E);
84 if (Amt.getHowSpecified() == OptionalAmount::NotSpecified) {
95 assert(Amt.getHowSpecified() == OptionalAmount::Constant);
101 if (Amt.getConstantAmount() == 0) {
109 return OptionalAmount(OptionalAmount::Arg, Amt.getConstantAmount() - 1,
132 const OptionalAmount Amt =
136 if (Amt.isInvalid())
138 CS.setFieldWidth(Amt);
151 const OptionalAmount &Amt = ParseAmount(I, E);
159 if (Amt.getHowSpecified() == OptionalAmount::Constant && *(I++) == '$')
600 os << amt; local
    [all...]
PrintfFormatString.cpp 43 const OptionalAmount Amt = ParsePositionAmount(H, Start, Beg, E,
45 if (Amt.isInvalid())
47 FS.setPrecision(Amt);
  /external/llvm/lib/Transforms/InstCombine/
InstCombineSimplifyDemanded.cpp     [all...]
InstCombineCasts.cpp 47 // This is a value scaled by '1 << the shift amt'.
128 Value *Amt = nullptr;
130 Amt = NumElements;
132 Amt = ConstantInt::get(AI.getArraySize()->getType(), Scale);
134 Amt = AllocaBuilder.CreateMul(Amt, NumElements);
140 Amt = AllocaBuilder.CreateAdd(Amt, Off);
143 AllocaInst *New = AllocaBuilder.CreateAlloca(CastElTy, Amt);
709 if (ConstantInt *Amt = dyn_cast<ConstantInt>(I->getOperand(1)))
    [all...]
InstructionCombining.cpp     [all...]
InstCombineCompares.cpp     [all...]
  /external/llvm/lib/IR/
ConstantFold.cpp 253 ConstantInt *Amt = dyn_cast<ConstantInt>(CE->getOperand(1));
254 if (!Amt)
256 unsigned ShAmt = Amt->getZExtValue();
275 ConstantInt *Amt = dyn_cast<ConstantInt>(CE->getOperand(1));
276 if (!Amt)
278 unsigned ShAmt = Amt->getZExtValue();
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
TargetLowering.cpp     [all...]
LegalizeIntegerTypes.cpp 574 SDValue Amt = N->getOperand(1);
575 Amt = Amt.getValueType().isVector() ? ZExtPromotedInteger(Amt) : Amt;
576 return DAG.getNode(ISD::SHL, SDLoc(N), Res.getValueType(), Res, Amt);
598 SDValue Amt = N->getOperand(1);
599 Amt = Amt.getValueType().isVector() ? ZExtPromotedInteger(Amt) : Amt
    [all...]
DAGCombiner.cpp 287 SDValue visitShiftByConstant(SDNode *N, ConstantSDNode *Amt);
    [all...]
  /external/llvm/lib/Target/ARM/
ARMBaseInstrInfo.cpp 171 unsigned Amt = ARM_AM::getAM2Offset(OffImm);
173 if (ARM_AM::getSOImmVal(Amt) == -1)
179 .addReg(BaseReg).addImm(Amt)
181 } else if (Amt != 0) {
183 unsigned SOOpc = ARM_AM::getSORegOpc(ShOpc, Amt);
197 unsigned Amt = ARM_AM::getAM3Offset(OffImm);
202 .addReg(BaseReg).addImm(Amt)
    [all...]
  /external/llvm/lib/Target/X86/
X86InstrInfo.cpp     [all...]
  /external/clang/lib/CodeGen/
CGBuiltin.cpp     [all...]
  /external/clang/lib/Sema/
SemaChecking.cpp     [all...]
  /external/llvm/lib/Target/ARM/AsmParser/
ARMAsmParser.cpp     [all...]
  /external/llvm/lib/Target/PowerPC/
PPCISelLowering.cpp     [all...]

Completed in 758 milliseconds