Home
last modified time | relevance | path

Searched refs:extractor (Results 1 – 25 of 26) sorted by relevance

12

/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCClassDescriptorV2.cpp105 m_flags = extractor.GetU32_unchecked(&cursor); in Read()
106 m_version = extractor.GetU32_unchecked(&cursor); in Read()
107 m_ro_ptr = extractor.GetAddress_unchecked(&cursor); in Read()
122 m_ro_ptr = extractor.GetAddress_unchecked(&cursor); in Read()
157 m_flags = extractor.GetU32_unchecked(&cursor); in Read()
161 m_reserved = extractor.GetU32_unchecked(&cursor); in Read()
248 m_count = extractor.GetU32_unchecked(&cursor); in Read()
322 m_entsize = extractor.GetU32_unchecked(&cursor); in Read()
323 m_count = extractor.GetU32_unchecked(&cursor); in Read()
348 m_alignment = extractor.GetU32_unchecked(&cursor); in Read()
[all …]
/freebsd-13.1/contrib/subversion/subversion/libsvn_fs_x/
H A Dreps.c597 get_text(svn_fs_x__rep_extractor_t *extractor, in get_text() argument
617 svn_stringbuf_appendbytes(extractor->result, in get_text()
631 if (extractor->missing == NULL) in get_text()
632 extractor->missing = apr_array_make(extractor->pool, 1, in get_text()
640 svn_fs_x__reps_get(svn_fs_x__rep_extractor_t **extractor, in svn_fs_x__reps_get() argument
659 *extractor = result; in svn_fs_x__reps_get()
672 SVN_ERR_ASSERT(extractor->missing == NULL); in svn_fs_x__extractor_drive()
681 if (start_offset > extractor->result->len) in svn_fs_x__extractor_drive()
682 start_offset = extractor->result->len; in svn_fs_x__extractor_drive()
684 if (size > extractor->result->len - start_offset) in svn_fs_x__extractor_drive()
[all …]
H A Dreps.h118 svn_fs_x__reps_get(svn_fs_x__rep_extractor_t **extractor,
135 svn_fs_x__rep_extractor_t* extractor,
H A Dcached_data.c1389 svn_fs_x__rep_extractor_t *extractor = NULL; in read_container_window() local
1405 SVN_ERR(svn_cache__get_partial((void**)&extractor, &is_cached, in read_container_window()
1411 if (extractor == NULL) in read_container_window()
1414 SVN_ERR(block_read((void **)&extractor, fs, &rs->rep_id, in read_container_window()
1419 SVN_ERR(svn_fs_x__extractor_drive(nwin, extractor, rs->current, size, in read_container_window()
3328 block_read_reps_container(svn_fs_x__rep_extractor_t **extractor, in block_read_reps_container() argument
3365 SVN_ERR(svn_fs_x__reps_get(extractor, fs, container, sub_item, in block_read_reps_container()
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/
H A DLibCxx.cpp304 DataExtractor extractor(buffer_sp, process_sp->GetByteOrder(), in Update() local
307 "pair", extractor, valobj_sp->GetExecutionContextRef(), in Update()
673 DataExtractor extractor; in LibcxxWStringSummaryProvider() local
674 const size_t bytes_read = location_sp->GetPointeeData(extractor, 0, size); in LibcxxWStringSummaryProvider()
689 options.SetData(extractor); in LibcxxWStringSummaryProvider()
746 DataExtractor extractor; in LibcxxStringSummaryProvider() local
747 const size_t bytes_read = location_sp->GetPointeeData(extractor, 0, size); in LibcxxStringSummaryProvider()
751 options.SetData(extractor); in LibcxxStringSummaryProvider()
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
H A DDWARFLocationExpression.cpp124 DataExtractor extractor(buffer, byte_order, address_size, byte_size); in MakeLocationExpressionInternal() local
125 DWARFExpression result(module, extractor, nullptr); in MakeLocationExpressionInternal()
249 DataExtractor extractor(buffer, lldb::eByteOrderLittle, address_size); in MakeConstantLocationExpression() local
250 DWARFExpression result(nullptr, extractor, nullptr); in MakeConstantLocationExpression()
/freebsd-13.1/contrib/llvm-project/lldb/source/Expression/
H A DIRMemoryMap.cpp732 DataExtractor extractor(buf.GetBytes(), buf.GetByteSize(), GetByteOrder(), in ReadScalarFromMemory() local
744 scalar = extractor.GetU8(&offset); in ReadScalarFromMemory()
747 scalar = extractor.GetU16(&offset); in ReadScalarFromMemory()
750 scalar = extractor.GetU32(&offset); in ReadScalarFromMemory()
753 scalar = extractor.GetU64(&offset); in ReadScalarFromMemory()
780 void IRMemoryMap::GetMemoryData(DataExtractor &extractor, in GetMemoryData() argument
825 extractor = DataExtractor(allocation.m_data.GetBytes() + offset, size, in GetMemoryData()
837 extractor = DataExtractor(allocation.m_data.GetBytes() + offset, size, in GetMemoryData()
H A DIRExecutionUnit.cpp188 DataExtractor extractor(buffer_sp, process->GetByteOrder(), in DisassembleFunction() local
193 extractor.PutToLog(log, 0, extractor.GetByteSize(), func_remote_addr, 16, in DisassembleFunction()
197 disassembler_sp->DecodeInstructions(Address(func_remote_addr), extractor, 0, in DisassembleFunction()
H A DMaterializer.cpp697 DataExtractor extractor(data.GetBytes(), data.GetByteSize(), in DumpToLog() local
705 ptr = extractor.GetAddress(&offset); in DumpToLog()
975 DataExtractor extractor(data.GetBytes(), data.GetByteSize(), in DumpToLog() local
983 ptr = extractor.GetAddress(&offset); in DumpToLog()
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/JITLoader/GDB/
H A DJITLoaderGDB.cpp136 DataExtractor extractor(data.GetBytes(), data.GetByteSize(), in ReadJITEntry() local
139 entry->next_entry = extractor.GetAddress(&offset); in ReadJITEntry()
140 entry->prev_entry = extractor.GetAddress(&offset); in ReadJITEntry()
141 entry->symfile_addr = extractor.GetAddress(&offset); in ReadJITEntry()
143 entry->symfile_size = extractor.GetU64(&offset); in ReadJITEntry()
/freebsd-13.1/contrib/llvm-project/lldb/source/Target/
H A DThreadPlanTracer.cpp156 DataExtractor extractor(buffer, sizeof(buffer), m_process.GetByteOrder(), in Log() local
161 disassembler->DecodeInstructions(pc_addr, extractor, 0, 1, false, in Log()
164 disassembler->DecodeInstructions(Address(pc), extractor, 0, 1, false, in Log()
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationClient.cpp1965 StringExtractor extractor; in DecodeProcessInfoResponse() local
1998 StringExtractor extractor(value); in DecodeProcessInfoResponse() local
2003 StringExtractor extractor(value); in DecodeProcessInfoResponse() local
2007 extractor.GetHexByteString(name); in DecodeProcessInfoResponse()
2107 StringExtractor extractor; in GetCurrentProcessInfo() local
2591 StringExtractor extractor(value); in LaunchGDBServer() local
3675 StringExtractor extractor(value); in GetModuleInfo() local
3677 extractor.GetHexByteString(uuid); in GetModuleInfo()
3680 StringExtractor extractor(value); in GetModuleInfo() local
3693 StringExtractor extractor(value); in GetModuleInfo() local
[all …]
H A DGDBRemoteCommunicationServerCommon.cpp341 StringExtractor extractor(value); in Handle_qfProcessInfo() local
343 extractor.GetHexByteString(file); in Handle_qfProcessInfo()
H A DProcessGDBRemote.cpp3827 StringExtractor extractor(desc_str); in AsyncThread() local
3828 extractor.GetHexByteString(desc_string); in AsyncThread()
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/SymbolFile/PDB/
H A DPDBLocationToDWARFExpression.cpp176 DataExtractor extractor(buffer, byte_order, address_size, byte_size); in ConvertPDBLocationToDWARFExpression() local
177 DWARFExpression result(module, extractor, nullptr); in ConvertPDBLocationToDWARFExpression()
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Expression/
H A DIRMemoryMap.h71 void GetMemoryData(DataExtractor &extractor, lldb::addr_t process_address,
/freebsd-13.1/sys/contrib/zlib/contrib/
H A DREADME.contrib53 A very simple tar.gz file extractor using zlib
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Option/
H A DOptParser.td241 class ValueExtractor<code extractor> { code ValueExtractor = extractor; }
/freebsd-13.1/contrib/file/magic/Magdir/
H A Dandroid43 # android-backup-extractor/perl/backupencrypt.pl
H A Dmsdos362 # TELVOX Teleinformatica CODEC self-extractor for OS/2:
/freebsd-13.1/contrib/llvm-project/libcxx/include/
H A Diomanip599 // extractor for non-const basic_string& proxies
/freebsd-13.1/contrib/llvm-project/lldb/source/API/
H A DSBTarget.cpp1547 DataExtractorSP extractor(*data); in CreateValueFromData() local
1551 new_value_sp = ValueObject::CreateValueObjectFromData(name, *extractor, in CreateValueFromData()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Object/
H A DMachOObjectFile.cpp4642 DataExtractor extractor(ObjectFile::getData(), true, 0); in ReadULEB128s() local
4646 while (uint64_t delta = extractor.getULEB128(&offset)) { in ReadULEB128s()
/freebsd-13.1/sys/contrib/zlib/
H A DChangeLog1290 A very simple tar.gz file extractor using zlib
/freebsd-13.1/share/dict/
H A Dweb2a5310 benzol extractor
13754 copper extractor
18018 drill extractor
18575 dust extractor
25917 grease extractor
28941 honey extractor
37919 oil extractor
60702 stump extractor
62433 tap extractor
74807 wool extractor

12