Searched refs:Extract (Results 1 - 25 of 45) sorted by relevance

12

/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFDebugMacinfo.cpp40 while (maninfo_entry.Extract(macinfo_data, &offset))
45 if (maninfo_entry.Extract(macinfo_data, &offset))
H A DDWARFDebugRanges.h24 void Extract(SymbolFileDWARF* dwarf2Data);
31 Extract (SymbolFileDWARF* dwarf2Data,
H A DDWARFDebugMacinfoEntry.h41 Extract(const lldb_private::DWARFDataExtractor& mac_info_data,
H A DDWARFAbbreviationDeclaration.cpp35 DWARFAbbreviationDeclaration::Extract(const DWARFDataExtractor& data, lldb::offset_t* offset_ptr) function in class:DWARFAbbreviationDeclaration
37 return Extract(data, offset_ptr, data.GetULEB128(offset_ptr));
41 DWARFAbbreviationDeclaration::Extract(const DWARFDataExtractor& data, lldb::offset_t *offset_ptr, dw_uleb128_t code) function in class:DWARFAbbreviationDeclaration
H A DDWARFDebugPubnames.h23 bool Extract(const lldb_private::DWARFDataExtractor& data);
H A DDWARFDebugAbbrev.cpp30 // DWARFAbbreviationDeclarationSet::Extract()
33 DWARFAbbreviationDeclarationSet::Extract(const DWARFDataExtractor& data, lldb::offset_t *offset_ptr) function in class:DWARFAbbreviationDeclarationSet
40 while (abbrevDeclaration.Extract(data, offset_ptr))
154 if (abbrevDeclSet.Extract(data, &offset))
H A DDWARFDebugRanges.cpp28 DWARFDebugRanges::Extract(SymbolFileDWARF* dwarf2Data) function in class:DWARFDebugRanges
33 while (Extract(dwarf2Data, &offset, range_list))
42 DWARFDebugRanges::Extract(SymbolFileDWARF* dwarf2Data, lldb::offset_t *offset_ptr, DWARFRangeList &range_list) function in class:DWARFDebugRanges
77 assert(!"DWARFRangeList::Extract() unsupported address size.");
H A DDWARFAbbreviationDeclaration.h59 bool Extract(const lldb_private::DWARFDataExtractor& data, lldb::offset_t *offset_ptr);
60 bool Extract(const lldb_private::DWARFDataExtractor& data, lldb::offset_t *offset_ptr, dw_uleb128_t code);
H A DDWARFDebugAranges.cpp56 // Extract
59 DWARFDebugAranges::Extract(const DWARFDataExtractor &debug_aranges_data) function in class:DWARFDebugAranges
67 while (set.Extract(debug_aranges_data, &offset))
H A DDWARFDebugAbbrev.h46 bool Extract(const lldb_private::DWARFDataExtractor& data, lldb::offset_t *offset_ptr);
H A DDWARFDebugArangeSet.h44 bool Extract(const lldb_private::DWARFDataExtractor &data, lldb::offset_t *offset_ptr);
H A DDWARFDebugAranges.h38 Extract(const lldb_private::DWARFDataExtractor &debug_aranges_data);
H A DDWARFDebugMacinfoEntry.cpp83 DWARFDebugMacinfoEntry::Extract(const DWARFDataExtractor& mac_info_data, lldb::offset_t* offset_ptr) function in class:DWARFDebugMacinfoEntry
H A DDWARFDebugPubnamesSet.h73 bool Extract(const lldb_private::DWARFDataExtractor& debug_pubnames_data, lldb::offset_t *offset_ptr);
H A DDWARFDebugInfo.cpp66 m_cu_aranges_ap->Extract (debug_aranges_data);
122 if (cu_sp->Extract(debug_info_data, &offset) == false)
292 while (cu->Extract(dwarf2Data->get_debug_info_data(), &offset))
307 while (!done && die.Extract(dwarf2Data, cu.get(), &offset))
H A DDWARFDebugPubnames.cpp32 DWARFDebugPubnames::Extract(const DWARFDataExtractor& data) function in class:DWARFDebugPubnames
35 "DWARFDebugPubnames::Extract (byte_size = %" PRIu64 ")",
39 log->Printf("DWARFDebugPubnames::Extract (byte_size = %" PRIu64 ")", (uint64_t)data.GetByteSize());
48 if (set.Extract(data, &offset))
H A DDWARFCompileUnit.h36 bool Extract(const lldb_private::DWARFDataExtractor &debug_info, lldb::offset_t *offset_ptr);
H A DDWARFDebugPubnamesSet.cpp81 DWARFDebugPubnamesSet::Extract(const DWARFDataExtractor& data, lldb::offset_t *offset_ptr) function in class:DWARFDebugPubnamesSet
/freebsd-11.0-release/contrib/llvm/tools/llvm-extract/
H A Dllvm-extract.cpp135 // Extract aliases via regular expression matching.
169 // Extract globals via regular expression matching.
201 // Extract functions via regular expression matching.
247 legacy::PassManager Extract; local
248 Extract.add(createGVExtractionPass(Gvs, DeleteFn));
249 Extract.run(*M);
/freebsd-11.0-release/contrib/llvm/tools/llvm-ar/
H A Dllvm-ar.cpp120 Extract, ///< Extract files back to file system enumerator in enum:ArchiveOperation
157 // Extract the member filename from the command line for the [relpos] argument
222 case 'x': ++NumOperations; Operation = Extract; break;
291 if (OriginalDates && Operation != Extract)
379 case Extract:
393 if (Operation == Extract && OldArchive->isThin())
421 case Extract:
633 case Extract:
/freebsd-11.0-release/contrib/llvm/lib/Target/AArch64/
H A DAArch64TargetTransformInfo.h37 /// Estimate the overhead of scalarizing an instruction. Insert and Extract
39 unsigned getScalarizationOverhead(Type *Ty, bool Insert, bool Extract);
/freebsd-11.0-release/contrib/llvm/lib/Target/X86/
H A DX86TargetTransformInfo.h36 int getScalarizationOverhead(Type *Ty, bool Insert, bool Extract);
/freebsd-11.0-release/contrib/llvm/lib/Target/ARM/
H A DARMTargetTransformInfo.h36 /// Estimate the overhead of scalarizing an instruction. Insert and Extract
38 unsigned getScalarizationOverhead(Type *Ty, bool Insert, bool Extract);
/freebsd-11.0-release/contrib/compiler-rt/lib/builtins/
H A Dfp_add_impl.inc59 // Extract the exponent and significand from the (possibly swapped) a and b.
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Plugins/ObjectContainer/BSD-Archive/
H A DObjectContainerBSDArchive.h109 Extract (const lldb_private::DataExtractor& data, lldb::offset_t offset);

Completed in 177 milliseconds

12