HomeSort by relevance Sort by last modified time
    Searched refs:start_offset (Results 26 - 50 of 142) sorted by null

12 3 4 5 6

  /external/elfutils/src/libelf/
elf32_updatefile.c 133 (*fctp) ((char *) elf->map_address + elf->start_offset, ehdr,
136 else if (elf->map_address + elf->start_offset != ehdr)
137 memcpy (elf->map_address + elf->start_offset, ehdr,
164 memset (elf->map_address + elf->start_offset + ehdr->e_ehsize,
179 (*fctp) (elf->map_address + elf->start_offset + ehdr->e_phoff,
184 memcpy (elf->map_address + elf->start_offset + ehdr->e_phoff,
197 char *last_position = ((char *) elf->map_address + elf->start_offset
210 char *const shdr_start = ((char *) elf->map_address + elf->start_offset
235 assert ((char *) elf->map_address + elf->start_offset
238 < ((char *) elf->map_address + elf->start_offset
    [all...]
elf_clone.c 56 retval = allocate_elf (elf->fildes, elf->map_address, elf->start_offset,
elf_getdata_rawchunk.c 84 rawchunk = elf->map_address + elf->start_offset + offset;
98 elf->start_offset + offset)
elf32_getshdr.c 98 + elf->start_offset + ehdr->e_shoff);
119 + elf->start_offset + ehdr->e_shoff);
124 + elf->start_offset + ehdr->e_shoff),
163 elf->start_offset + ehdr->e_shoff);
elf_getarsym.c 115 sizeof (struct ar_hdr), elf->start_offset + SARMAG)
136 + elf->start_offset + SARMAG);
170 size_t off = elf->start_offset + SARMAG + sizeof (struct ar_hdr);
common.h 83 result->start_offset = offset;
elf32_getphdr.c 110 + elf->start_offset + ehdr->e_phoff);
184 elf->start_offset + ehdr->e_phoff);
  /hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/parser/
viddec_pm_tags.c 94 if((list->start_offset!= 0) && !ignore_partial)
133 if(!ignore_first && (list->start_offset == 0))
223 if(first_slice && (list->start_offset == 0))
256 if(list->start_offset == 0)
261 /* Skip first item always, for start_offset=0 its already been handled above*/
290 if(cxt->list.start_offset == 0)
  /external/sfntly/cpp/src/sfntly/data/
readable_font_data.cc 170 int32_t start_offset,
180 int32_t location_start = ReadUShort(start_index + location * start_offset);
202 int32_t start_offset,
210 int32_t location_start = ReadUShort(start_index + location * start_offset);
225 int32_t start_offset,
236 + location * start_offset);
  /external/v8/src/
regexp-macro-assembler.cc 90 int start_offset = previous_index; local
91 int char_length = subject_ptr->length() - start_offset;
111 StringCharacterPosition(subject_ptr, start_offset + slice_offset);
116 start_offset,
129 int start_offset,
142 start_offset,
  /external/toybox/toys/pending/
fdisk.c 59 sector_t start_offset; member in struct:part_entry
215 first[i] = swap_le32toh(px->start4) + pe->start_offset;
259 partitions[num_parts].start_offset = offset;
305 pe->start_offset = 0;
472 start_sec = swap_le32toh(p->start4) + partitions[i].start_offset;
528 partitions[i].start_offset = 0;
612 new_start = partitions[i + 1].start_offset + swap_le32toh(q->start4) - extended_offset;
671 offset = pe->start_offset;
884 if (start < pe->start_offset && limit >= pe->start_offset) limit = pe->start_offset - 1
    [all...]
  /external/harfbuzz_ng/src/
hb-ot-layout.cc 149 unsigned int start_offset,
153 return _get_gdef (face).get_attach_points (glyph, start_offset, point_count, point_array);
160 unsigned int start_offset,
164 return _get_gdef (font->face).get_lig_carets (font, direction, glyph, start_offset, caret_count, caret_array);
187 unsigned int start_offset,
193 return g.get_script_tags (start_offset, script_count, script_tags);
279 unsigned int start_offset,
285 return g.get_feature_tags (start_offset, feature_count, feature_tags);
293 unsigned int start_offset,
299 return s.get_lang_sys_tags (start_offset, language_count, language_tags)
    [all...]
  /art/compiler/dex/
mir_graph.cc 186 DCHECK_GT(code_offset, orig_block->start_offset);
203 bottom_block->start_offset = code_offset;
269 DCHECK_EQ(insn->offset, bottom_block->start_offset);
305 if ((bb != nullptr) && (bb->start_offset == code_offset)) {
349 bb->start_offset = code_offset;
350 (*dex_pc_to_block_map)[bb->start_offset] = bb->id;
367 DexOffset start_offset = pTry->start_addr_; local
368 DexOffset end_offset = start_offset + pTry->insn_count_;
369 for (offset = start_offset; offset < end_offset; offset++) {
618 IsBadMonitorExitCatch(insn->offset, catch_block->start_offset)) {
    [all...]
  /external/pcre/dist/
pcretest.c 253 #define PCRE_DFA_EXEC8(count, re, extra, bptr, len, start_offset, options, \
255 count = pcre_dfa_exec(re, extra, (char *)bptr, len, start_offset, options, \
258 #define PCRE_EXEC8(count, re, extra, bptr, len, start_offset, options, \
260 count = pcre_exec(re, extra, (char *)bptr, len, start_offset, options, \
343 #define PCRE_DFA_EXEC16(count, re, extra, bptr, len, start_offset, options, \
346 (PCRE_SPTR16)bptr, len, start_offset, options, offsets, size_offsets, \
349 #define PCRE_EXEC16(count, re, extra, bptr, len, start_offset, options, \
352 len, start_offset, options, offsets, size_offsets)
435 #define PCRE_DFA_EXEC32(count, re, extra, bptr, len, start_offset, options, \
438 (PCRE_SPTR32)bptr, len, start_offset, options, offsets, size_offsets,
4489 int start_offset = 0; local
    [all...]
  /external/elfutils/src/libdwfl/
open.c 56 const off64_t offset = (*elf)->start_offset;
135 off64_t offset = elf->start_offset;
  /bionic/tools/relocation_packer/src/
delta_encoder.cc 46 ElfAddr start_offset = relocations.size() > 1 ? local
50 packed->push_back(start_offset);
54 ElfAddr previous_offset = start_offset;
  /device/asus/deb/
releasetools.py 113 # unsigned int start_offset;
133 magic, num_images, start_offset, bootloader_size = struct.unpack(
146 p = start_offset
151 assert p - start_offset == bootloader_size, "bootloader.img corrupted"
  /device/asus/flo/
releasetools.py 138 # unsigned int start_offset;
158 magic, num_images, start_offset, bootloader_size = struct.unpack(
171 p = start_offset
176 assert p - start_offset == bootloader_size, "bootloader.img corrupted"
  /device/lge/hammerhead/
releasetools.py 123 # unsigned int start_offset;
148 magic, num_images, start_offset, bootloader_size = struct.unpack(
161 p = start_offset
166 assert p - start_offset == bootloader_size, "bootloader.img corrupted"
  /external/sfntly/cpp/src/sfntly/table/bitmap/
ebdt_table.cc 135 int start_offset = Offset::kHeaderLength; local
149 start_offset + glyph_offset, size, builder->format());
153 start_offset += glyph_offset;
  /external/speex/libspeex/
jitter.c 465 EXPORT int jitter_buffer_get(JitterBuffer *jitter, JitterBufferPacket *packet, spx_int32_t desired_span, spx_int32_t *start_offset)
472 if (start_offset != NULL)
473 *start_offset = 0;
614 if (start_offset != NULL)
615 *start_offset = offset;
617 speex_warning_int("jitter_buffer_get() discarding non-zero start_offset", offset);
630 if (start_offset != NULL)
631 jitter->buffered += *start_offset;
716 static int _jitter_buffer_update_delay(JitterBuffer *jitter, JitterBufferPacket *packet, spx_int32_t *start_offset)
739 EXPORT int jitter_buffer_update_delay(JitterBuffer *jitter, JitterBufferPacket *packet, spx_int32_t *start_offset)
    [all...]
  /external/v8/src/heap/
incremental-marking.cc 185 int start_offset = local
188 Min(object_size, start_offset + kProgressBarScanningChunk);
189 int already_scanned_offset = start_offset;
193 HeapObject::RawField(object, start_offset),
195 start_offset = end_offset;
198 } while (scan_until_end && start_offset < object_size);
199 chunk->set_progress_bar(start_offset);
200 if (start_offset < object_size) {
203 object_size - (start_offset - already_scanned_offset));
    [all...]
  /hardware/ti/omap4-aah/camera/
Encoder_libjpeg.cpp 433 int right_crop = 0, start_offset = 0; local
444 start_offset = input->start_offset;
502 row_src = src + start_offset;
  /hardware/ti/omap4xxx/camera/
Encoder_libjpeg.cpp 365 int right_crop = 0, start_offset = 0; local
376 start_offset = input->start_offset;
432 row_src = src + start_offset;
  /external/fio/engines/
e4defrag.c 101 long long __len = td->o.file_size_high - td->o.start_offset;
102 r = fallocate(ed->donor_fd, 0, td->o.start_offset, __len);

Completed in 740 milliseconds

12 3 4 5 6