HomeSort by relevance Sort by last modified time
    Searched refs:Amount (Results 26 - 50 of 79) sorted by null

12 3 4

  /external/mesa3d/src/gallium/drivers/r300/compiler/
radeon_emulate_loops.c 54 float Amount;
120 float amount; local
157 amount = rc_get_constant_value(count_inst->C,
168 count_inst->Amount += amount;
175 count_inst->Amount -= amount;
233 count_inst.Amount = 0.0f;
273 if(count_inst.Amount == 0.0f){
276 DBG("Counter is increased by %f each iteration.\n", count_inst.Amount);
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-pdbutil/
LinePrinter.cpp 71 void LinePrinter::Indent(uint32_t Amount) {
72 if (Amount == 0)
73 Amount = IndentSpaces;
74 CurrentIndent += Amount;
77 void LinePrinter::Unindent(uint32_t Amount) {
78 if (Amount == 0)
79 Amount = IndentSpaces;
80 CurrentIndent = std::max<int>(0, CurrentIndent - Amount);
PrettyClassLayoutGraphicalDumper.cpp 98 void PrettyClassLayoutGraphicalDumper::printPaddingRow(uint32_t Amount) {
99 if (Amount == 0)
103 WithColor(Printer, PDB_ColorItem::Padding).get() << "<padding> (" << Amount
  /external/llvm/lib/Target/Mips/
MipsSEInstrInfo.h 68 /// Adjust SP by Amount bytes.
69 void adjustStackPtr(unsigned SP, int64_t Amount, MachineBasicBlock &MBB,
MipsInstrInfo.h 127 virtual void adjustStackPtr(unsigned SP, int64_t Amount,
MipsSEInstrInfo.cpp 437 /// Adjust SP by Amount bytes.
438 void MipsSEInstrInfo::adjustStackPtr(unsigned SP, int64_t Amount,
445 if (Amount == 0)
448 if (isInt<16>(Amount)) {
449 // addi sp, sp, amount
450 BuildMI(MBB, I, DL, get(ADDiu), SP).addReg(SP).addImm(Amount);
452 // For numbers which are not 16bit integers we synthesize Amount inline
455 if (Amount < 0) {
457 Amount = -Amount;
    [all...]
  /external/llvm/include/llvm/Analysis/
BlockFrequencyInfoImpl.h 330 /// In addition to the raw weight amount, Weight stores the type of the edge
338 uint64_t Amount;
339 Weight() : Type(Local), Amount(0) {}
340 Weight(DistType Type, BlockNode TargetNode, uint64_t Amount)
341 : Type(Type), TargetNode(TargetNode), Amount(Amount) {}
359 void addLocal(const BlockNode &Node, uint64_t Amount) {
360 add(Node, Amount, Weight::Local);
362 void addExit(const BlockNode &Node, uint64_t Amount) {
363 add(Node, Amount, Weight::Exit)
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-rc/
ResourceScriptToken.cpp 95 bool advance(size_t Amount = 1);
199 bool Tokenizer::advance(size_t Amount) {
200 Pos += Amount;
  /external/swiftshader/third_party/LLVM/lib/Target/Blackfin/
BlackfinRegisterInfo.cpp 161 int64_t Amount = I->getOperand(0).getImm();
162 if (Amount != 0) {
163 assert(Amount%4 == 0 && "Unaligned call frame size");
165 adjustRegister(MBB, I, I->getDebugLoc(), BF::SP, BF::P1, -Amount);
169 adjustRegister(MBB, I, I->getDebugLoc(), BF::SP, BF::P1, Amount);
  /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/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Analysis/
BlockFrequencyInfoImpl.h 357 /// In addition to the raw weight amount, Weight stores the type of the edge
365 uint64_t Amount = 0;
368 Weight(DistType Type, BlockNode TargetNode, uint64_t Amount)
369 : Type(Type), TargetNode(TargetNode), Amount(Amount) {}
389 void addLocal(const BlockNode &Node, uint64_t Amount) {
390 add(Node, Amount, Weight::Local);
393 void addExit(const BlockNode &Node, uint64_t Amount) {
394 add(Node, Amount, Weight::Exit);
397 void addBackedge(const BlockNode &Node, uint64_t Amount) {
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/XCore/
XCoreFrameLowering.cpp 495 uint64_t Amount = Old.getOperand(0).getImm();
496 if (Amount != 0) {
498 // amount of space needed for the outgoing arguments up to the next
501 Amount = (Amount+Align-1)/Align*Align;
503 assert(Amount%4 == 0);
504 Amount /= 4;
506 bool isU6 = isImmU6(Amount);
507 if (!isU6 && !isImmU16(Amount)) {
511 << Amount << "\n"
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/ARC/
ARCFrameLowering.cpp 48 int Amount, int StackPtr) {
50 if (!Amount)
54 if (Amount < 0) {
55 AbsAmount = -Amount;
58 AbsAmount = Amount;
62 LLVM_DEBUG(dbgs() << "Internal: adjust stack by: " << Amount << ","
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AVR/
AVRFrameLowering.cpp 378 int Amount = TII.getFrameSize(*MI);
384 if (Amount != 0) {
394 if (isUInt<6>(Amount)) {
398 Amount = -Amount;
406 .addImm(Amount);
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Mips/
MipsSEInstrInfo.h 71 /// Adjust SP by Amount bytes.
72 void adjustStackPtr(unsigned SP, int64_t Amount, MachineBasicBlock &MBB,
MipsInstrInfo.h 143 virtual void adjustStackPtr(unsigned SP, int64_t Amount,
MipsSEInstrInfo.cpp 573 /// Adjust SP by Amount bytes.
574 void MipsSEInstrInfo::adjustStackPtr(unsigned SP, int64_t Amount,
581 if (Amount == 0)
584 if (isInt<16>(Amount)) {
585 // addi sp, sp, amount
586 BuildMI(MBB, I, DL, get(ADDiu), SP).addReg(SP).addImm(Amount);
588 // For numbers which are not 16bit integers we synthesize Amount inline
591 if (Amount < 0) {
593 Amount = -Amount;
    [all...]
  /external/llvm/lib/Target/AArch64/
AArch64FrameLowering.cpp 171 int64_t Amount = I->getOperand(0).getImm();
172 Amount = alignTo(Amount, Align);
174 Amount = -Amount;
190 assert(Amount > -0xffffff && Amount < 0xffffff && "call frame too large");
191 emitFrameOffset(MBB, I, DL, AArch64::SP, AArch64::SP, Amount, TII);
677 // ... otherwise the amount to pop is *all* of the argument space,
    [all...]
  /external/llvm/lib/Target/AArch64/InstPrinter/
AArch64InstPrinter.h 58 template <int Amount>
61 printPostIncOperand(MI, OpNo, Amount, O);
  /external/v8/tools/
profile_view.js 90 * @param {number} totalTime Amount of time that application spent in the
93 * @param {number} selfTime Amount of time that application spent in the
152 * @param {number} totalTime Amount of time that application spent in the
155 * @param {number} selfTime Amount of time that application spent in the
  /external/swiftshader/third_party/LLVM/lib/Target/X86/
X86RegisterInfo.cpp 523 uint64_t Amount = !reseveCallFrame ? I->getOperand(0).getImm() : 0;
532 if (Amount == 0)
536 // amount of space needed for the outgoing arguments up to the next
539 Amount = (Amount + StackAlign - 1) / StackAlign * StackAlign;
543 New = BuildMI(MF, DL, TII.get(getSUBriOpcode(Is64Bit, Amount)),
546 .addImm(Amount);
550 // Factor out the amount the callee already popped.
551 Amount -= CalleeAmt;
553 if (Amount) {
    [all...]
  /external/llvm/lib/Target/X86/
X86FrameLowering.h 165 uint64_t Amount) const;
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Support/
BinaryStreamReader.h 247 /// Advance the stream's offset by \p Amount bytes.
249 /// \returns a success error code if at least \p Amount bytes remain in the
251 Error skip(uint32_t Amount);
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AArch64/
AArch64FrameLowering.cpp 250 int64_t Amount = I->getOperand(0).getImm();
251 Amount = alignTo(Amount, Align);
253 Amount = -Amount;
269 assert(Amount > -0xffffff && Amount < 0xffffff && "call frame too large");
270 emitFrameOffset(MBB, I, DL, AArch64::SP, AArch64::SP, Amount, TII);
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AArch64/InstPrinter/
AArch64InstPrinter.h 63 template <int Amount>
66 printPostIncOperand(MI, OpNo, Amount, O);

Completed in 1890 milliseconds

12 3 4