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

  /external/v8/src/
platform.h 605 template <int InitialValue>
608 return OS::CreateSemaphore(InitialValue);
621 template <int InitialValue>
624 Semaphore, CreateSemaphoreTrait<InitialValue>,
  /external/llvm/lib/Target/PowerPC/
PPCCTRLoops.cpp 345 const MachineOperand *InitialValue;
347 InitialValue = &IV_Inst->getOperand(1);
350 InitialValue = &IV_Inst->getOperand(3);
357 DEBUG(dbgs() << " initial value: " << *InitialValue << "\n");
391 assert(InitialValue->isReg() && "Expecting register for init value");
392 unsigned InitialValueReg = InitialValue->getReg();
  /external/llvm/lib/Target/Hexagon/
HexagonHardwareLoops.cpp 468 MachineOperand *InitialValue = 0;
473 InitialValue = &IV_Phi->getOperand(i);
477 if (!InitialValue)
569 // Allow InitialValue to be a register defined with an immediate.
570 if (InitialValue->isReg()) {
571 if (!defWithImmediate(InitialValue->getReg()))
573 InitV = getImmediate(*InitialValue);
575 assert(InitialValue->isImm());
576 InitV = InitialValue->getImm();
597 if (InitialValue->isReg())
    [all...]
  /external/llvm/unittests/ExecutionEngine/MCJIT/
MCJITTestBase.h 188 int32_t InitialValue) {
190 Constant *IV = ConstantInt::get(Context, APInt(32, InitialValue));

Completed in 55 milliseconds