Home
last modified time | relevance | path

Searched refs:TD (Results 1 – 7 of 7) sorted by relevance

/frameworks/compile/libbcc/lib/ExecutionEngine/
DCompiler.cpp246 llvm::TargetData *TD = NULL; in compile() local
338 TD = new llvm::TargetData(mModule); in compile()
395 runLTO(new llvm::TargetData(*TD), ExportSymbols, CodeGenOptLevel); in compile()
399 if (runMCCodeGen(new llvm::TargetData(*TD), TM) != 0) { in compile()
467 if (TD) { in compile()
468 delete TD; in compile()
484 int Compiler::runMCCodeGen(llvm::TargetData *TD, llvm::TargetMachine *TM) { in runMCCodeGen() argument
495 MCCodeGenPasses.add(TD); in runMCCodeGen()
521 int Compiler::runLTO(llvm::TargetData *TD, in runLTO() argument
547 LTOPasses.add(TD); in runLTO()
DCompiler.h143 int runCodeGen(llvm::TargetData *TD, llvm::TargetMachine *TM,
147 int runMCCodeGen(llvm::TargetData *TD, llvm::TargetMachine *TM);
154 int runLTO(llvm::TargetData *TD,
/frameworks/compile/slang/
Dslang_rs_export_element.cpp139 const clang::TypedefNameDecl *TD = TT->getDecl(); in CreateFromDecl() local
140 EI = GetElementInfo(TD->getName()); in CreateFromDecl()
144 T = TD->getUnderlyingType().getTypePtr(); in CreateFromDecl()
Dllvm-rs-link.cpp223 if (llvm::TargetData *TD = new llvm::TargetData(ModuleDataLayout)) in OptimizeModule() local
224 Passes.add(TD); in OptimizeModule()
/frameworks/av/libvideoeditor/vss/src/
DM4VSS3GPP_EditAudio.c1281 const M4OSA_Int32 TD = pC->pTransitionList[pC-> in M4VSS3GPP_intCheckAudioMode() local
1292 if( ( TD > 0) && ((M4OSA_Int32)(pC->ewc.dATo - pC->pC1->iAoffset in M4VSS3GPP_intCheckAudioMode()
1293 / pC->pC1->scale_audio + 0.5) >= (pC->pC1->iEndTime - TD)) ) in M4VSS3GPP_intCheckAudioMode()
DM4VSS3GPP_EditVideo.c730 const M4OSA_Int32 TD = pC->pTransitionList[pC->uiCurrentClip].uiTransitionDuration; in M4VSS3GPP_intCheckVideoMode() local
742 if( ( TD > 0) && (( t - pC->pC1->iVoffset) >= (pC->pC1->iEndTime - TD)) ) in M4VSS3GPP_intCheckVideoMode()
779 - (pC->pC1->iEndTime - TD + pC->pC1->iVoffset); in M4VSS3GPP_intCheckVideoMode()
/frameworks/compile/mclinker/tools/llvm-mcld/
Dllvm-mcld.cpp861 if (const TargetData *TD = TheTargetMachine.getTM().getTargetData()) in main() local
862 PM.add(new TargetData(*TD)); in main()