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

/external/grub/stage2/
H A Ddefs.h42 #define btodb(byte_offset) ((byte_offset) >> 9)
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...]
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 Dshared.h923 int rawread (int drive, int sector, int byte_offset, int byte_len, char *buf);
924 int devread (int sector, int byte_offset, int byte_len, char *buf);
/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/skia/src/images/
H A DSkJpegUtility.cpp21 static boolean sk_seek_input_data(j_decompress_ptr cinfo, long byte_offset) { argument
24 if (byte_offset > src->current_offset) {
25 (void)src->fStream->skip(byte_offset - src->current_offset);
28 (void)src->fStream->skip(byte_offset);
31 src->current_offset = byte_offset;
/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/x64/
H A Dregexp-macro-assembler-x64.cc235 int byte_offset = cp_offset * char_size();
238 __ cmpl(rdi, Immediate(-(byte_offset + byte_length)));
253 __ cmpb(Operand(rsi, rdi, times_1, byte_offset),
259 Operand(rsi, rdi, times_1, byte_offset));
278 __ cmpq(rax, Operand(rbx, byte_offset + i));
286 __ cmpl(Operand(rbx, byte_offset + i), Immediate(combined_chars));
289 __ cmpb(Operand(rbx, byte_offset + i),
299 Operand(rsi, rdi, times_1, byte_offset + i * sizeof(uc16)));
303 __ cmpl(Operand(rsi, rdi, times_1, byte_offset + i * sizeof(uc16)),
308 Operand(rsi, rdi, times_1, byte_offset
[all...]
H A Dmacro-assembler-x64.cc2309 int byte_offset = bits / kBitsPerByte;
2311 testb(Operand(src, byte_offset), Immediate(1 << bit_in_byte));
/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
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 Djpegint.h416 int byte_offset, int bit_left, INT32 buf));
H A Djpeglib.h642 // |--- byte_offset ---|- bit_left -|
797 JMETHOD(boolean, seek_input_data, (j_decompress_ptr cinfo, long byte_offset));
/external/qemu/distrib/jpeg-6b/
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
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 Djpegint.h416 int byte_offset, int bit_left, INT32 buf));
H A Djpeglib.h642 // |--- byte_offset ---|- bit_left -|
797 JMETHOD(boolean, seek_input_data, (j_decompress_ptr cinfo, long byte_offset));
/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/v8/src/arm/
H A Dregexp-macro-assembler-arm.cc249 int byte_offset = cp_offset * char_size();
250 __ add(r0, r0, Operand(byte_offset));
/external/v8/src/mips/
H A Dregexp-macro-assembler-mips.cc248 int byte_offset = cp_offset * char_size();
249 __ Addu(a0, a0, Operand(byte_offset));
/external/libnfc-nxp/src/
H A DphFriNfc_TopazDynamicMap.c194 #define TOPAZ_BYTE_ADR_FROM_BLK(block_no, byte_offset) \
195 (((block_no) * TOPAZ_BYTES_PER_BLOCK) + (byte_offset))
/external/v8/src/
H A Dobjects-inl.h966 Object** HeapObject::RawField(HeapObject* obj, int byte_offset) { argument
967 return &READ_FIELD(obj, byte_offset);

Completed in 351 milliseconds