Searched refs:byte_offset (Results 1 - 25 of 49) sorted by relevance

12

/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_eu_util.c66 brw_MOV(p, byte_offset(dst, delta), byte_offset(src, delta));
67 brw_MOV(p, byte_offset(dst, delta+16), byte_offset(src, delta+16));
85 brw_MOV(p, byte_offset(dst, delta), byte_offset(src, delta));
118 brw_MOV(p, byte_offset(dst, delta), deref_4f(ptr, delta));
119 brw_MOV(p, byte_offset(dst, delta+16), deref_4f(ptr, delta+16));
H A Dbrw_clip_util.c304 byte_offset(c->reg.vertex[to],
307 byte_offset(c->reg.vertex[from],
313 byte_offset(c->reg.vertex[to],
316 byte_offset(c->reg.vertex[from],
322 byte_offset(c->reg.vertex[to],
325 byte_offset(c->reg.vertex[from],
331 byte_offset(c->reg.vertex[to],
334 byte_offset(c->reg.vertex[from],
H A Dbrw_clip_unfilled.c57 struct brw_reg v0 = byte_offset(c->reg.vertex[0], hpos_offset);
58 struct brw_reg v1 = byte_offset(c->reg.vertex[1], hpos_offset);
59 struct brw_reg v2 = byte_offset(c->reg.vertex[2], hpos_offset);
162 byte_offset(c->reg.vertex[i],
165 byte_offset(c->reg.vertex[i],
172 byte_offset(c->reg.vertex[i],
175 byte_offset(c->reg.vertex[i],
236 brw_MOV(p, byte_offset(c->reg.vertex[0],
244 brw_MOV(p, byte_offset(c->reg.vertex[2],
/external/e2fsprogs/ext2ed/
H A Dblockbitmap_com.c177 int byte_offset,j; local
179 byte_offset=entry_num/8; /* Find the correct byte - entry_num/8 */
183 type_data.u.buffer [byte_offset] |= bit_mask; /* And apply it */
192 int byte_offset,j; local
194 byte_offset=entry_num/8;
199 type_data.u.buffer [byte_offset] &= bit_mask;
H A Dinodebitmap_com.c137 int byte_offset,j; local
139 byte_offset=entry_num/8;
142 type_data.u.buffer [byte_offset] |= bit_mask;
149 int byte_offset,j; local
151 byte_offset=entry_num/8;
156 type_data.u.buffer [byte_offset] &= bit_mask;
/external/lldb/include/lldb/
H A Dlldb-private-types.h29 uint32_t byte_offset; // The byte offset in the register context data where this register's value is found member in struct:lldb_private::__anon9909
/external/lldb/source/Core/
H A DValueObjectConstResultChild.cpp25 int32_t byte_offset,
35 byte_offset,
19 ValueObjectConstResultChild( ValueObject &parent, const ClangASTType &clang_type, const ConstString &name, uint32_t byte_size, int32_t byte_offset, uint32_t bitfield_bit_size, uint32_t bitfield_bit_offset, bool is_base_class, bool is_deref_of_parent ) argument
H A DValueObjectChild.cpp33 int32_t byte_offset,
43 m_byte_offset (byte_offset),
27 ValueObjectChild( ValueObject &parent, const ClangASTType &clang_type, const ConstString &name, uint64_t byte_size, int32_t byte_offset, uint32_t bitfield_bit_size, uint32_t bitfield_bit_offset, bool is_base_class, bool is_deref_of_parent, AddressType child_ptr_or_ref_addr_type ) argument
/external/lldb/source/Plugins/Process/elf-core/
H A DRegisterContextCoreFreeBSD_x86_64.cpp35 value = *(uint64_t *)(m_gpregset + reg_info->byte_offset);
H A DRegisterContextCoreLinux_x86_64.cpp36 value = *(uint64_t *)(m_gpregset + reg_info->byte_offset);
/external/lldb/source/Plugins/Process/POSIX/
H A DRegisterContextLinux_x86_64.cpp24 GetRegisterContext()[gpr_##reg].byte_offset = GPR_OFFSET(reg); \
29 GetRegisterContext()[gpr_##i386_reg].byte_offset = GPR_OFFSET(reg); \
38 GetRegisterContext()[dr##reg_index].byte_offset = DR_OFFSET(reg_index); \
H A DRegisterContextFreeBSD_x86_64.cpp23 GetRegisterContext()[gpr_##reg].byte_offset = GPR_OFFSET(reg); \
28 GetRegisterContext()[gpr_##i386_reg].byte_offset = GPR_OFFSET(reg); \
H A DRegisterContext_i386.cpp250 return g_register_infos[reg].byte_offset;
325 if (g_register_infos[reg].byte_offset == offset)
/external/lldb/source/Plugins/Process/Utility/
H A DRegisterContextMemory.cpp116 return reg_value.SetValueFromData(reg_info, m_reg_data, reg_info->byte_offset, partial_data_ok).Success();
125 addr_t reg_addr = m_reg_data_addr + reg_info->byte_offset;
H A DDynamicRegisterInfo.cpp110 reg_info.byte_offset = reg_info_dict.GetItemForKeyAsInteger(offset_pystr, UINT32_MAX);
112 if (reg_info.byte_offset == UINT32_MAX)
155 const size_t end_reg_offset = reg_info.byte_offset + reg_info.byte_size;
192 size_t end_reg_offset = reg_info.byte_offset + reg_info.byte_size;
H A DRegisterContextDummy.cpp48 m_pc_reg_info.byte_offset = 0;
/external/lldb/include/lldb/Core/
H A DValueObjectChild.h110 int32_t byte_offset,
H A DValueObjectConstResultChild.h33 int32_t byte_offset,
/external/skia/src/images/
H A DSkJpegUtility.cpp26 static boolean sk_seek_input_data(j_decompress_ptr cinfo, long byte_offset) { argument
28 size_t bo = (size_t) byte_offset;
/external/kernel-headers/original/uapi/sound/
H A Dcompress_offload.h58 * @byte_offset: Byte offset in ring buffer to DSP
68 __u32 byte_offset; member in struct:snd_compr_tstamp
/external/mesa3d/src/gallium/drivers/llvmpipe/
H A Dlp_tile_image.c202 uint byte_offset = tile_offset * bytes_per_tile; local
203 const uint8_t *src_tile = (uint8_t *) src + byte_offset;
291 uint byte_offset = tile_offset * bytes_per_tile; local
292 uint8_t *dst_tile = (uint8_t *) dst + byte_offset;
/external/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteRegisterContext.cpp116 Error error (value.SetValueFromData(reg_info, m_reg_data, reg_info->byte_offset, partial_data_ok));
133 const size_t bytes_copied = response.GetHexBytes (const_cast<uint8_t*>(m_reg_data.PeekData(reg_info->byte_offset, reg_byte_size)), reg_byte_size, '\xcc');
287 data.SetData (m_reg_data, reg_info->byte_offset, reg_info->byte_size);
311 packet.PutBytesAsRawHex8 (m_reg_data.PeekData(reg_info->byte_offset, reg_info->byte_size),
372 uint8_t *dst = const_cast<uint8_t*>(m_reg_data.PeekData(reg_info->byte_offset, reg_info->byte_size));
868 if (g_register_infos[2].byte_offset == 0)
870 uint32_t byte_offset = 0; local
873 // For primordial registers, increment the byte_offset by the byte_size to arrive at the
874 // byte_offset for the next register. Otherwise, we have a composite register whose
878 g_register_infos[i].byte_offset
[all...]
H A DGDBRemoteRegisterContext.h81 size_t end_reg_offset = reg_info.byte_offset + reg_info.byte_size;
/external/lldb/source/API/
H A DSBType.cpp603 const uint32_t byte_offset = bit_offset / 8u; local
607 strm.Printf ("+%u + %u bits: (", byte_offset, byte_bit_offset);
609 strm.Printf ("+%u: (", byte_offset);
/external/jpeg/
H A Djdhuff.c579 unsigned int byte_offset = bitstream_offset >> LOG_TWO_BIT_BUF_SIZE; local
583 jset_input_stream_position_bit(cinfo, byte_offset,
877 int byte_offset, int bit_left, INT32 buf)
884 jset_input_stream_position(cinfo, byte_offset);
876 jset_input_stream_position_bit(j_decompress_ptr cinfo, int byte_offset, int bit_left, INT32 buf) argument

Completed in 2091 milliseconds

12