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

  /frameworks/av/services/audioflinger/
FastThread.cpp 312 struct timespec newLoad;
313 rc = clock_gettime(CLOCK_THREAD_CPUTIME_ID, &newLoad);
316 sec = newLoad.tv_sec - mOldLoad.tv_sec;
317 nsec = newLoad.tv_nsec - mOldLoad.tv_nsec;
330 mOldLoad = newLoad;
  /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/spirv-tools/source/opt/
common_uniform_elim_pass.cpp 240 std::unique_ptr<ir::Instruction> newLoad(new ir::Instruction(SpvOpLoad,
242 def_use_mgr_->AnalyzeInstDefUse(&*newLoad);
243 newInsts->emplace_back(std::move(newLoad));
403 std::unique_ptr<ir::Instruction> newLoad(new ir::Instruction(SpvOpLoad,
405 def_use_mgr_->AnalyzeInstDefUse(&*newLoad);
406 insertItr = insertItr.InsertBefore(std::move(newLoad));
inline_pass.cpp 99 std::unique_ptr<ir::Instruction> newLoad(new ir::Instruction(
102 (*block_ptr)->AddInstruction(std::move(newLoad));
  /external/llvm/lib/Transforms/IPO/
ArgumentPromotion.cpp     [all...]
  /external/swiftshader/third_party/LLVM/lib/Transforms/IPO/
ArgumentPromotion.cpp 708 LoadInst *newLoad = new LoadInst(V, V->getName()+".val", Call);
709 newLoad->setAlignment(OrigLoad->getAlignment());
711 newLoad->setMetadata(LLVMContext::MD_tbaa,
713 Args.push_back(newLoad);
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
TargetLowering.cpp     [all...]
  /external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
LegalizeDAG.cpp 508 SDValue newLoad = DAG.getLoad(intVT, dl, Chain, Ptr, LD->getPointerInfo(),
511 SDValue Result = DAG.getNode(ISD::BITCAST, dl, LoadedVT, newLoad);
    [all...]

Completed in 189 milliseconds