/external/jmonkeyengine/engine/src/core-effects/Common/MatDefs/Post/ |
D | BloomExtract.j3md | 8 Boolean Extract 22 DO_EXTRACT : Extract 37 DO_EXTRACT : Extract
|
/external/libmpeg2/common/arm/ |
D | impeg2_inter_pred.s | 318 vext.8 d8, d0, d1, #1 @Extract pixels (1-8) of row1 320 vext.8 d12, d2, d3, #1 @Extract pixels (1-8) of row5 322 vext.8 d16, d4, d5, #1 @Extract pixels (1-8) of row2 324 vext.8 d20, d6, d7, #1 @Extract pixels (1-8) of row6 336 vext.8 d1, d9, d10, #1 @Extract pixels (1-8) of row3 338 vext.8 d3, d13, d14, #1 @Extract pixels (1-8) of row7 342 vext.8 d5, d17, d18, #1 @Extract pixels (1-8) of row4 344 vext.8 d7, d21, d22, #1 @Extract pixels (1-8) of row8 429 vext.8 d1, d0, d1, #1 @Extract pixels (1-8) of row1 433 vext.8 d3, d2, d3, #1 @Extract pixels (1-8) of row5 [all …]
|
/external/lldb/source/Plugins/SymbolFile/DWARF/ |
D | DWARFDebugRanges.cpp | 28 DWARFDebugRanges::Extract(SymbolFileDWARF* dwarf2Data) in Extract() function in DWARFDebugRanges 33 while (Extract(dwarf2Data, &offset, range_list)) in Extract() 85 DWARFDebugRanges::Extract(SymbolFileDWARF* dwarf2Data, lldb::offset_t *offset_ptr, RangeList &range… in Extract() function in DWARFDebugRanges
|
D | DWARFDebugMacinfo.cpp | 40 while (maninfo_entry.Extract(macinfo_data, &offset)) in Dump() 45 if (maninfo_entry.Extract(macinfo_data, &offset)) in Dump()
|
D | DWARFDebugAbbrev.cpp | 33 DWARFAbbreviationDeclarationSet::Extract(const DataExtractor& data, lldb::offset_t *offset_ptr) in Extract() function in DWARFAbbreviationDeclarationSet 40 while (abbrevDeclaration.Extract(data, offset_ptr)) in Extract() 154 if (abbrevDeclSet.Extract(data, &offset)) in Parse()
|
D | DWARFDebugRanges.h | 28 void Extract(SymbolFileDWARF* dwarf2Data); 35 Extract (SymbolFileDWARF* dwarf2Data,
|
D | DWARFAbbreviationDeclaration.cpp | 35 DWARFAbbreviationDeclaration::Extract(const DataExtractor& data, lldb::offset_t* offset_ptr) in Extract() function in DWARFAbbreviationDeclaration 37 return Extract(data, offset_ptr, data.GetULEB128(offset_ptr)); in Extract() 41 DWARFAbbreviationDeclaration::Extract(const DataExtractor& data, lldb::offset_t *offset_ptr, dw_ule… in Extract() function in DWARFAbbreviationDeclaration
|
D | DWARFAbbreviationDeclaration.h | 66 bool Extract(const lldb_private::DataExtractor& data, lldb::offset_t *offset_ptr); 67 …bool Extract(const lldb_private::DataExtractor& data, lldb::offset_t *offset_ptr, dw_ul…
|
D | DWARFDebugAranges.cpp | 59 DWARFDebugAranges::Extract(const DataExtractor &debug_aranges_data) in Extract() function in DWARFDebugAranges 67 while (set.Extract(debug_aranges_data, &offset)) in Extract()
|
D | DWARFCompileUnit.h | 32 bool Extract(const lldb_private::DataExtractor &debug_info, lldb::offset_t *offset_ptr); 33 …dw_offset_t Extract(lldb::offset_t offset, const lldb_private::DataExtractor& debug_info_data, con…
|
D | DWARFDebugMacinfoEntry.h | 41 Extract(const lldb_private::DataExtractor& mac_info_data,
|
D | DWARFLocationList.h | 25 Extract (const lldb_private::DataExtractor& debug_loc_data,
|
D | DWARFDebugPubnames.h | 23 bool Extract(const lldb_private::DataExtractor& data);
|
D | DWARFDebugInfo.cpp | 66 m_cu_aranges_ap->Extract (debug_aranges_data); in GetCompileUnitAranges() 157 if (cu_sp->Extract(debug_info_data, &offset) == false) in ParseCompileUnitHeadersIfNeeded() 402 while (cu->Extract(dwarf2Data->get_debug_info_data(), &offset)) in Parse() 417 while (!done && die.Extract(dwarf2Data, cu.get(), &offset)) in Parse()
|
D | DWARFDebugPubnames.cpp | 32 DWARFDebugPubnames::Extract(const DataExtractor& data) in Extract() function in DWARFDebugPubnames 48 if (set.Extract(data, &offset)) in Extract()
|
D | DWARFDebugAranges.h | 38 Extract(const lldb_private::DataExtractor &debug_aranges_data);
|
D | DWARFDebugAbbrev.h | 46 bool Extract(const lldb_private::DataExtractor& data, lldb::offset_t *offset_ptr);
|
D | DWARFDebugArangeSet.h | 44 bool Extract(const lldb_private::DataExtractor &data, lldb::offset_t *offset_ptr);
|
/external/llvm/docs/CommandGuide/ |
D | llvm-extract.rst | 36 Extract the function named *function-name* from the LLVM bitcode. May be 41 Extract the function(s) matching *function-regular-expr* from the LLVM bitcode. 47 Extract the global variable named *global-name* from the LLVM bitcode. May be 52 Extract the global variable(s) matching *global-regular-expr* from the LLVM
|
/external/llvm/lib/CodeGen/ |
D | WinEHPrepare.cpp | 624 ExtractValueInst *Extract = dyn_cast<ExtractValueInst>(U); in promoteLandingPadValues() local 625 if (!Extract) in promoteLandingPadValues() 628 for (auto *EU : Extract->users()) { in promoteLandingPadValues() 991 const ExtractValueInst *Extract = dyn_cast<ExtractValueInst>(U); in mapLandingPad() local 992 if (!Extract) in mapLandingPad() 994 assert(Extract->getNumIndices() == 1 && in mapLandingPad() 996 unsigned int Idx = *(Extract->idx_begin()); in mapLandingPad() 1000 ExtractedEHPtrs.push_back(Extract); in mapLandingPad() 1002 ExtractedSelectors.push_back(Extract); in mapLandingPad() 1014 for (auto *Extract : ExtractedEHPtrs) { in isLandingPadSpecificInst() local [all …]
|
/external/llvm/test/Linker/ |
D | replaced-function-matches-first-subprogram.ll | 41 ; Extract out the list of subprograms from each compile unit. 48 ; Extract out each compile unit's single subprogram. The replaced subprogram's 57 ; Extract out the file from the replaced subprogram. Confirm that each
|
/external/llvm/test/MC/Disassembler/AArch64/ |
D | arm64-bitfield.txt | 22 # 5.4.5 Extract (immediate)
|
/external/llvm/tools/llvm-ar/ |
D | llvm-ar.cpp | 114 Extract, ///< Extract files back to file system enumerator 214 case 'x': ++NumOperations; Operation = Extract; break; in parseCommandLine() 274 if (OriginalDates && Operation != Extract) in parseCommandLine() 367 case Extract: in shouldCreateArchive() 401 case Extract: in performReadOperation() 892 case Extract: in performOperation()
|
/external/squashfs-tools/RELEASE-READMEs/ |
D | README-3.3 | 124 Extract all files matching "*.gz" in the top level directory "test". 128 Extract all files beginning with "example" inside top level directories 135 Extract all files matching "*.gz" in top level directory "test",
|
/external/llvm/test/MC/AArch64/ |
D | arm64-bitfield-encoding.s | 31 ; 5.4.5 Extract (immediate)
|