HomeSort by relevance Sort by last modified time
    Searched defs:Amount (Results 1 - 21 of 21) sorted by null

  /external/llvm/lib/Target/Mips/
MipsFrameLowering.cpp 153 int64_t Amount = I->getOperand(0).getImm();
155 Amount = -Amount;
157 STI.getInstrInfo()->adjustStackPtr(SP, Amount, MBB, I);
  /external/llvm/lib/Target/WebAssembly/
WebAssemblyFrameLowering.cpp 65 /// Adjust the stack pointer by a constant amount.
117 unsigned Amount = I->getOperand(0).getImm();
118 if (Amount)
119 adjustStackPointer(Amount, IsDestroy, MF, MBB,
  /external/llvm/lib/Target/MSP430/
MSP430FrameLowering.cpp 240 uint64_t Amount = Old->getOperand(0).getImm();
241 if (Amount != 0) {
243 // amount of space needed for the outgoing arguments up to the next
245 Amount = (Amount+StackAlign-1)/StackAlign*StackAlign;
251 .addReg(MSP430::SP).addImm(Amount);
254 // factor out the amount the callee already popped.
256 Amount -= CalleeAmt;
257 if (Amount)
260 .addReg(MSP430::SP).addImm(Amount);
    [all...]
  /external/llvm/lib/Target/ARM/
Thumb1FrameLowering.cpp 61 // ADJCALLSTACKDOWN -> sub, sp, sp, amount
62 // ADJCALLSTACKUP -> add, sp, sp, amount
65 unsigned Amount = Old->getOperand(0).getImm();
66 if (Amount != 0) {
68 // amount of space needed for the outgoing arguments up to the next
71 Amount = (Amount+Align-1)/Align*Align;
76 emitSPUpdate(MBB, I, TII, dl, *RegInfo, -Amount);
79 emitSPUpdate(MBB, I, TII, dl, *RegInfo, Amount);
ARMFrameLowering.cpp     [all...]
  /external/mesa3d/src/gallium/drivers/r300/compiler/
radeon_emulate_loops.c 53 float Amount;
119 float amount; local
156 amount = rc_get_constant_value(count_inst->C,
167 count_inst->Amount += amount;
174 count_inst->Amount -= amount;
232 count_inst.Amount = 0.0f;
272 if(count_inst.Amount == 0.0f){
275 DBG("Counter is increased by %f each iteration.\n", count_inst.Amount);
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/text/
CompactDecimalFormat.java 229 Amount amount = toAmount(number, currencyUnit); local
233 Unit unit = amount.getUnit();
235 super.format(amount.getQty(), toAppendTo, pos);
252 Amount amount = toAmount(number.doubleValue(), null); local
253 return super.formatToCharacterIterator(amount.getQty(), amount.getUnit());
309 private Amount toAmount(double number, Output<Unit> currencyUnit) {
326 return new Amount(
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
CompactDecimalFormat.java 236 Amount amount = toAmount(number, currencyUnit); local
240 Unit unit = amount.getUnit();
242 super.format(amount.getQty(), toAppendTo, pos);
260 Amount amount = toAmount(number.doubleValue(), null); local
261 return super.formatToCharacterIterator(amount.getQty(), amount.getUnit());
322 private Amount toAmount(double number, Output<Unit> currencyUnit) {
339 return new Amount(
    [all...]
  /external/llvm/lib/Target/XCore/
XCoreFrameLowering.cpp 493 uint64_t Amount = Old->getOperand(0).getImm();
494 if (Amount != 0) {
496 // amount of space needed for the outgoing arguments up to the next
499 Amount = (Amount+Align-1)/Align*Align;
501 assert(Amount%4 == 0);
502 Amount /= 4;
504 bool isU6 = isImmU6(Amount);
505 if (!isU6 && !isImmU16(Amount)) {
509 << Amount << "\n"
    [all...]
  /external/llvm/lib/Target/AArch64/
AArch64FrameLowering.cpp 172 int64_t Amount = I->getOperand(0).getImm();
173 Amount = RoundUpToAlignment(Amount, Align);
175 Amount = -Amount;
191 assert(Amount > -0xffffff && Amount < 0xffffff && "call frame too large");
192 emitFrameOffset(MBB, I, DL, AArch64::SP, AArch64::SP, Amount, TII);
222 // Calculate amount of bytes used for return address storing.
572 // ... otherwise the amount to pop is *all* of the argument space
    [all...]
  /external/llvm/include/llvm/Analysis/
BlockFrequencyInfoImpl.h 326 /// In addition to the raw weight amount, Weight stores the type of the edge
334 uint64_t Amount;
335 Weight() : Type(Local), Amount(0) {}
336 Weight(DistType Type, BlockNode TargetNode, uint64_t Amount)
337 : Type(Type), TargetNode(TargetNode), Amount(Amount) {}
355 void addLocal(const BlockNode &Node, uint64_t Amount) {
356 add(Node, Amount, Weight::Local);
358 void addExit(const BlockNode &Node, uint64_t Amount) {
359 add(Node, Amount, Weight::Exit)
    [all...]
  /external/clang/lib/CodeGen/
CGExprScalar.cpp 1652 int amount = (isInc ? 1 : -1); local
    [all...]
  /external/llvm/lib/Target/AArch64/AsmParser/
AArch64AsmParser.cpp 240 unsigned Amount;
429 return ShiftExtend.Amount;
    [all...]
  /external/llvm/lib/Target/ARM/AsmParser/
ARMAsmParser.cpp     [all...]