OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:newLoad
(Results
1 - 3
of
3
) sorted by null
/frameworks/av/services/audioflinger/
FastMixer.cpp
598
struct timespec
newLoad
;
599
rc = clock_gettime(CLOCK_THREAD_CPUTIME_ID, &
newLoad
);
602
sec =
newLoad
.tv_sec - oldLoad.tv_sec;
603
nsec =
newLoad
.tv_nsec - oldLoad.tv_nsec;
616
oldLoad =
newLoad
;
[
all
...]
/external/llvm/lib/Transforms/IPO/
ArgumentPromotion.cpp
701
LoadInst *
newLoad
= new LoadInst(V, V->getName()+".val", Call);
702
newLoad
->setAlignment(OrigLoad->getAlignment());
704
newLoad
->setMetadata(LLVMContext::MD_tbaa,
706
Args.push_back(
newLoad
);
[
all
...]
/external/llvm/lib/CodeGen/SelectionDAG/
LegalizeDAG.cpp
441
SDValue
newLoad
= DAG.getLoad(intVT, dl, Chain, Ptr, LD->getPointerInfo(),
445
SDValue Result = DAG.getNode(ISD::BITCAST, dl, LoadedVT,
newLoad
);
[
all
...]
Completed in 127 milliseconds