/external/swiftshader/third_party/LLVM/tools/macho-dump/ |
D | macho-dump.cpp | 128 const MachOObject::LoadCommandInfo &LCI) { in DumpSegmentCommand() argument 130 Obj.ReadSegmentLoadCommand(LCI, SLC); in DumpSegmentCommand() 144 Obj.ReadSection(LCI, i, Sect); in DumpSegmentCommand() 164 const MachOObject::LoadCommandInfo &LCI) { in DumpSegment64Command() argument 166 Obj.ReadSegment64LoadCommand(LCI, SLC); in DumpSegment64Command() 180 Obj.ReadSection64(LCI, i, Sect); in DumpSegment64Command() 215 const MachOObject::LoadCommandInfo &LCI) { in DumpSymtabCommand() argument 217 Obj.ReadSymtabLoadCommand(LCI, SLC); in DumpSymtabCommand() 266 const MachOObject::LoadCommandInfo &LCI) { in DumpDysymtabCommand() argument 268 Obj.ReadDysymtabLoadCommand(LCI, DLC); in DumpDysymtabCommand() [all …]
|
/external/swiftshader/third_party/LLVM/lib/Analysis/ |
D | LibCallAliasAnalysis.cpp | 26 FunctionPass *llvm::createLibCallAliasAnalysisPass(LibCallInfo *LCI) { in createLibCallAliasAnalysisPass() argument 27 return new LibCallAliasAnalysis(LCI); in createLibCallAliasAnalysisPass() 31 delete LCI; in ~LibCallAliasAnalysis() 68 LCI->getLocationInfo(Details[i].LocationID); in AnalyzeLibCallDetails() 89 LCI->getLocationInfo(Details[i].LocationID); in AnalyzeLibCallDetails() 126 if (LCI) { in getModRefInfo() 128 if (const LibCallFunctionInfo *FI = LCI->getFunctionInfo(F)) { in getModRefInfo()
|
D | ScalarEvolution.cpp | 3700 if (ConstantInt *LCI = dyn_cast<ConstantInt>(BO->getOperand(1))) in createSCEV() local 3702 LCI->getValue() == CI->getValue()) in createSCEV()
|
/external/llvm/tools/dsymutil/ |
D | MachOUtils.cpp | 127 for (const auto &LCI : Obj.load_commands()) { in iterateOnSegments() local 129 if (LCI.C.cmd == MachO::LC_SEGMENT) in iterateOnSegments() 130 Segment = adaptFrom32bits(Obj.getSegmentLoadCommand(LCI)); in iterateOnSegments() 131 else if (LCI.C.cmd == MachO::LC_SEGMENT_64) in iterateOnSegments() 132 Segment = Obj.getSegment64LoadCommand(LCI); in iterateOnSegments() 206 const object::MachOObjectFile::LoadCommandInfo &LCI, unsigned Idx) { in getSection() argument 207 return Obj.getSection(LCI, Idx); in getSection() 213 const object::MachOObjectFile::LoadCommandInfo &LCI, unsigned Idx) { in getSection() argument 214 return Obj.getSection64(LCI, Idx); in getSection() 227 const object::MachOObjectFile::LoadCommandInfo &LCI, SegmentTy Segment, in transferSegmentAndSections() argument [all …]
|
/external/swiftshader/third_party/LLVM/lib/Object/ |
D | MachOObjectFile.cpp | 61 LoadCommandInfo LCI = MachOObj->getLoadCommandInfo(DRI.d.a); in moveToNextSymbol() local 62 if (LCI.Command.Type == macho::LCT_Symtab) { in moveToNextSymbol() 64 MachOObj->ReadSymtabLoadCommand(LCI, SymtabLoadCmd); in moveToNextSymbol() 77 LoadCommandInfo LCI = MachOObj->getLoadCommandInfo(DRI.d.a); in getSymbolTableEntry() local 78 MachOObj->ReadSymtabLoadCommand(LCI, SymtabLoadCmd); in getSymbolTableEntry() 92 LoadCommandInfo LCI = MachOObj->getLoadCommandInfo(DRI.d.a); in getSymbol64TableEntry() local 93 MachOObj->ReadSymtabLoadCommand(LCI, SymtabLoadCmd); in getSymbol64TableEntry() 282 LoadCommandInfo LCI = MachOObj->getLoadCommandInfo(DRI.d.a); in moveToNextSection() local 283 if (LCI.Command.Type == macho::LCT_Segment) { in moveToNextSection() 285 MachOObj->ReadSegmentLoadCommand(LCI, SegmentLoadCmd); in moveToNextSection() [all …]
|
D | MachOObject.cpp | 182 void MachOObject::ReadSegmentLoadCommand(const LoadCommandInfo &LCI, in ReadSegmentLoadCommand() argument 184 ReadInMemoryStruct(*this, Buffer->getBuffer(), LCI.Offset, Res); in ReadSegmentLoadCommand() 200 void MachOObject::ReadSegment64LoadCommand(const LoadCommandInfo &LCI, in ReadSegment64LoadCommand() argument 202 ReadInMemoryStruct(*this, Buffer->getBuffer(), LCI.Offset, Res); in ReadSegment64LoadCommand() 214 void MachOObject::ReadSymtabLoadCommand(const LoadCommandInfo &LCI, in ReadSymtabLoadCommand() argument 216 ReadInMemoryStruct(*this, Buffer->getBuffer(), LCI.Offset, Res); in ReadSymtabLoadCommand() 242 void MachOObject::ReadDysymtabLoadCommand(const LoadCommandInfo &LCI, in ReadDysymtabLoadCommand() argument 244 ReadInMemoryStruct(*this, Buffer->getBuffer(), LCI.Offset, Res); in ReadDysymtabLoadCommand() 254 void MachOObject::ReadLinkeditDataLoadCommand(const LoadCommandInfo &LCI, in ReadLinkeditDataLoadCommand() argument 256 ReadInMemoryStruct(*this, Buffer->getBuffer(), LCI.Offset, Res); in ReadLinkeditDataLoadCommand() [all …]
|
/external/swiftshader/third_party/LLVM/include/llvm/Object/ |
D | MachOObject.h | 142 const LoadCommandInfo &LCI, 145 const LoadCommandInfo &LCI, 148 const LoadCommandInfo &LCI, 151 const LoadCommandInfo &LCI, 154 const LoadCommandInfo &LCI, 161 const LoadCommandInfo &LCI, 165 const LoadCommandInfo &LCI,
|
/external/swiftshader/third_party/LLVM/include/llvm/Analysis/ |
D | LibCallAliasAnalysis.h | 28 LibCallInfo *LCI; member 31 : FunctionPass(ID), LCI(LC) { in FunctionPass() 35 : FunctionPass(ID), LCI(LC) { in LibCallAliasAnalysis()
|
D | Passes.h | 73 FunctionPass *createLibCallAliasAnalysisPass(LibCallInfo *LCI);
|
/external/swiftshader/third_party/LLVM/tools/llvm-objdump/ |
D | MachODump.cpp | 222 const MachOObject::LoadCommandInfo &LCI = MachOObj->getLoadCommandInfo(i); in getSectionsAndSymbols() local 223 if (LCI.Command.Type == macho::LCT_Segment) { in getSectionsAndSymbols() 225 MachOObj->ReadSegmentLoadCommand(LCI, SegmentLC); in getSectionsAndSymbols() 230 MachOObj->ReadSection(LCI, SectNum, Sect); in getSectionsAndSymbols() 234 } else if (LCI.Command.Type == macho::LCT_Segment64) { in getSectionsAndSymbols() 236 MachOObj->ReadSegment64LoadCommand(LCI, Segment64LC); in getSectionsAndSymbols() 242 MachOObj->ReadSection64(LCI, SectNum, Sect64); in getSectionsAndSymbols() 245 } else if (LCI.Command.Type == macho::LCT_FunctionStarts) { in getSectionsAndSymbols() 249 MachOObj->ReadLinkeditDataLoadCommand(LCI, LLC); in getSectionsAndSymbols() 313 const MachOObject::LoadCommandInfo &LCI = MachOObj->getLoadCommandInfo(i); in DisassembleInputMachO() local [all …]
|
/external/swiftshader/third_party/LLVM/lib/ExecutionEngine/RuntimeDyld/ |
D | RuntimeDyldMachO.cpp | 426 const MachOObject::LoadCommandInfo &LCI = Obj->getLoadCommandInfo(i); in loadObject() local 427 switch (LCI.Command.Type) { in loadObject() 432 SegmentLCI = &LCI; in loadObject() 437 SymtabLCI = &LCI; in loadObject() 442 DysymtabLCI = &LCI; in loadObject()
|
/external/llvm/lib/Analysis/ |
D | ScalarEvolution.cpp | 5110 if (ConstantInt *LCI = dyn_cast<ConstantInt>(LBO->getOperand(1))) in createSCEV() local 5112 LCI->getValue() == CI->getValue()) in createSCEV()
|
/external/lisa/ipynb/sched_tune/ |
D | stune_juno_rampL.ipynb | 491 …ystpk9YWYrg3yeMrOaRbzm/mphwxnM7AIzWxA8/1PMrGNJ65KiX3ct\ng+0l51y2c26/c26Wc+7LCI/jHjNbFpTzOzM7I9/+68…
|
/external/icu/icu4c/source/data/unidata/norm2/ |
D | uts46.txt | 1426 # 0F86..0F8B valid # 2.0 TIBETAN SIGN LCI RTAGS..TIBETAN SIGN GRU MED RGYINGS
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/data/unicode/ |
D | UnicodeData.txt | 3366 0F86;TIBETAN SIGN LCI RTAGS;Mn;230;NSM;;;;;N;;;;;
|
/external/icu/icu4c/source/data/unidata/ |
D | UnicodeData.txt | 3366 0F86;TIBETAN SIGN LCI RTAGS;Mn;230;NSM;;;;;N;;;;;
|
D | ppucd.txt | 5179 cp;0F86;-Alpha;bc=NSM;ccc=230;CI;Dia;GCB=EX;-Gr_Base;Gr_Ext;InPC=Top;jt=T;lb=CM;na=TIBETAN SIGN LCI…
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/data/unicode/ |
D | UnicodeData.txt | 3366 0F86;TIBETAN SIGN LCI RTAGS;Mn;230;NSM;;;;;N;;;;;
|