Searched refs:start_offset (Results 1 - 25 of 117) sorted by relevance

12345

/external/elfutils/libelf/
H A Delf_getaroff.c52 return elf->start_offset - sizeof (struct ar_hdr) - parent->start_offset;
H A Delf_getbase.c43 return elf == NULL ? (off_t) -1 : elf->start_offset;
H A Delf_readall.c55 child->start_offset -= offset;
116 elf->start_offset)
134 set_address (elf, elf->start_offset);
138 elf->state.ar.offset -= elf->start_offset;
139 elf->start_offset = 0;
H A Delf_rand.c50 elf->state.ar.offset = elf->start_offset + offset;
H A Delf_rawfile.c63 result = (char *) elf->map_address + elf->start_offset;
/external/v8/src/
H A Dobjects-body-descriptors.h39 static inline void IteratePointers(HeapObject* obj, int start_offset,
44 int start_offset, int end_offset);
59 static inline void IterateBodyImpl(HeapObject* obj, int start_offset,
65 int start_offset, int end_offset);
70 // in which all pointer fields are located in the [start_offset, end_offset)
72 template <int start_offset, int end_offset, int size>
75 static const int kStartOffset = start_offset;
85 IterateBodyImpl(obj, start_offset, end_offset, v);
97 IterateBodyImpl<StaticVisitor>(heap, obj, start_offset, end_offset);
108 // in which all pointer fields are located in the [start_offset, object_siz
[all...]
/external/sfntly/cpp/src/sfntly/table/bitmap/
H A Dbitmap_glyph_info.cc23 int32_t start_offset,
29 start_offset_(start_offset),
35 int32_t start_offset,
41 start_offset_(start_offset),
65 return lhs->start_offset() > rhs->start_offset();
21 BitmapGlyphInfo(int32_t glyph_id, int32_t block_offset, int32_t start_offset, int32_t length, int32_t format) argument
34 BitmapGlyphInfo(int32_t glyph_id, int32_t start_offset, int32_t length, int32_t format) argument
H A Dbitmap_glyph_info.h39 int32_t start_offset,
50 int32_t start_offset,
57 int32_t offset() const { return block_offset() + start_offset(); }
58 int32_t start_offset() const { return start_offset_; } function in class:sfntly::BitmapGlyphInfo
/external/elfutils/libdwfl/
H A Dimage-header.c60 __libdw_image_header (int fd, off_t *start_offset, argument
70 *start_offset + H_START);
95 *start_offset += offset;
H A Dgzip.c134 open_stream (int fd, off_t start_offset, struct unzip_state *state) argument
139 if (start_offset != 0)
141 off_t off = lseek (d, start_offset, SEEK_SET);
142 if (off != start_offset)
169 unzip (int fd, off_t start_offset, argument
194 ssize_t n = pread_retry (fd, state.input_buffer, READ_SIZE, start_offset);
241 start_offset + state.input_pos);
282 Dwfl_Error result = open_stream (fd, start_offset, &state);
/external/pcre/dist2/src/
H A Dpcre2_substitute.c176 start_offset where to start in the subject string
216 PCRE2_SIZE start_offset, uint32_t options, pcre2_match_data *match_data,
290 CHECKMEMCPY(subject, start_offset);
300 rc = pcre2_match(code, subject, length, start_offset, options|goptions,
317 if (goptions == 0 || start_offset >= length) break;
324 save_start = start_offset++;
325 if (subject[start_offset-1] == CHAR_CR &&
328 start_offset < length &&
329 subject[start_offset] == CHAR_LF)
330 start_offset
215 pcre2_substitute(const pcre2_code *code, PCRE2_SPTR subject, PCRE2_SIZE length, PCRE2_SIZE start_offset, uint32_t options, pcre2_match_data *match_data, pcre2_match_context *mcontext, PCRE2_SPTR replacement, PCRE2_SIZE rlength, PCRE2_UCHAR *buffer, PCRE2_SIZE *blength) argument
[all...]
H A Dpcre2demo.c329 PCRE2_SIZE start_offset = ovector[1]; /* Start at end of previous match */ local
347 start_offset, /* starting offset in the subject */
368 ovector[1] = start_offset + 1; /* Advance one code unit */
370 start_offset < subject_length - 1 && /* we are at CRLF, */
371 subject[start_offset] == '\r' &&
372 subject[start_offset + 1] == '\n')
/external/harfbuzz_ng/src/
H A Dhb-ot-var-fvar-table.hh125 inline unsigned int get_axis_infos (unsigned int start_offset, argument
132 start_offset = MIN (start_offset, count);
134 count -= start_offset;
135 axes_array += start_offset;
141 get_axis (start_offset + i, axes_array + i);
H A Dhb-ot-layout-jstf-table.hh152 inline unsigned int get_lang_sys_tags (unsigned int start_offset, argument
155 { return langSys.get_tags (start_offset, lang_sys_count, lang_sys_tags); }
203 inline unsigned int get_script_tags (unsigned int start_offset, argument
206 { return scriptList.get_tags (start_offset, script_count, script_tags); }
H A Dhb-ot-layout.h77 unsigned int start_offset,
86 unsigned int start_offset,
103 unsigned int start_offset,
124 unsigned int start_offset,
132 unsigned int start_offset,
163 unsigned int start_offset,
172 unsigned int start_offset,
188 unsigned int start_offset,
254 unsigned int start_offset,
H A Dhb-ot-math.cc168 * @start_offset: offset of the first variant to retrieve
169 * @variants_count: maximum number of variants to retrieve after start_offset
186 unsigned int start_offset,
192 start_offset,
224 * @start_offset: offset of the first glyph part to retrieve
225 * @parts_count: maximum number of glyph parts to retrieve after start_offset
243 unsigned int start_offset,
250 start_offset,
183 hb_ot_math_get_glyph_variants(hb_font_t *font, hb_codepoint_t glyph, hb_direction_t direction, unsigned int start_offset, unsigned int *variants_count, hb_ot_math_glyph_variant_t *variants ) argument
240 hb_ot_math_get_glyph_assembly(hb_font_t *font, hb_codepoint_t glyph, hb_direction_t direction, unsigned int start_offset, unsigned int *parts_count, hb_ot_math_glyph_part_t *parts, hb_position_t *italics_correction ) argument
H A Dhb-ot-layout-gdef-table.hh50 unsigned int start_offset,
65 const USHORT *array = points.sub_array (start_offset, point_count);
217 unsigned int start_offset,
222 const OffsetTo<CaretValue> *array = carets.sub_array (start_offset, caret_count);
252 unsigned int start_offset,
264 return lig_glyph.get_lig_carets (font, direction, glyph_id, var_store, start_offset, caret_count, caret_array);
363 unsigned int start_offset,
366 { return (this+attachList).get_attach_points (glyph_id, start_offset, point_count, point_array); }
372 unsigned int start_offset,
377 start_offset, caret_coun
49 get_attach_points(hb_codepoint_t glyph_id, unsigned int start_offset, unsigned int *point_count , unsigned int *point_array ) const argument
213 get_lig_carets(hb_font_t *font, hb_direction_t direction, hb_codepoint_t glyph_id, const VariationStore &var_store, unsigned int start_offset, unsigned int *caret_count , hb_position_t *caret_array ) const argument
248 get_lig_carets(hb_font_t *font, hb_direction_t direction, hb_codepoint_t glyph_id, const VariationStore &var_store, unsigned int start_offset, unsigned int *caret_count , hb_position_t *caret_array ) const argument
362 get_attach_points(hb_codepoint_t glyph_id, unsigned int start_offset, unsigned int *point_count , unsigned int *point_array ) const argument
369 get_lig_carets(hb_font_t *font, hb_direction_t direction, hb_codepoint_t glyph_id, unsigned int start_offset, unsigned int *caret_count , hb_position_t *caret_array ) const argument
[all...]
/external/elfutils/libdw/
H A Ddwarf_ranges.c123 Dwarf_Word start_offset;
126 &readendp, &start_offset)) == NULL)
129 offset = start_offset;
130 assert ((Dwarf_Word) offset == start_offset);
/external/webp/src/dsp/
H A Dfilters.c49 const size_t start_offset = row * stride; local
52 in += start_offset;
53 out += start_offset;
86 const size_t start_offset = row * stride; local
89 in += start_offset;
90 out += start_offset;
129 const size_t start_offset = row * stride; local
132 in += start_offset;
133 out += start_offset;
H A Dfilters_mips_dsp_r2.c200 const size_t start_offset = row * stride; local
203 in += start_offset;
204 out += start_offset;
244 const size_t start_offset = row * stride; local
247 in += start_offset;
248 out += start_offset;
311 const size_t start_offset = row * stride; local
314 in += start_offset;
315 out += start_offset;
/external/ltp/tools/pounder21/src/time_tests/
H A Ddrift-test.py61 start_offset = string.atof(line[-2]); variable
80 delta_offset = now_offset - start_offset
/external/speex/include/speex/
H A Dspeex_jitter.h152 int jitter_buffer_get(JitterBuffer *jitter, JitterBufferPacket *packet, spx_int32_t desired_span, spx_int32_t *start_offset);
189 int jitter_buffer_update_delay(JitterBuffer *jitter, JitterBufferPacket *packet, spx_int32_t *start_offset);
/external/libunwind/src/ia64/
H A DGtables.c40 uint64_t start_offset; member in struct:ia64_table_entry
89 unw_word_t e_addr = 0, start_offset, end_offset, info_offset; local
99 if ((ret = remote_read (e_addr, start_offset)) < 0)
102 if (rel_ip < start_offset)
115 if (rel_ip < start_offset || rel_ip >= end_offset)
117 e->start_offset = start_offset;
143 unw_word_t start_offset, end_offset, info_offset, segbase; local
161 start_offset = e[0].start_offset;
[all...]
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_state_batch.c93 uint32_t start_offset = brw->state_batch_list[i].offset; local
94 uint32_t end_offset = start_offset + brw->state_batch_list[i].size;
96 start_offset);
/external/sfntly/cpp/src/sfntly/data/
H A Dreadable_font_data.h209 int32_t start_offset,
226 int32_t start_offset,
244 int32_t start_offset,

Completed in 541 milliseconds

12345