/external/clang/lib/Analysis/ |
ScanfFormatString.cpp | 124 const OptionalAmount &Amt = clang::analyze_format_string::ParseAmount(I, E); 125 if (Amt.getHowSpecified() != OptionalAmount::NotSpecified) { 126 assert(Amt.getHowSpecified() == OptionalAmount::Constant); 127 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++) == '$') 573 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 | 45 // This is a value scaled by '1 << the shift amt'. 126 Value *Amt = 0; 128 Amt = NumElements; 130 Amt = ConstantInt::get(AI.getArraySize()->getType(), Scale); 132 Amt = AllocaBuilder.CreateMul(Amt, NumElements); 138 Amt = AllocaBuilder.CreateAdd(Amt, Off); 141 AllocaInst *New = AllocaBuilder.CreateAlloca(CastElTy, Amt); 706 if (ConstantInt *Amt = dyn_cast<ConstantInt>(I->getOperand(1))) [all...] |
InstCombineCompares.cpp | [all...] |
InstructionCombining.cpp | [all...] |
/external/llvm/lib/IR/ |
ConstantFold.cpp | 253 ConstantInt *Amt = dyn_cast<ConstantInt>(CE->getOperand(1)); 254 if (Amt == 0) 256 unsigned ShAmt = Amt->getZExtValue(); 275 ConstantInt *Amt = dyn_cast<ConstantInt>(CE->getOperand(1)); 276 if (Amt == 0) 278 unsigned ShAmt = Amt->getZExtValue(); [all...] |
/external/llvm/lib/CodeGen/SelectionDAG/ |
TargetLowering.cpp | [all...] |
LegalizeIntegerTypes.cpp | 546 SDValue Amt = N->getOperand(1); 547 Amt = Amt.getValueType().isVector() ? ZExtPromotedInteger(Amt) : Amt; 548 return DAG.getNode(ISD::SHL, SDLoc(N), Res.getValueType(), Res, Amt); 570 SDValue Amt = N->getOperand(1); 571 Amt = Amt.getValueType().isVector() ? ZExtPromotedInteger(Amt) : Amt [all...] |
SelectionDAGBuilder.cpp | [all...] |
DAGCombiner.cpp | 251 SDValue visitShiftByConstant(SDNode *N, unsigned Amt); [all...] |
/external/llvm/lib/Target/X86/ |
X86InstrInfo.cpp | [all...] |
X86ISelLowering.cpp | [all...] |
/external/llvm/lib/Target/ARM/ |
ARMBaseInstrInfo.cpp | 166 unsigned Amt = ARM_AM::getAM2Offset(OffImm); 168 if (ARM_AM::getSOImmVal(Amt) == -1) 174 .addReg(BaseReg).addImm(Amt) 176 } else if (Amt != 0) { 178 unsigned SOOpc = ARM_AM::getSORegOpc(ShOpc, Amt); 192 unsigned Amt = ARM_AM::getAM3Offset(OffImm); 197 .addReg(BaseReg).addImm(Amt) [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...] |