/external/u-boot/board/dfi/ |
D | Kconfig | 11 bool "DFI BT700 BayTrail on DFI Q7X-151 baseboard" 14 This is the DFI Q7X-151 baseboard equipped with the 15 DFI BayTrail Bt700 SoM. It contains an Atom E3845 with 24 bool "DFI BT700 BayTrail on theadorable-x86 baseboard" 28 DFI BayTrail Bt700 SoM. It contains an Atom E3845 with
|
/external/llvm/lib/Analysis/ |
D | IteratedDominanceFrontier.cpp | 25 for (auto DFI = df_begin(DT.getRootNode()), DFE = df_end(DT.getRootNode()); in calculate() local 26 DFI != DFE; ++DFI) { in calculate() 27 DomLevels[*DFI] = DFI.getPathLength() - 1; in calculate()
|
/external/llvm/lib/Transforms/Utils/ |
D | MemorySSA.cpp | 251 for (auto DFI = df_begin(DT->getRootNode()), DFE = df_end(DT->getRootNode()); in computeDomLevels() local 252 DFI != DFE; ++DFI) in computeDomLevels() 253 DomLevels[*DFI] = DFI.getPathLength() - 1; in computeDomLevels() 1110 auto DFI = df_begin(StartingAccess); in UpwardsDFSWalk() local 1111 for (auto DFE = df_end(StartingAccess); DFI != DFE;) { in UpwardsDFSWalk() 1112 MemoryAccess *CurrAccess = *DFI; in UpwardsDFSWalk() 1136 ++DFI; in UpwardsDFSWalk() 1147 auto DFICopy = DFI; in UpwardsDFSWalk() 1203 assert(DFI.getPathLength() > 0 && "We dropped our path?"); in UpwardsDFSWalk() 1204 unsigned N = DFI.getPathLength(); in UpwardsDFSWalk() [all …]
|
/external/swiftshader/third_party/LLVM/include/llvm/Analysis/ |
D | DominanceFrontier.h | 126 const_iterator DFI = find(Node); in compare() local 127 if (DFI == end()) in compare() 130 if (compareDomSet(I->second, DFI->second)) in compare()
|
/external/swiftshader/third_party/LLVM/lib/CodeGen/ |
D | ProcessImplicitDefs.cpp | 100 DFI = df_ext_begin(Entry, Visited), E = df_ext_end(Entry, Visited); in runOnMachineFunction() local 101 DFI != E; ++DFI) { in runOnMachineFunction() 102 MachineBasicBlock *MBB = *DFI; in runOnMachineFunction()
|
D | ExecutionDepsFix.cpp | 483 DFI = df_ext_begin(Entry, Visited), DFE = df_ext_end(Entry, Visited); in runOnMachineFunction() local 484 DFI != DFE; ++DFI) { in runOnMachineFunction() 485 MBB = *DFI; in runOnMachineFunction()
|
D | LiveVariables.cpp | 505 DFI = df_ext_begin(Entry, Visited), E = df_ext_end(Entry, Visited); in runOnMachineFunction() local 506 DFI != E; ++DFI) { in runOnMachineFunction() 507 MachineBasicBlock *MBB = *DFI; in runOnMachineFunction()
|
D | VirtRegRewriter.cpp | 1208 DFI = df_ext_begin(Entry, Visited), E = df_ext_end(Entry, Visited); in runOnMachineFunction() local 1209 DFI != E; ++DFI) { in runOnMachineFunction() 1210 MBB = *DFI; in runOnMachineFunction()
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Analysis/ |
D | DominanceFrontierImpl.h | 112 const_iterator DFI = find(Node); in compare() local 113 if (DFI == end()) in compare() 116 if (compareDomSet(I->second, DFI->second)) in compare()
|
/external/llvm/include/llvm/Analysis/ |
D | DominanceFrontierImpl.h | 104 const_iterator DFI = find(Node); in compare() local 105 if (DFI == end()) in compare() 108 if (compareDomSet(I->second, DFI->second)) in compare()
|
/external/llvm/lib/Transforms/Scalar/ |
D | GuardWidening.cpp | 247 for (auto DFI = df_begin(DT.getRootNode()), DFE = df_end(DT.getRootNode()); in run() local 248 DFI != DFE; ++DFI) { in run() 249 auto *BB = (*DFI)->getBlock(); in run() 257 Changed |= eliminateGuardViaWidening(II, DFI, GuardsInBlock); in run()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/ |
D | PrologEpilogInserter.cpp | 1010 for (auto DFI = df_ext_begin(&MF, Reachable), DFE = df_ext_end(&MF, Reachable); in replaceFrameIndices() local 1011 DFI != DFE; ++DFI) { in replaceFrameIndices() 1014 if (DFI.getPathLength() >= 2) { in replaceFrameIndices() 1015 MachineBasicBlock *StackPred = DFI.getPath(DFI.getPathLength() - 2); in replaceFrameIndices() 1020 MachineBasicBlock *BB = *DFI; in replaceFrameIndices()
|
D | MachineVerifier.cpp | 2261 DFI = df_ext_begin(MF, Reachable), DFE = df_ext_end(MF, Reachable); in verifyStackFrame() local 2262 DFI != DFE; ++DFI) { in verifyStackFrame() 2263 const MachineBasicBlock *MBB = *DFI; in verifyStackFrame() 2267 if (DFI.getPathLength() >= 2) { in verifyStackFrame() 2268 const MachineBasicBlock *StackPred = DFI.getPath(DFI.getPathLength() - 2); in verifyStackFrame()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Scalar/ |
D | GuardWidening.cpp | 246 for (auto DFI = df_begin(Root), DFE = df_end(Root); in run() local 247 DFI != DFE; ++DFI) { in run() 248 auto *BB = (*DFI)->getBlock(); in run() 259 Changed |= eliminateGuardViaWidening(II, DFI, GuardsInBlock); in run()
|
/external/llvm/lib/CodeGen/ |
D | PrologEpilogInserter.cpp | 1015 for (auto DFI = df_ext_begin(&Fn, Reachable), DFE = df_ext_end(&Fn, Reachable); in replaceFrameIndices() local 1016 DFI != DFE; ++DFI) { in replaceFrameIndices() 1019 if (DFI.getPathLength() >= 2) { in replaceFrameIndices() 1020 MachineBasicBlock *StackPred = DFI.getPath(DFI.getPathLength() - 2); in replaceFrameIndices() 1025 MachineBasicBlock *BB = *DFI; in replaceFrameIndices()
|
D | MachineVerifier.cpp | 1958 DFI = df_ext_begin(MF, Reachable), DFE = df_ext_end(MF, Reachable); in verifyStackFrame() local 1959 DFI != DFE; ++DFI) { in verifyStackFrame() 1960 const MachineBasicBlock *MBB = *DFI; in verifyStackFrame() 1964 if (DFI.getPathLength() >= 2) { in verifyStackFrame() 1965 const MachineBasicBlock *StackPred = DFI.getPath(DFI.getPathLength() - 2); in verifyStackFrame()
|
/external/u-boot/arch/x86/dts/ |
D | dfi-bt700-q7x-151.dts | 14 model = "DFI-BT700";
|
D | theadorable-x86-dfi-bt700.dts | 12 model = "theadorable-x86-DFI-BT700";
|
/external/u-boot/board/dfi/dfi-bt700/ |
D | MAINTAINERS | 1 congatec DFI-BT700
|
/external/clang/lib/Sema/ |
D | SemaOverload.cpp | 9830 static unsigned RankDeductionFailure(const DeductionFailureInfo &DFI) { in RankDeductionFailure() argument 9831 switch ((Sema::TemplateDeductionResult)DFI.Result) { in RankDeductionFailure()
|
/external/honggfuzz/examples/apache-httpd/corpus_http1/ |
D | 0f037d8a7cef425306ac3f9b93374523.0001878f.honggfuzz.cov | 517 DFI;��Gή;cS ��^�y��Q��߉q�/����$�kbwJ�q����̐��g���ȕ}�dp��ӑ�`7��tR�G��oi~�@�λ��k%-��,`���|x�…
|
/external/honggfuzz/examples/apache-httpd/corpus_http2/ |
D | 0f037d8a7cef425306ac3f9b93374523.0001878f.honggfuzz.cov | 517 DFI;��Gή;cS ��^�y��Q��߉q�/����$�kbwJ�q����̐��g���ȕ}�dp��ӑ�`7��tR�G��oi~�@�λ��k%-��,`���|x�…
|
/external/cldr/tools/java/org/unicode/cldr/util/data/external/ |
D | 2013-1_UNLOCODE_CodeListPart2.csv | 1586 ,"GB","DFI","Driffield","Driffield","GLS","--3-----","RL","0701",,"5142N 00154W",
|
D | 2013-1_UNLOCODE_CodeListPart3.csv | 13649 ,"US","DFI","Defiance","Defiance","OH","---4----","AI","9601",,,
|
D | 2013-1_UNLOCODE_CodeListPart1.csv | 8951 ,"CA","DFI","Denfield","Denfield","ON","--3-----","RQ","0901",,"4307N 08125W",
|