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++) == '$')
396 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 42 const OptionalAmount Amt = ParsePositionAmount(H, Start, Beg, E,
44 if (Amt.isInvalid())
46 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/MCTargetDesc/
ARMAddressingModes.h 85 static inline unsigned rotr32(unsigned Val, unsigned Amt) {
86 assert(Amt < 32 && "Invalid rotate amount");
87 return (Val >> Amt) | (Val << ((32-Amt)&31));
92 static inline unsigned rotl32(unsigned Val, unsigned Amt) {
93 assert(Amt < 32 && "Invalid rotate amount");
94 return (Val << Amt) | (Val >> ((32-Amt)&31));
  /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 282 void AdjustBlockAddressRefCount(int Amt) {
283 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 340 void ExpandShiftByConstant(SDNode *N, unsigned Amt,
    [all...]
DAGCombiner.cpp 226 SDValue visitShiftByConstant(SDNode *N, unsigned Amt);
    [all...]
TargetLowering.cpp     [all...]
SelectionDAGBuilder.cpp     [all...]
  /external/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/clang/lib/Sema/
SemaChecking.cpp     [all...]
  /external/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/llvm/lib/Target/PowerPC/
PPCISelLowering.cpp     [all...]
  /external/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/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...]
Instructions.cpp 824 static Value *getAISize(LLVMContext &Context, Value *Amt) {
825 if (!Amt)
826 Amt = ConstantInt::get(Type::getInt32Ty(Context), 1);
828 assert(!isa<BasicBlock>(Amt) &&
830 assert(Amt->getType()->isIntegerTy() &&
833 return Amt;
    [all...]
  /external/llvm/lib/Target/X86/
X86ISelLowering.cpp     [all...]
X86InstrInfo.cpp     [all...]
  /external/llvm/lib/Analysis/
ScalarEvolution.cpp     [all...]

Completed in 748 milliseconds