Searched defs:byte_offset (Results 1 - 25 of 30) sorted by relevance

12

/external/chromium_org/skia/ext/
H A Dconvolver_mips_dspr2.cc243 int byte_offset; local
361 [offset] "+r" (byte_offset), [fy] "+r" (filter_y), [cnt] "+r" (cnt),
467 [offset] "+r" (byte_offset), [fy] "+r" (filter_y), [cnt] "+r" (cnt),
H A Dconvolver.cc189 int byte_offset = out_x * 4; local
195 accum[0] += cur_filter * source_data_rows[filter_y][byte_offset + 0];
196 accum[1] += cur_filter * source_data_rows[filter_y][byte_offset + 1];
197 accum[2] += cur_filter * source_data_rows[filter_y][byte_offset + 2];
199 accum[3] += cur_filter * source_data_rows[filter_y][byte_offset + 3];
211 out_row[byte_offset + 0] = ClampTo8(accum[0]);
212 out_row[byte_offset + 1] = ClampTo8(accum[1]);
213 out_row[byte_offset + 2] = ClampTo8(accum[2]);
224 int max_color_channel = std::max(out_row[byte_offset + 0],
225 std::max(out_row[byte_offset
[all...]
/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/chromium_org/third_party/skia/src/images/
H A DSkJpegUtility.cpp23 static boolean sk_seek_input_data(j_decompress_ptr cinfo, long byte_offset) { argument
25 size_t bo = (size_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/chromium_org/net/quic/
H A Dquic_stream_sequencer.cc48 QuicStreamOffset byte_offset = frame.offset; local
58 if (byte_offset + data_len - num_bytes_consumed_ > max_frame_memory_) {
81 QuicStreamOffset byte_offset = frame.offset; local
90 if (byte_offset == num_bytes_consumed_) {
91 DVLOG(1) << "Processing byte offset " << byte_offset;
108 byte_offset += bytes_consumed;
111 DVLOG(1) << "Buffering packet at offset " << byte_offset;
112 frames_.insert(make_pair(byte_offset, string(data, data_len)));
H A Dquic_stream_sequencer_test.cc38 virtual bool OnFinFrame(QuicStreamOffset byte_offset, argument
42 frame.offset = byte_offset;
48 virtual bool OnFrame(QuicStreamOffset byte_offset, argument
52 frame.offset = byte_offset;
/external/grub/stage2/
H A Dfsys_iso9660.c69 iso9660_devread (int sector, int byte_offset, int byte_len, char *buf) argument
84 sector += (byte_offset >> sector_size_lg2);
85 byte_offset &= (buf_geom.sector_size - 1);
93 printf ("<%d, %d, %d>", sector, byte_offset, byte_len);
96 return rawread(current_drive, part_start + sector, byte_offset, byte_len, buf);
H A Ddisk_io.c140 rawread (int drive, int sector, int byte_offset, int byte_len, char *buf) argument
176 slen = ((byte_offset + byte_len + buf_geom.sector_size - 1)
190 + (soff << sector_size_bits) + byte_offset);
205 bufaddr = (char *) BUFFERADDR + byte_offset;
227 bufaddr = (char *) BUFFERADDR + byte_offset;
256 if (size > ((num_sect << sector_size_bits) - byte_offset))
257 size = (num_sect << sector_size_bits) - byte_offset;
265 int length = buf_geom.sector_size - byte_offset;
268 (*disk_read_func) (sector_num++, byte_offset, length);
286 byte_offset
294 devread(int sector, int byte_offset, int byte_len, char *buf) argument
[all...]
/external/chromium_org/content/child/npapi/
H A Dplugin_stream.cc197 int byte_offset = 0; local
202 while (byte_offset < length) {
203 int bytes_remaining = length - byte_offset;
209 return byte_offset;
213 const_cast<char*>(buf + byte_offset));
221 return byte_offset;
228 byte_offset += bytes_consumed;
/external/chromium_org/third_party/mesa/src/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;
H A Dlp_texture.c1320 uint byte_offset = tile_offset * TILE_SIZE * TILE_SIZE * 4; local
1328 lp_tiled_to_linear(tile - byte_offset, linear_image,
1362 uint byte_offset = tile_offset * TILE_SIZE * TILE_SIZE * 4; local
1370 lp_linear_to_tiled(linear_image, tile - byte_offset,
/external/jpeg/
H A Djdphuff.c712 unsigned int byte_offset = bitstream_offset >> LOG_TWO_BIT_BUF_SIZE; local
716 jset_input_stream_position_bit(cinfo, byte_offset,
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
/external/kernel-headers/original/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;
H A Dlp_texture.c1320 uint byte_offset = tile_offset * TILE_SIZE * TILE_SIZE * 4; local
1328 lp_tiled_to_linear(tile - byte_offset, linear_image,
1362 uint byte_offset = tile_offset * TILE_SIZE * TILE_SIZE * 4; local
1370 lp_linear_to_tiled(linear_image, tile - byte_offset,
/external/qemu/distrib/jpeg-6b/
H A Djdphuff.c716 unsigned int byte_offset = bitstream_offset >> LOG_TWO_BIT_BUF_SIZE; local
720 jset_input_stream_position_bit(cinfo, byte_offset,
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
/external/libffi/src/x86/
H A Dffi64.c135 size_t byte_offset)
148 if (byte_offset + type->size <= 4)
154 if (byte_offset == 0)
186 byte_offset = ALIGN (byte_offset, (*ptr)->alignment);
188 num = classify_argument (*ptr, subclasses, byte_offset % 8);
193 int pos = byte_offset / 8;
198 byte_offset += (*ptr)->size;
134 classify_argument(ffi_type *type, enum x86_64_reg_class classes[], size_t byte_offset) argument
/external/v8/src/ia32/
H A Dregexp-macro-assembler-ia32.cc219 int byte_offset = cp_offset * char_size(); local
222 __ cmp(edi, Immediate(-(byte_offset + byte_length)));
237 __ cmpb(Operand(esi, edi, times_1, byte_offset),
243 Operand(esi, edi, times_1, byte_offset));
257 __ cmp(Operand(ebx, byte_offset + i), Immediate(combined_chars));
260 __ cmpb(Operand(ebx, byte_offset + i),
267 __ cmp(Operand(ebx, byte_offset + i * sizeof(uc16)),
277 Operand(ebx, byte_offset + i * sizeof(uc16)));
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
H A Dbrw_vs_emit.c1174 GLuint byte_offset = arg.nr * 32 + arg.subnr + offset * reg_size; local
1188 brw_ADD(p, brw_address_reg(0), acc, brw_imm_uw(byte_offset));
1191 brw_ADD(p, brw_address_reg(1), acc, brw_imm_uw(byte_offset));
1212 GLuint byte_offset = base.nr * 32 + base.subnr; local
1226 brw_ADD(p, brw_address_reg(0), acc, brw_imm_uw(byte_offset));
1231 brw_imm_uw(byte_offset + reg_size / 2));
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_vs_emit.c1174 GLuint byte_offset = arg.nr * 32 + arg.subnr + offset * reg_size; local
1188 brw_ADD(p, brw_address_reg(0), acc, brw_imm_uw(byte_offset));
1191 brw_ADD(p, brw_address_reg(1), acc, brw_imm_uw(byte_offset));
1212 GLuint byte_offset = base.nr * 32 + base.subnr; local
1226 brw_ADD(p, brw_address_reg(0), acc, brw_imm_uw(byte_offset));
1231 brw_imm_uw(byte_offset + reg_size / 2));
/external/bluetooth/bluedroid/stack/hcic/
H A Dhcicmds.c3096 int byte_offset = i / 8; local
3098 channels[byte_offset] &= ~(1 << bit_offset);

Completed in 3413 milliseconds

12