HomeSort by relevance Sort by last modified time
    Searched refs:byte_offset (Results 1 - 25 of 77) sorted by null

1 2 3 4

  /external/libbrillo/brillo/
pointer_utils.h 14 // |byte_offset| bytes. Both const and non-const overloads are provided.
15 inline void* AdvancePointer(void* pointer, ssize_t byte_offset) {
16 return reinterpret_cast<uint8_t*>(pointer) + byte_offset;
18 inline const void* AdvancePointer(const void* pointer, ssize_t byte_offset) {
19 return reinterpret_cast<const uint8_t*>(pointer) + byte_offset;
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_eu_util.c 66 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));
brw_clip_util.c 304 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],
brw_clip_unfilled.c 57 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],
  /frameworks/av/media/libstagefright/codecs/amrnb/dec/src/
amrdecode.cpp 43 Description: AMRDecode now returns byte_offset rather than bit_offset,
57 1. Changed all references to bit_offset to byte_offset.
63 Removed byte_offset from input list. Renamed speech_bits
156 byte_offset = address offset of the next frame to be processed or
180 and byte_offset will be updated according to the contents of WmfDecBytesPerFrame
185 byte_offset will be updated according to the contents of If2DecBytesPerFrame
200 If input_format is an unsupported format, byte_offset will be set to -1, to
208 This function returns the new byte_offset value to indicate the address
249 byte_offset = WmfDecBytesPerFrame[frame_type]
261 byte_offset = If2DecBytesPerFrame[frame_type
403 Word16 byte_offset = -1; local
    [all...]
  /prebuilts/tools/linux-x86_64/kythe/proto/
common.proto 39 int32 byte_offset = 1;
  /hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/codecs/h264/parser/
h264parse_bsd.c 38 uint32_t bits_offset =0, byte_offset =0; local
49 viddec_pm_get_au_pos(parent, &bits_offset, &byte_offset, &is_emul);
119 viddec_pm_get_au_pos(parent, &bits_offset, &byte_offset, &is_emul);
156 viddec_pm_get_au_pos(parent, &bits_offset, &byte_offset, &is_emul);
196 uint32_t bits_offset =0, byte_offset =0; local
204 viddec_pm_get_au_pos(parent, &bits_offset, &byte_offset, &is_emul);
  /system/update_engine/payload_generator/
block_mapping.h 47 // offset in bytes |byte_offset|. The data block may or may not be cached, so
50 BlockId AddDiskBlock(int fd, off_t byte_offset);
64 // |byte_offset|.
65 BlockId AddBlock(int fd, off_t byte_offset, const brillo::Blob& block_data);
81 off_t byte_offset{0};
block_mapping.cc 47 BlockMapping::BlockId BlockMapping::AddDiskBlock(int fd, off_t byte_offset) {
50 if (!utils::PReadAll(fd, blob.data(), block_size_, byte_offset, &bytes_read))
54 return AddBlock(fd, byte_offset, blob);
72 off_t byte_offset,
104 new_ublock->byte_offset = byte_offset;
122 if (!utils::PReadAll(fd, blob.data(), block_size, byte_offset, &bytes_read))
  /external/e2fsprogs/ext2ed/
blockbitmap_com.c 178 int byte_offset,j; local
180 byte_offset=entry_num/8; /* Find the correct byte - entry_num/8 */
184 type_data.u.buffer [byte_offset] |= bit_mask; /* And apply it */
193 int byte_offset,j; local
195 byte_offset=entry_num/8;
200 type_data.u.buffer [byte_offset] &= bit_mask;
inodebitmap_com.c 138 int byte_offset,j; local
140 byte_offset=entry_num/8;
143 type_data.u.buffer [byte_offset] |= bit_mask;
150 int byte_offset,j; local
152 byte_offset=entry_num/8;
157 type_data.u.buffer [byte_offset] &= bit_mask;
  /external/v8/src/runtime/
runtime-futex.cc 33 size_t addr = (index << 2) + NumberToSize(sta->byte_offset());
49 size_t addr = (index << 2) + NumberToSize(sta->byte_offset());
64 size_t addr = (index << 2) + NumberToSize(sta->byte_offset());
runtime-typedarray.cc 118 size_t byte_offset = 0; local
120 CHECK(TryNumberToSize(*byte_offset_object, &byte_offset));
126 CHECK(byte_offset <= array_buffer_byte_length);
127 CHECK(array_buffer_byte_length - byte_offset >= byte_length);
159 static_cast<uint8_t*>(buffer->backing_store()) + byte_offset);
263 size_t source_byte_offset = NumberToSize(typed_array->byte_offset());
283 BUFFER_VIEW_GETTER(ArrayBufferView, ByteOffset, byte_offset)
340 size_t target_offset = NumberToSize(target->byte_offset());
341 size_t source_offset = NumberToSize(source->byte_offset());
  /external/syslinux/gpxe/src/include/
fs.h 23 int devread(unsigned long sector, unsigned long byte_offset,
  /external/v8/src/builtins/
builtins-dataview.cc 29 Handle<Object> byte_offset = args.atOrUndefined(isolate, 2); local
45 Object::ToIndex(isolate, byte_offset,
129 return data_view->byte_offset();
175 size_t const data_view_byte_offset = NumberToSize(data_view->byte_offset());
262 size_t const data_view_byte_offset = NumberToSize(data_view->byte_offset());
293 Handle<Object> byte_offset = args.atOrUndefined(isolate, 1); \
298 GetViewValue<type>(isolate, data_view, byte_offset, \
316 Handle<Object> byte_offset = args.atOrUndefined(isolate, 1); \
322 SetViewValue<type>(isolate, data_view, byte_offset, \
  /external/syslinux/gpxe/src/drivers/bitbash/
spi_bit.c 94 unsigned int byte_offset; local
106 byte_offset = ( bit_offset / 8 );
115 byte = ( data_out + byte_offset );
131 byte = ( data_in + byte_offset );
  /external/webrtc/webrtc/base/
bitbuffer_unittest.cc 144 size_t byte_offset, bit_offset; local
148 buffer.GetCurrentOffset(&byte_offset, &bit_offset);
149 EXPECT_EQ(0u, byte_offset);
152 buffer.GetCurrentOffset(&byte_offset, &bit_offset);
153 EXPECT_EQ(0u, byte_offset);
159 buffer.GetCurrentOffset(&byte_offset, &bit_offset);
160 EXPECT_EQ(2u, byte_offset);
164 buffer.GetCurrentOffset(&byte_offset, &bit_offset);
165 EXPECT_EQ(4u, byte_offset);
174 EXPECT_DEATH(buffer.GetCurrentOffset(&byte_offset, NULL), "")
    [all...]
bitbuffer.cc 211 bool BitBuffer::Seek(size_t byte_offset, size_t bit_offset) {
212 if (byte_offset > byte_count_ || bit_offset > 7 ||
213 (byte_offset == byte_count_ && bit_offset > 0)) {
216 byte_offset_ = byte_offset;
bitbuffer.h 77 bool Seek(size_t byte_offset, size_t bit_offset);
  /system/extras/f2fs_utils/
f2fs_ioutils.c 119 static int dev_write_sparse(void *buf, __u64 byte_offset, size_t byte_len)
137 sparse_file_add_data(f2fs_sparse_file, bi->buf, byte_len, byte_offset/F2FS_BLKSIZE);
180 // return sparse_file_add_fill(f2fs_sparse_file, ((__u8*)(bi->buf))[0], byte_len, byte_offset/F2FS_BLKSIZE);
  /bionic/libc/kernel/uapi/sound/
compress_offload.h 39 __u32 byte_offset; member in struct:snd_compr_tstamp
  /external/kernel-headers/original/uapi/sound/
compress_offload.h 58 * @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/
lp_tile_image.c 202 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;
  /hardware/qcom/msm8994/kernel-headers/sound/
compress_offload.h 39 __u32 byte_offset; member in struct:snd_compr_tstamp
  /hardware/qcom/msm8994/original-kernel-headers/sound/
compress_offload.h 58 * @byte_offset: Byte offset in ring buffer to DSP
68 __u32 byte_offset; member in struct:snd_compr_tstamp

Completed in 490 milliseconds

1 2 3 4