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

  /frameworks/av/services/audioflinger/
FastMixer.cpp 533 struct timespec newLoad;
534 rc = clock_gettime(CLOCK_THREAD_CPUTIME_ID, &newLoad);
537 sec = newLoad.tv_sec - oldLoad.tv_sec;
538 nsec = newLoad.tv_nsec - oldLoad.tv_nsec;
551 oldLoad = newLoad;
    [all...]
  /external/llvm/lib/Transforms/IPO/
ArgumentPromotion.cpp 704 LoadInst *newLoad = new LoadInst(V, V->getName()+".val", Call);
705 newLoad->setAlignment(OrigLoad->getAlignment());
707 newLoad->setMetadata(LLVMContext::MD_tbaa,
709 Args.push_back(newLoad);
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeDAG.cpp 434 SDValue newLoad = DAG.getLoad(intVT, dl, Chain, Ptr, LD->getPointerInfo(),
438 SDValue Result = DAG.getNode(ISD::BITCAST, dl, LoadedVT, newLoad);
    [all...]

Completed in 91 milliseconds