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 524 struct timespec newLoad;
525 rc = clock_gettime(CLOCK_THREAD_CPUTIME_ID, &newLoad);
528 sec = newLoad.tv_sec - oldLoad.tv_sec;
529 nsec = newLoad.tv_nsec - oldLoad.tv_nsec;
542 oldLoad = newLoad;
    [all...]
  /external/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/
LegalizeDAG.cpp 430 SDValue newLoad = DAG.getLoad(intVT, dl, Chain, Ptr, LD->getPointerInfo(),
434 SDValue Result = DAG.getNode(ISD::BITCAST, dl, LoadedVT, newLoad);
    [all...]

Completed in 45 milliseconds