Home
last modified time | relevance | path

Searched refs:data_offset (Results 1 – 25 of 67) sorted by relevance

123

/freebsd-12-stable/sys/dev/drm2/radeon/
Dradeon_atombios.c165 uint16_t data_offset, size; in radeon_lookup_i2c_gpio() local
171 if (atom_parse_data_header(ctx, index, &size, NULL, NULL, &data_offset)) { in radeon_lookup_i2c_gpio()
172 i2c_info = (struct _ATOM_GPIO_I2C_INFO *)((char *)ctx->bios + data_offset); in radeon_lookup_i2c_gpio()
199 uint16_t data_offset, size; in radeon_atombios_i2c_init() local
203 if (atom_parse_data_header(ctx, index, &size, NULL, NULL, &data_offset)) { in radeon_atombios_i2c_init()
204 i2c_info = (struct _ATOM_GPIO_I2C_INFO *)((char *)ctx->bios + data_offset); in radeon_atombios_i2c_init()
232 u16 data_offset, size; in radeon_lookup_gpio() local
238 if (atom_parse_data_header(ctx, index, &size, NULL, NULL, &data_offset)) { in radeon_lookup_gpio()
239 gpio_info = (struct _ATOM_GPIO_PIN_LUT *)((char *)ctx->bios + data_offset); in radeon_lookup_gpio()
544 u16 size, data_offset; in radeon_get_atom_connector_info_from_object_table() local
[all …]
/freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/ObjectFile/Breakpad/
DObjectFileBreakpad.cpp65 const ModuleSP &module_sp, DataBufferSP &data_sp, offset_t data_offset, in CreateInstance() argument
71 data_offset = 0; in CreateInstance()
83 data_offset = 0; in CreateInstance()
86 return new ObjectFileBreakpad(module_sp, data_sp, data_offset, file, in CreateInstance()
98 const FileSpec &file, DataBufferSP &data_sp, offset_t data_offset, in GetModuleSpecifications() argument
112 offset_t data_offset, in ObjectFileBreakpad() argument
116 : ObjectFile(module_sp, file, offset, length, data_sp, data_offset), in ObjectFileBreakpad()
DObjectFileBreakpad.h31 lldb::offset_t data_offset, const FileSpec *file,
41 lldb::offset_t data_offset,
99 lldb::DataBufferSP &data_sp, lldb::offset_t data_offset,
/freebsd-12-stable/contrib/llvm-project/lldb/source/Symbol/
DObjectFile.cpp34 DataBufferSP &data_sp, lldb::offset_t &data_offset) { in CreateObjectFromContainer() argument
41 module_sp, data_sp, data_offset, file, file_offset, file_size)); in CreateObjectFromContainer()
51 DataBufferSP &data_sp, lldb::offset_t &data_offset) { in FindPlugin() argument
72 module_sp, file, file_offset, file_size, data_sp, data_offset); in FindPlugin()
83 data_offset = 0; in FindPlugin()
109 module_sp, file, file_offset, file_size, data_sp, data_offset); in FindPlugin()
128 ObjectFileSP object_file_sp(callback(module_sp, data_sp, data_offset, in FindPlugin()
138 module_sp, file, file_offset, file_size, data_sp, data_offset); in FindPlugin()
210 lldb::offset_t data_offset, lldb::offset_t file_offset, in GetModuleSpecifications() argument
221 if (callback(file, data_sp, data_offset, file_offset, file_size, specs) > 0) in GetModuleSpecifications()
[all …]
DSymbolVendor.cpp47 offset_t data_offset = 0; in FindPlugin() local
50 data_sp, data_offset); in FindPlugin()
/freebsd-12-stable/usr.bin/mkimg/
Dvhd.c76 uint64_t data_offset; member
202 uint32_t disk_type, uint64_t data_offset) in vhd_make_footer() argument
210 be64enc(&footer->data_offset, data_offset); in vhd_make_footer()
240 uint64_t data_offset; member
255 uint64_t data_offset; member
296 be64enc(&header.data_offset, ~0ULL); in vhd_dyn_write()
/freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/ObjectFile/PDB/
DObjectFilePDB.cpp96 offset_t data_offset, const FileSpec *file, in CreateInstance() argument
99 module_sp, data_sp, data_offset, file, file_offset, length); in CreateInstance()
113 const FileSpec &file, DataBufferSP &data_sp, offset_t data_offset, in GetModuleSpecifications() argument
164 offset_t data_offset, const FileSpec *file, in ObjectFilePDB() argument
166 : ObjectFile(module_sp, file, offset, length, data_sp, data_offset) {} in ObjectFilePDB()
DObjectFilePDB.h35 lldb::offset_t data_offset, const FileSpec *file,
45 lldb::offset_t data_offset,
95 lldb::offset_t data_offset, const FileSpec *file,
/freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/ObjectContainer/BSD-Archive/
DObjectContainerBSDArchive.cpp288 lldb::offset_t data_offset, const FileSpec *file, in CreateInstance() argument
299 data.SetData(data_sp, data_offset, length); in CreateInstance()
342 new ObjectContainerBSDArchive(module_sp, data_sp, data_offset, file, in CreateInstance()
368 lldb::offset_t data_offset, const lldb_private::FileSpec *file, in ObjectContainerBSDArchive() argument
370 : ObjectContainer(module_sp, file, file_offset, size, data_sp, data_offset), in ObjectContainerBSDArchive()
426 lldb::offset_t data_offset = object->file_offset; in GetObjectFile() local
429 m_archive_sp->GetData().GetSharedDataBuffer(), data_offset); in GetObjectFile()
445 lldb::offset_t data_offset, lldb::offset_t file_offset, in GetModuleSpecifications() argument
452 data.SetData(data_sp, data_offset, data_sp->GetByteSize()); in GetModuleSpecifications()
DObjectContainerBSDArchive.h28 lldb::offset_t data_offset,
45 lldb::offset_t data_offset, const lldb_private::FileSpec *file,
50 lldb::offset_t data_offset,
/freebsd-12-stable/contrib/llvm-project/lldb/source/Utility/
DDataEncoder.cpp72 uint32_t DataEncoder::SetData(const DataBufferSP &data_sp, uint32_t data_offset, in SetData() argument
80 if (data_offset < data_size) { in SetData()
81 m_start = data_sp->GetBytes() + data_offset; in SetData()
82 const size_t bytes_left = data_size - data_offset; in SetData()
DDataExtractor.cpp250 offset_t data_offset, in SetData() argument
257 return SetData(data.m_data_sp, data.GetSharedDataOffset() + data_offset, in SetData()
262 if (data.ValidOffset(data_offset)) { in SetData()
263 if (data_length > data.GetByteSize() - data_offset) in SetData()
264 data_length = data.GetByteSize() - data_offset; in SetData()
265 return SetData(data.GetDataStart() + data_offset, data_length, in SetData()
283 offset_t data_offset, in SetData() argument
291 if (data_offset < data_size) { in SetData()
292 m_start = data_sp->GetBytes() + data_offset; in SetData()
293 const size_t bytes_left = data_size - data_offset; in SetData()
/freebsd-12-stable/sys/i386/ibcs2/
Dimgact_coff.c171 unsigned long data_offset = 0, data_address = 0, data_size = 0; in coff_load_file() local
263 data_offset = scns[i].s_scnptr; in coff_load_file()
275 if ((error = load_coff_section(vmspace, vp, data_offset, in coff_load_file()
306 unsigned long data_offset = 0, data_address = 0, data_size = 0; local
363 data_offset = scns[i].s_scnptr;
450 __FILE__, __LINE__, data_offset, data_address,
453 data_offset,
/freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/ObjectFile/wasm/
DObjectFileWasm.cpp96 offset_t data_offset, const FileSpec *file, in CreateInstance() argument
107 data_offset = 0; in CreateInstance()
127 data_offset = 0; in CreateInstance()
131 module_sp, data_sp, data_offset, file, file_offset, length)); in CreateInstance()
223 const FileSpec &file, DataBufferSP &data_sp, offset_t data_offset, in GetModuleSpecifications() argument
235 offset_t data_offset, const FileSpec *file, in ObjectFileWasm() argument
237 : ObjectFile(module_sp, file, offset, length, data_sp, data_offset), in ObjectFileWasm()
DObjectFileWasm.h34 lldb::offset_t data_offset, const FileSpec *file,
44 lldb::offset_t data_offset,
116 lldb::offset_t data_offset, const FileSpec *file,
/freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/ABI/AArch64/
DABISysV_arm64.cpp493 uint32_t data_offset = 0; in LoadValueFromConsecutiveGPRRegisters() local
512 if ((data_offset + *base_byte_size) <= heap_data_up->GetByteSize()) { in LoadValueFromConsecutiveGPRRegisters()
514 reg_info, heap_data_up->GetBytes() + data_offset, *base_byte_size, in LoadValueFromConsecutiveGPRRegisters()
518 data_offset += bytes_copied; in LoadValueFromConsecutiveGPRRegisters()
533 uint32_t data_offset = 0; in LoadValueFromConsecutiveGPRRegisters() local
534 while (data_offset < *byte_size) { in LoadValueFromConsecutiveGPRRegisters()
550 reg_info, heap_data_up->GetBytes() + data_offset, curr_byte_size, in LoadValueFromConsecutiveGPRRegisters()
556 data_offset += bytes_copied; in LoadValueFromConsecutiveGPRRegisters()
DABIMacOSX_arm64.cpp518 uint32_t data_offset = 0; in LoadValueFromConsecutiveGPRRegisters() local
537 if ((data_offset + *base_byte_size) <= heap_data_up->GetByteSize()) { in LoadValueFromConsecutiveGPRRegisters()
539 reg_info, heap_data_up->GetBytes() + data_offset, *base_byte_size, in LoadValueFromConsecutiveGPRRegisters()
543 data_offset += bytes_copied; in LoadValueFromConsecutiveGPRRegisters()
558 uint32_t data_offset = 0; in LoadValueFromConsecutiveGPRRegisters() local
559 while (data_offset < *byte_size) { in LoadValueFromConsecutiveGPRRegisters()
579 reg_info, heap_data_up->GetBytes() + data_offset, curr_byte_size, in LoadValueFromConsecutiveGPRRegisters()
585 data_offset += bytes_copied; in LoadValueFromConsecutiveGPRRegisters()
/freebsd-12-stable/libexec/rtld-elf/
Dmap_object.c83 Elf_Off data_offset; in map_object() local
225 data_offset = trunc_page(segs[i]->p_offset); in map_object()
232 data_flags | MAP_PREFAULT_READ, fd, data_offset) == (caddr_t) -1) { in map_object()
276 if (phdr_vaddr == 0 && data_offset <= hdr->e_phoff && in map_object()
277 (data_vlimit - data_vaddr + data_offset) >= in map_object()
279 phdr_vaddr = data_vaddr + hdr->e_phoff - data_offset; in map_object()
/freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/Disassembler/LLVMC/
DDisassemblerLLVMC.cpp112 lldb::offset_t data_offset) override { in Decode() argument
125 if (!data.ValidOffsetForDataOfSize(data_offset, min_op_byte_size)) in Decode()
130 m_opcode.SetOpcode8(data.GetU8(&data_offset), byte_order); in Decode()
135 m_opcode.SetOpcode16(data.GetU16(&data_offset), byte_order); in Decode()
140 m_opcode.SetOpcode32(data.GetU32(&data_offset), byte_order); in Decode()
145 m_opcode.SetOpcode64(data.GetU64(&data_offset), byte_order); in Decode()
150 m_opcode.SetOpcodeBytes(data.PeekData(data_offset, min_op_byte_size), in Decode()
164 uint32_t thumb_opcode = data.GetU16(&data_offset); in Decode()
171 thumb_opcode |= data.GetU16(&data_offset); in Decode()
176 m_opcode.SetOpcode32(data.GetU32(&data_offset), byte_order); in Decode()
[all …]
/freebsd-12-stable/contrib/llvm-project/lldb/include/lldb/Symbol/
DCompilerType.h366 const DataExtractor &data, lldb::offset_t data_offset,
372 lldb::offset_t data_offset, size_t data_byte_size,
377 const DataExtractor &data, lldb::offset_t data_offset,
392 bool GetValueAsScalar(const DataExtractor &data, lldb::offset_t data_offset,
DObjectContainer.h39 lldb::DataBufferSP &data_sp, lldb::offset_t data_offset) in ObjectContainer() argument
46 m_data.SetData(data_sp, data_offset, length); in ObjectContainer()
/freebsd-12-stable/contrib/llvm-project/lldb/include/lldb/
Dlldb-private-interfaces.h41 lldb::offset_t data_offset, const FileSpec *file, lldb::offset_t offset,
45 lldb::offset_t data_offset, lldb::offset_t file_offset,
49 lldb::offset_t data_offset,
/freebsd-12-stable/sys/dev/ixgbe/
Dixgbe_phy.c1149 u16 list_offset, data_offset; in ixgbe_reset_phy_nl() local
1184 &data_offset); in ixgbe_reset_phy_nl()
1188 ret_val = hw->eeprom.ops.read(hw, data_offset, &block_crc); in ixgbe_reset_phy_nl()
1189 data_offset++; in ixgbe_reset_phy_nl()
1194 ret_val = hw->eeprom.ops.read(hw, data_offset, &eword); in ixgbe_reset_phy_nl()
1202 data_offset++; in ixgbe_reset_phy_nl()
1208 data_offset++; in ixgbe_reset_phy_nl()
1209 ret_val = hw->eeprom.ops.read(hw, data_offset, in ixgbe_reset_phy_nl()
1213 data_offset++; in ixgbe_reset_phy_nl()
1215 ret_val = hw->eeprom.ops.read(hw, data_offset, in ixgbe_reset_phy_nl()
[all …]
/freebsd-12-stable/contrib/gdb/gdb/
Dsomread.c95 CORE_ADDR text_offset, data_offset; in som_symtab_read() local
99 data_offset = ANOFFSET (section_offsets, 1); in som_symtab_read()
179 bufp->symbol_value += data_offset; in som_symtab_read()
256 bufp->symbol_value += data_offset; in som_symtab_read()
277 bufp->symbol_value += data_offset; in som_symtab_read()
/freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/ObjectFile/JIT/
DObjectFileJIT.h35 lldb::offset_t data_offset, const lldb_private::FileSpec *file,
44 lldb::offset_t data_offset,

123