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

  /external/clang/lib/Analysis/
FormatString.cpp 80 const OptionalAmount &Amt = ParseAmount(I, E);
82 if (Amt.getHowSpecified() == OptionalAmount::NotSpecified) {
93 assert(Amt.getHowSpecified() == OptionalAmount::Constant);
99 if (Amt.getConstantAmount() == 0) {
107 return OptionalAmount(OptionalAmount::Arg, Amt.getConstantAmount() - 1,
130 const OptionalAmount Amt =
134 if (Amt.isInvalid())
136 CS.setFieldWidth(Amt);
149 const OptionalAmount &Amt = ParseAmount(I, E);
157 if (Amt.getHowSpecified() == OptionalAmount::Constant && *(I++) == '$')
398 os << amt; local
    [all...]
ScanfFormatString.cpp 120 const OptionalAmount &Amt = clang::analyze_format_string::ParseAmount(I, E);
121 if (Amt.getHowSpecified() != OptionalAmount::NotSpecified) {
122 assert(Amt.getHowSpecified() == OptionalAmount::Constant);
123 FS.setFieldWidth(Amt);
PrintfFormatString.cpp 43 const OptionalAmount Amt = ParsePositionAmount(H, Start, Beg, E,
45 if (Amt.isInvalid())
47 FS.setPrecision(Amt);
  /external/llvm/include/llvm/ADT/
APSInt.h 114 APSInt operator>>(unsigned Amt) const {
115 return IsUnsigned ? APSInt(lshr(Amt), true) : APSInt(ashr(Amt), false);
117 APSInt& operator>>=(unsigned Amt) {
118 *this = *this >> Amt;
145 APSInt& operator<<=(unsigned Amt) {
146 *this = *this << Amt;
APInt.h 834 APInt sshl_ov(unsigned Amt, bool &Overflow) const;
    [all...]
  /external/llvm/lib/Target/ARM/
ARMAddressingModes.h 97 static inline unsigned rotr32(unsigned Val, unsigned Amt) {
98 assert(Amt < 32 && "Invalid rotate amount");
99 return (Val >> Amt) | (Val << ((32-Amt)&31));
104 static inline unsigned rotl32(unsigned Val, unsigned Amt) {
105 assert(Amt < 32 && "Invalid rotate amount");
106 return (Val << Amt) | (Val >> ((32-Amt)&31));
ARMBaseInstrInfo.cpp 160 unsigned Amt = ARM_AM::getAM2Offset(OffImm);
162 if (ARM_AM::getSOImmVal(Amt) == -1)
168 .addReg(BaseReg).addImm(Amt)
170 } else if (Amt != 0) {
172 unsigned SOOpc = ARM_AM::getSORegOpc(ShOpc, Amt);
186 unsigned Amt = ARM_AM::getAM3Offset(OffImm);
191 .addReg(BaseReg).addImm(Amt)
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
BasicValueFactory.cpp 181 uint64_t Amt = V2.getZExtValue();
183 if (Amt > V1.getBitWidth())
186 return &getValue( V1.operator<<( (unsigned) Amt ));
199 uint64_t Amt = V2.getZExtValue();
201 if (Amt > V1.getBitWidth())
204 return &getValue( V1.operator>>( (unsigned) Amt ));
  /external/llvm/include/llvm/
BasicBlock.h 265 void AdjustBlockAddressRefCount(int Amt) {
266 setValueSubclassData(getSubclassDataFromValue()+Amt);
  /external/clang/include/clang/Analysis/Analyses/
FormatString.h 236 : start(amountStart), length(amountLength), hs(howSpecified), amt(amount),
240 : start(0),length(0), hs(valid ? NotSpecified : Invalid), amt(0),
254 return amt;
259 return amt;
279 return amt + 1;
289 unsigned amt; member in class:clang::analyze_format_string::OptionalAmount
335 void setFieldWidth(const OptionalAmount &Amt) {
336 FieldWidth = Amt;
433 void setPrecision(const OptionalAmount &Amt) {
434 Precision = Amt;
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeIntegerTypes.cpp     [all...]
LegalizeTypes.h 323 void ExpandShiftByConstant(SDNode *N, unsigned Amt,
    [all...]
DAGCombiner.cpp 225 SDValue visitShiftByConstant(SDNode *N, unsigned Amt);
    [all...]
TargetLowering.cpp     [all...]
SelectionDAGBuilder.cpp     [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCasts.cpp 43 // This is a value scaled by '1 << the shift amt'.
118 Value *Amt = 0;
120 Amt = NumElements;
122 Amt = ConstantInt::get(AI.getArraySize()->getType(), Scale);
124 Amt = AllocaBuilder.CreateMul(Amt, NumElements, "tmp");
130 Amt = AllocaBuilder.CreateAdd(Amt, Off, "tmp");
133 AllocaInst *New = AllocaBuilder.CreateAlloca(CastElTy, Amt);
705 if (ConstantInt *Amt = dyn_cast<ConstantInt>(I->getOperand(1)))
    [all...]
  /external/clang/lib/Sema/
SemaChecking.cpp     [all...]
  /external/llvm/lib/Target/PowerPC/
PPCISelLowering.cpp     [all...]
  /external/llvm/lib/VMCore/
ConstantFold.cpp 251 ConstantInt *Amt = dyn_cast<ConstantInt>(CE->getOperand(1));
252 if (Amt == 0)
254 unsigned ShAmt = Amt->getZExtValue();
273 ConstantInt *Amt = dyn_cast<ConstantInt>(CE->getOperand(1));
274 if (Amt == 0)
276 unsigned ShAmt = Amt->getZExtValue();
    [all...]
Instructions.cpp 683 static Value *getAISize(LLVMContext &Context, Value *Amt) {
684 if (!Amt)
685 Amt = ConstantInt::get(Type::getInt32Ty(Context), 1);
687 assert(!isa<BasicBlock>(Amt) &&
689 assert(Amt->getType()->isIntegerTy() &&
692 return Amt;
    [all...]
  /external/llvm/lib/Target/ARM/Disassembler/
ThumbDisassemblerCore.h 273 unsigned Amt = slice(imm12, 11, 7);
274 return ARM_AM::rotr32(Val, Amt);
    [all...]
  /external/llvm/lib/Target/X86/
X86InstrInfo.cpp     [all...]
X86ISelLowering.cpp     [all...]
  /external/llvm/lib/Analysis/
ScalarEvolution.cpp     [all...]

Completed in 368 milliseconds