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

1 2

  /external/grub/stage2/
defs.h 42 #define btodb(byte_offset) ((byte_offset) >> 9)
disk_io.c 140 rawread (int drive, int sector, int byte_offset, int byte_len, char *buf)
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 = 0
    [all...]
fsys_iso9660.c 69 iso9660_devread (int sector, int byte_offset, int byte_len, char *buf)
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);
shared.h 923 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);
  /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...]
  /external/e2fsprogs/ext2ed/
blockbitmap_com.c 177 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;
inodebitmap_com.c 137 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;
  /development/ndk/sources/android/libportable/arch-mips/
mmap.c 92 void *WRAP(mmap)(void *addr, size_t size, int prot, int flags, int fd, long byte_offset)
99 ALOGV("%s(addr:%p, size:%d, prot:0x%x, flags:0x%x, fd:%d, byte_offset:0x%lx) {", __func__,
100 addr, size, prot, flags, fd, byte_offset);
105 ret_addr = REAL(mmap)(addr, size, native_prot, native_flags, fd, byte_offset);
  /external/skia/legacy/src/images/
SkJpegUtility.cpp 21 static boolean sk_seek_input_data(j_decompress_ptr cinfo, long byte_offset) {
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/skia/src/images/
SkJpegUtility.cpp 21 static boolean sk_seek_input_data(j_decompress_ptr cinfo, long byte_offset) {
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/
ffi64.c 135 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;
  /bionic/libc/kernel/common/sound/
compress_offload.h 39 __u32 byte_offset; member in struct:snd_compr_tstamp
  /external/kernel-headers/original/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/v8/src/x64/
regexp-macro-assembler-x64.cc 235 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 + i * sizeof(uc16)))
    [all...]
  /external/jpeg/
jdhuff.c 579 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);
jdphuff.c 712 unsigned int byte_offset = bitstream_offset >> LOG_TWO_BIT_BUF_SIZE; local
716 jset_input_stream_position_bit(cinfo, byte_offset,
jpegint.h 416 int byte_offset, int bit_left, INT32 buf));
jpeglib.h 642 // |--- byte_offset ---|- bit_left -|
    [all...]
  /external/qemu/distrib/jpeg-6b/
jdhuff.c 579 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);
jdphuff.c 716 unsigned int byte_offset = bitstream_offset >> LOG_TWO_BIT_BUF_SIZE; local
720 jset_input_stream_position_bit(cinfo, byte_offset,
jpegint.h 416 int byte_offset, int bit_left, INT32 buf));
jpeglib.h 642 // |--- byte_offset ---|- bit_left -|
    [all...]
  /external/v8/src/ia32/
regexp-macro-assembler-ia32.cc 219 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)));
    [all...]
  /external/v8/src/arm/
regexp-macro-assembler-arm.cc 249 int byte_offset = cp_offset * char_size();
250 __ add(r0, r0, Operand(byte_offset));
    [all...]
  /external/v8/src/mips/
regexp-macro-assembler-mips.cc 248 int byte_offset = cp_offset * char_size();
249 __ Addu(a0, a0, Operand(byte_offset));
    [all...]

Completed in 1059 milliseconds

1 2