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

1 2

  /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);
PrintfFormatString.cpp 43 const OptionalAmount Amt = ParsePositionAmount(H, Start, Beg, E,
45 if (Amt.isInvalid())
47 FS.setPrecision(Amt);
FormatString.cpp 83 const OptionalAmount &Amt = ParseAmount(I, E);
85 if (Amt.getHowSpecified() == OptionalAmount::NotSpecified) {
96 assert(Amt.getHowSpecified() == OptionalAmount::Constant);
102 if (Amt.getConstantAmount() == 0) {
110 return OptionalAmount(OptionalAmount::Arg, Amt.getConstantAmount() - 1,
133 const OptionalAmount Amt =
137 if (Amt.isInvalid())
139 CS.setFieldWidth(Amt);
152 const OptionalAmount &Amt = ParseAmount(I, E);
160 if (Amt.getHowSpecified() == OptionalAmount::Constant && *(I++) == '$')
652 os << amt; local
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/ARC/
ARCFrameLowering.cpp 447 unsigned Amt = Old.getOperand(0).getImm();
450 if (Amt > AFI->MaxCallStackReq && Old.getOpcode() == ARC::ADJCALLSTACKDOWN)
451 AFI->MaxCallStackReq = Amt;
453 if (Amt != 0) {
458 emitRegUpdate(MBB, I, dl, ARC::SP, Amt, IsAdd, TII);
  /external/llvm/lib/Transforms/InstCombine/
InstCombineSimplifyDemanded.cpp     [all...]
InstCombineCasts.cpp 47 // This is a value scaled by '1 << the shift amt'.
125 Value *Amt = nullptr;
127 Amt = NumElements;
129 Amt = ConstantInt::get(AI.getArraySize()->getType(), Scale);
131 Amt = AllocaBuilder.CreateMul(Amt, NumElements);
137 Amt = AllocaBuilder.CreateAdd(Amt, Off);
140 AllocaInst *New = AllocaBuilder.CreateAlloca(CastElTy, Amt);
781 if (ConstantInt *Amt = dyn_cast<ConstantInt>(I->getOperand(1)))
    [all...]
InstCombineCompares.cpp     [all...]
InstructionCombining.cpp     [all...]
  /external/swiftshader/third_party/LLVM/lib/Target/ARM/InstPrinter/
ARMInstPrinter.cpp 568 unsigned Amt = ShiftOp & 0x1f;
570 O << ", asr #" << (Amt == 0 ? 32 : Amt);
571 else if (Amt)
572 O << ", lsl #" << Amt;
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/X86/
X86InstrInfo.cpp     [all...]
  /external/capstone/arch/ARM/
ARMInstPrinter.c     [all...]
  /external/llvm/lib/IR/
ConstantFold.cpp 268 ConstantInt *Amt = dyn_cast<ConstantInt>(CE->getOperand(1));
269 if (!Amt)
271 unsigned ShAmt = Amt->getZExtValue();
290 ConstantInt *Amt = dyn_cast<ConstantInt>(CE->getOperand(1));
291 if (!Amt)
293 unsigned ShAmt = Amt->getZExtValue();
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Target/ARM/
ARMBaseInstrInfo.cpp 165 unsigned Amt = ARM_AM::getAM2Offset(OffImm);
167 if (ARM_AM::getSOImmVal(Amt) == -1)
173 .addReg(BaseReg).addImm(Amt)
175 } else if (Amt != 0) {
177 unsigned SOOpc = ARM_AM::getSORegOpc(ShOpc, Amt);
191 unsigned Amt = ARM_AM::getAM3Offset(OffImm);
196 .addReg(BaseReg).addImm(Amt)
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Transforms/InstCombine/
InstCombineCasts.cpp 44 // This is a value scaled by '1 << the shift amt'.
119 Value *Amt = 0;
121 Amt = NumElements;
123 Amt = ConstantInt::get(AI.getArraySize()->getType(), Scale);
125 Amt = AllocaBuilder.CreateMul(Amt, NumElements);
131 Amt = AllocaBuilder.CreateAdd(Amt, Off);
134 AllocaInst *New = AllocaBuilder.CreateAlloca(CastElTy, Amt);
706 if (ConstantInt *Amt = dyn_cast<ConstantInt>(I->getOperand(1)))
    [all...]
  /external/swiftshader/third_party/LLVM/lib/VMCore/
ConstantFold.cpp 250 ConstantInt *Amt = dyn_cast<ConstantInt>(CE->getOperand(1));
251 if (Amt == 0)
253 unsigned ShAmt = Amt->getZExtValue();
272 ConstantInt *Amt = dyn_cast<ConstantInt>(CE->getOperand(1));
273 if (Amt == 0)
275 unsigned ShAmt = Amt->getZExtValue();
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/IR/
ConstantFold.cpp 268 ConstantInt *Amt = dyn_cast<ConstantInt>(CE->getOperand(1));
269 if (!Amt)
271 unsigned ShAmt = Amt->getZExtValue();
290 ConstantInt *Amt = dyn_cast<ConstantInt>(CE->getOperand(1));
291 if (!Amt)
293 unsigned ShAmt = Amt->getZExtValue();
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/InstCombine/
InstCombineSimplifyDemanded.cpp     [all...]
InstCombineCasts.cpp 50 // 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);
379 const APInt *Amt;
    [all...]
  /external/llvm/lib/Target/AMDGPU/
AMDGPUISelDAGToDAG.cpp     [all...]
  /external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
TargetLowering.cpp     [all...]
LegalizeIntegerTypes.cpp     [all...]
  /external/swiftshader/third_party/LLVM/lib/Target/X86/
X86InstrInfo.cpp     [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AMDGPU/
AMDGPUISelDAGToDAG.cpp     [all...]
  /external/llvm/lib/Target/ARM/
ARMBaseInstrInfo.cpp 161 unsigned Amt = ARM_AM::getAM2Offset(OffImm);
163 if (ARM_AM::getSOImmVal(Amt) == -1)
170 .addImm(Amt)
174 } else if (Amt != 0) {
176 unsigned SOOpc = ARM_AM::getSORegOpc(ShOpc, Amt);
198 unsigned Amt = ARM_AM::getAM3Offset(OffImm);
204 .addImm(Amt)
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/SelectionDAG/
SelectionDAG.cpp     [all...]

Completed in 1659 milliseconds

1 2