/external/clang/lib/Analysis/ |
D | FormatString.cpp | 82 const OptionalAmount &Amt = ParseAmount(I, E); in ParsePositionAmount() local 132 const OptionalAmount Amt = in ParseFieldWidth() local 151 const OptionalAmount &Amt = ParseAmount(I, E); in ParseArgPosition() local
|
D | ScanfFormatString.cpp | 133 const OptionalAmount &Amt = clang::analyze_format_string::ParseAmount(I, E); in ParseScanfSpecifier() local
|
D | PrintfFormatString.cpp | 43 const OptionalAmount Amt = ParsePositionAmount(H, Start, Beg, E, in ParsePrecision() local
|
/external/clang/lib/StaticAnalyzer/Core/ |
D | BasicValueFactory.cpp | 178 uint64_t Amt = V2.getZExtValue(); in evalAPSInt() local 196 uint64_t Amt = V2.getZExtValue(); in evalAPSInt() local
|
/external/llvm/lib/Transforms/InstCombine/ |
D | InstCombineSimplifyDemanded.cpp | 933 Constant *Amt = ConstantInt::get(VarX->getType(), ShlAmt - ShrAmt); in SimplifyShrShlDemandedBits() local 939 Constant *Amt = ConstantInt::get(VarX->getType(), ShrAmt - ShlAmt); in SimplifyShrShlDemandedBits() local
|
D | InstCombineCasts.cpp | 125 Value *Amt = nullptr; in PromoteCastOfAllocation() local 706 if (ConstantInt *Amt = dyn_cast<ConstantInt>(I->getOperand(1))) { in CanEvaluateZExtd() local 717 if (ConstantInt *Amt = dyn_cast<ConstantInt>(I->getOperand(1))) { in CanEvaluateZExtd() local
|
D | InstructionCombining.cpp | 1053 int32_t Amt = cast<ConstantInt>(BO->getOperand(1))-> in Descale() local
|
D | InstCombineCompares.cpp | 1628 unsigned Amt = ShAmt->getLimitedValue(TypeBits-1); in visitICmpInstWithInstAndIntCst() local
|
/external/llvm/lib/Target/ARM/MCTargetDesc/ |
D | ARMAddressingModes.h | 86 static inline unsigned rotr32(unsigned Val, unsigned Amt) { in rotr32() 93 static inline unsigned rotl32(unsigned Val, unsigned Amt) { in rotl32()
|
/external/clang/include/clang/Analysis/Analyses/ |
D | FormatString.h | 375 void setFieldWidth(const OptionalAmount &Amt) { in setFieldWidth() 483 void setPrecision(const OptionalAmount &Amt) { in setPrecision()
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
D | LegalizeIntegerTypes.cpp | 602 SDValue Amt = N->getOperand(1); in PromoteIntRes_SHL() local 626 SDValue Amt = N->getOperand(1); in PromoteIntRes_SRA() local 634 SDValue Amt = N->getOperand(1); in PromoteIntRes_SRL() local 1344 void DAGTypeLegalizer::ExpandShiftByConstant(SDNode *N, unsigned Amt, in ExpandShiftByConstant() 1445 SDValue Amt = N->getOperand(1); in ExpandShiftWithKnownAmountBit() local 1533 SDValue Amt = N->getOperand(1); in ExpandShiftWithUnknownAmountBit() local
|
D | TargetLowering.cpp | 2652 SDValue Amt = DAG.getConstant(ShAmt, getShiftAmountTy(Op1.getValueType())); in BuildExactSDIV() local
|
D | DAGCombiner.cpp | 4029 SDValue DAGCombiner::visitShiftByConstant(SDNode *N, ConstantSDNode *Amt) { in visitShiftByConstant() 4404 SDValue Amt = DAG.getConstant(ShiftAmt, in visitSRA() local 4438 SDValue Amt = in visitSRA() local 6246 unsigned Amt = RHSC->getZExtValue(); in GetDemandedBits() local
|
D | SelectionDAGBuilder.cpp | 3427 unsigned Amt = ElementSize.logBase2(); in visitGetElementPtr() local
|
/external/llvm/lib/IR/ |
D | ConstantFold.cpp | 267 ConstantInt *Amt = dyn_cast<ConstantInt>(CE->getOperand(1)); in ExtractConstantBytes() local 289 ConstantInt *Amt = dyn_cast<ConstantInt>(CE->getOperand(1)); in ExtractConstantBytes() local
|
D | Instructions.cpp | 844 static Value *getAISize(LLVMContext &Context, Value *Amt) { in getAISize()
|
/external/clang/lib/CodeGen/ |
D | CGBuiltin.cpp | 4640 llvm::ConstantInt *Amt = cast<ConstantInt>(EmitScalarExpr(E->getArg(1))); in EmitAArch64BuiltinExpr() local 4645 llvm::ConstantInt *Amt = cast<ConstantInt>(EmitScalarExpr(E->getArg(1))); in EmitAArch64BuiltinExpr() local 4652 llvm::ConstantInt *Amt = cast<ConstantInt>(EmitScalarExpr(E->getArg(1))); in EmitAArch64BuiltinExpr() local 4661 llvm::ConstantInt *Amt = cast<ConstantInt>(EmitScalarExpr(E->getArg(2))); in EmitAArch64BuiltinExpr() local 4669 llvm::ConstantInt *Amt = cast<ConstantInt>(EmitScalarExpr(E->getArg(2))); in EmitAArch64BuiltinExpr() local
|
/external/llvm/lib/Target/ARM/ |
D | ARMBaseInstrInfo.cpp | 172 unsigned Amt = ARM_AM::getAM2Offset(OffImm); in convertToThreeAddress() local 198 unsigned Amt = ARM_AM::getAM3Offset(OffImm); in convertToThreeAddress() local
|
/external/llvm/lib/Target/ARM/InstPrinter/ |
D | ARMInstPrinter.cpp | 713 unsigned Amt = ShiftOp & 0x1f; in printShiftImmOperand() local
|
/external/llvm/lib/Target/PowerPC/ |
D | PPCISelLowering.cpp | 6386 SDValue Amt = Op.getOperand(2); in LowerSHL_PARTS() local 6415 SDValue Amt = Op.getOperand(2); in LowerSRL_PARTS() local 6443 SDValue Amt = Op.getOperand(2); in LowerSRA_PARTS() local 6524 static SDValue BuildVSLDOI(SDValue LHS, SDValue RHS, unsigned Amt, in BuildVSLDOI()
|
/external/clang/lib/Sema/ |
D | SemaChecking.cpp | 3330 const analyze_format_string::OptionalAmount &Amt, in HandleAmount() 3380 const analyze_printf::OptionalAmount &Amt, in HandleInvalidAmount() 4085 const OptionalAmount &Amt = FS.getFieldWidth(); in HandleScanfSpecifier() local
|
/external/llvm/lib/Target/X86/ |
D | X86InstrInfo.cpp | 2956 unsigned Amt = MI->getOperand(3).getImm(); in commuteInstruction() local
|
D | X86ISelLowering.cpp | 13941 unsigned Amt = RegVT.getVectorElementType().getSizeInBits() - in LowerExtendedLoad() local 16088 SDValue Amt = Op.getOperand(1); in LowerScalarImmediateShift() local 16212 SDValue Amt = Op.getOperand(1); in LowerScalarVariableShift() local 16344 SDValue Amt = Op.getOperand(1); in LowerShift() local 21904 SDValue Amt = N->getOperand(1); in performShiftToAllZeros() local
|
/external/llvm/lib/Target/ARM/AsmParser/ |
D | ARMAsmParser.cpp | 8005 unsigned Amt = Inst.getOperand(2).getImm(); in processInstruction() local
|
/external/llvm/lib/Analysis/ |
D | ScalarEvolution.cpp | 4299 uint64_t Amt = BitWidth - CI->getZExtValue(); in createSCEV() local
|