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

  /external/tensorflow/tensorflow/core/lib/gtl/
cleanup_test.cc 267 void Incr(volatile int* ip) { ++*ip; }
268 void Incr() { Incr(&i); }
272 auto fin = gtl::MakeCleanup([] { Incr(); });
279 AnyCleanup fin = gtl::MakeCleanup([] { Incr(); });
286 AnyCleanup fin([] { Incr(); });
294 auto fin = gtl::MakeCleanup([ip] { Incr(ip); });
302 AnyCleanup fin = gtl::MakeCleanup([ip] { Incr(ip); });
310 AnyCleanup fin([ip] { Incr(ip); });
  /external/grpc-grpc/test/cpp/util/
metrics_server.h 40 * // one-time call qps_gauge1.Reset() and then calling qps_gauge1.Incr()
59 void Incr();
metrics_server.cc 40 void QpsGauge::Incr() {
  /external/swiftshader/third_party/subzero/crosstest/
test_vector_ops_main.cpp 34 Ty Incr;
39 Incr[I] = (ElementTy)I;
49 Ty TestVectors[] = {Zero, Incr, Decr, Min, Max};
  /external/grpc-grpc/test/cpp/interop/
stress_interop_client.cc 105 qps_gauge->Incr();
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Mips/
MipsExpandPseudo.cpp 380 unsigned Incr = I->getOperand(2).getReg();
412 .addReg(Incr);
424 .addReg(Incr);
431 .addReg(Incr)
519 unsigned Incr = I->getOperand(2).getReg();
595 assert((OldVal != Incr) && "Clobbered the wrong reg!");
597 BuildMI(loopMBB, DL, TII->get(Opcode), Scratch).addReg(OldVal).addReg(Incr);
601 BuildMI(loopMBB, DL, TII->get(AND), Scratch).addReg(OldVal).addReg(Incr);
605 BuildMI(loopMBB, DL, TII->get(OR), Scratch).addReg(Incr).addReg(ZERO);
MipsISelLowering.cpp     [all...]
  /external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
IndVarSimplify.cpp 267 BinaryOperator *Incr =
269 if (Incr == 0 || Incr->getOpcode() != Instruction::FAdd) return;
273 ConstantFP *IncValueVal = dyn_cast<ConstantFP>(Incr->getOperand(1));
275 if (IncValueVal == 0 || Incr->getOperand(0) != PN ||
279 // Check Incr uses. One user is PN and the other user is an exit condition
281 Value::use_iterator IncrUse = Incr->use_begin();
283 if (IncrUse == Incr->use_end()) return;
285 if (IncrUse != Incr->use_end()) return;
414 Incr->getName()+".int", Incr)
    [all...]
LoopStrengthReduce.cpp     [all...]
  /external/llvm/lib/Transforms/Scalar/
IndVarSimplify.cpp 259 auto *Incr = dyn_cast<BinaryOperator>(PN->getIncomingValue(BackEdge));
260 if (Incr == nullptr || Incr->getOpcode() != Instruction::FAdd) return;
264 ConstantFP *IncValueVal = dyn_cast<ConstantFP>(Incr->getOperand(1));
266 if (IncValueVal == nullptr || Incr->getOperand(0) != PN ||
270 // Check Incr uses. One user is PN and the other user is an exit condition
272 Value::user_iterator IncrUse = Incr->user_begin();
274 if (IncrUse == Incr->user_end()) return;
276 if (IncrUse != Incr->user_end()) return;
405 Incr->getName()+".int", Incr)
    [all...]
LoopStrengthReduce.cpp     [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Scalar/
IndVarSimplify.cpp 300 auto *Incr = dyn_cast<BinaryOperator>(PN->getIncomingValue(BackEdge));
301 if (Incr == nullptr || Incr->getOpcode() != Instruction::FAdd) return;
305 ConstantFP *IncValueVal = dyn_cast<ConstantFP>(Incr->getOperand(1));
307 if (IncValueVal == nullptr || Incr->getOperand(0) != PN ||
311 // Check Incr uses. One user is PN and the other user is an exit condition
313 Value::user_iterator IncrUse = Incr->user_begin();
315 if (IncrUse == Incr->user_end()) return;
317 if (IncrUse != Incr->user_end()) return;
444 Incr->getName()+".int", Incr)
    [all...]
LoopStrengthReduce.cpp     [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Hexagon/
HexagonVLIWPacketizer.cpp 527 int Incr;
528 if (!HII->getIncrementValue(MJ, Incr))
532 if (!HII->isValidOffset(MI.getOpcode(), Offset+Incr, HRI))
535 MI.getOperand(OPI).setImm(Offset + Incr);
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Target/Mips/
MipsISelLowering.cpp     [all...]
  /external/llvm/lib/Target/Mips/
MipsISelLowering.cpp     [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfUnit.cpp 575 int Incr = (LittleEndian ? 1 : -1);
580 for (; Start != Stop; Start += Incr)
    [all...]
  /external/swiftshader/third_party/LLVM/lib/CodeGen/AsmPrinter/
DwarfCompileUnit.cpp 492 int Incr = (LittleEndian ? 1 : -1);
497 for (; Start != Stop; Start += Incr)
    [all...]
  /external/webrtc/webrtc/p2p/base/
pseudotcp.cc 186 inline void Incr(Stat s) { ++g_stats[s]; }
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/AsmPrinter/
DwarfUnit.cpp 609 int Incr = (LittleEndian ? 1 : -1);
614 for (; Start != Stop; Start += Incr)
    [all...]
  /external/llvm/lib/Target/AArch64/
AArch64InstrInfo.cpp     [all...]
  /external/llvm/lib/Transforms/Vectorize/
SLPVectorizer.cpp 612 int incrementUnscheduledDeps(int Incr) {
613 UnscheduledDeps += Incr;
614 return FirstInBundle->UnscheduledDepsInBundle += Incr;
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AArch64/
AArch64InstrInfo.cpp     [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Vectorize/
SLPVectorizer.cpp 870 int incrementUnscheduledDeps(int Incr)
    [all...]

Completed in 2395 milliseconds