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

1 2 3 4 5 6 7 8 9

  /external/elfutils/libelf/
elf_getaroff.c 52 return elf->start_offset - sizeof (struct ar_hdr) - parent->start_offset;
elf_getbase.c 43 return elf == NULL ? (off_t) -1 : elf->start_offset;
elf_readall.c 55 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;
elf_rand.c 50 elf->state.ar.offset = elf->start_offset + offset;
elf_rawfile.c 63 result = (char *) elf->map_address + elf->start_offset;
  /external/libchrome/base/process/
process_info_linux.cc 22 TimeDelta start_offset = internal::ClockTicksToTimeDelta(start_ticks);
26 return Time(boot_time + start_offset);
  /external/v8/src/
objects-body-descriptors.h 39 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_size
    [all...]
  /external/sfntly/cpp/src/sfntly/table/bitmap/
bitmap_glyph_info.h 39 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
bitmap_glyph_info.cc 23 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();
  /system/core/libunwindstack/
Symbols.cpp 45 if (addr < info->start_offset) {
64 CHECK(addr >= info->start_offset && addr <= info->end_offset);
65 *func_offset = addr - info->start_offset;
83 uint64_t start_offset = entry.st_value; local
85 start_offset += load_bias;
87 uint64_t end_offset = start_offset + entry.st_size;
90 symbols_.emplace_back(start_offset, end_offset, str_offset_ + entry.st_name);
93 if (addr >= start_offset && addr < end_offset) {
94 *func_offset = addr - start_offset;
106 [](const Info& a, const Info& b) { return a.start_offset < b.start_offset; })
    [all...]
Symbols.h 32 Info(uint64_t start_offset, uint64_t end_offset, uint64_t str_offset)
33 : start_offset(start_offset), end_offset(end_offset), str_offset(str_offset) {}
34 uint64_t start_offset; member in struct:unwindstack::Symbols::Info
  /system/update_engine/
test_http_server.cc 78 off_t start_offset{0};
128 request->start_offset = atoll(range.c_str() + strlen("bytes="));
135 (intmax_t)request->start_offset);
182 ssize_t WriteHeaders(int fd, const off_t start_offset, const off_t end_offset,
196 const off_t content_length = end_offset - start_offset;;
200 if (start_offset || start_offset == end_offset) {
204 Itoa(start_offset == end_offset ? 0 : start_offset) +
224 size_t WritePayload(int fd, const off_t start_offset, const off_t end_offset
298 const size_t start_offset = request.start_offset; local
314 << start_offset << "), generating error response"; local
471 const off_t start_offset = request.start_offset; local
    [all...]
  /external/harfbuzz_ng/src/
hb-ot-glyf-table.hh 131 unsigned int start_offset, end_offset; local
135 start_offset = 2 * offsets[glyph];
141 start_offset = offsets[glyph];
145 if (start_offset > end_offset || end_offset > glyf_len)
148 if (end_offset - start_offset < GlyphHeader::static_size)
151 const GlyphHeader &glyph_header = StructAtOffset<GlyphHeader> (glyf_table, start_offset);
hb-ot-var-fvar-table.hh 125 inline unsigned int get_axis_infos (unsigned int start_offset,
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);
hb-ot-layout-jstf-table.hh 152 inline unsigned int get_lang_sys_tags (unsigned int start_offset,
155 { return langSys.get_tags (start_offset, lang_sys_count, lang_sys_tags); }
203 inline unsigned int get_script_tags (unsigned int start_offset,
206 { return scriptList.get_tags (start_offset, script_count, script_tags); }
hb-ot-layout.h 77 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,
hb-ot-math.cc 167 * @start_offset: offset of the first variant to retrieve
168 * @variants_count: maximum number of variants to retrieve after start_offset
185 unsigned int start_offset,
191 start_offset,
223 * @start_offset: offset of the first glyph part to retrieve
224 * @parts_count: maximum number of glyph parts to retrieve after start_offset
242 unsigned int start_offset,
249 start_offset,
  /external/linux-kselftest/tools/testing/selftests/vm/
mlock-random-test.c 158 * - choose start_offset randomly but p+start_offset+lock_size
163 int start_offset = rand() % (alloc_size - lock_size); local
166 ret = mlock(p + start_offset, lock_size);
168 ret = mlock2_(p + start_offset, lock_size,
175 p + start_offset, lock_size);
235 int start_offset = rand() % (alloc_size - lock_size); local
238 ret = mlock(p + start_offset, lock_size);
240 ret = mlock2_(p + start_offset, lock_size,
246 p + start_offset, lock_size)
    [all...]
  /external/pdfium/core/fpdftext/
cpdf_linkextract_unittest.cpp 84 int32_t start_offset = DEFAULT_VALUE; local
86 EXPECT_FALSE(extractor.CheckWebLink(&text_str, &start_offset, &count))
88 EXPECT_EQ(DEFAULT_VALUE, start_offset) << input;
97 const int32_t start_offset; member in struct:ValidCase
179 int32_t start_offset = DEFAULT_VALUE; local
181 EXPECT_TRUE(extractor.CheckWebLink(&text_str, &start_offset, &count))
184 EXPECT_EQ(valid_cases[i].start_offset, start_offset) << input;
  /art/libdexfile/dex/
dex_file_layout.h 85 void CombineSection(uint32_t start_offset, uint32_t end_offset) {
86 DCHECK_LE(start_offset, end_offset);
88 start_offset_ = start_offset;
91 start_offset_ = std::min(start_offset_, start_offset);
  /external/tensorflow/tensorflow/python/lib/io/
py_record_reader.h 39 static PyRecordReader* New(const string& filename, uint64 start_offset,
  /external/elfutils/libdwfl/
image-header.c 60 __libdw_image_header (int fd, off_t *start_offset,
70 *start_offset + H_START);
95 *start_offset += offset;
  /external/pcre/dist2/src/
pcre2_substitute.c 176 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++
    [all...]
pcre2demo.c 329 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/elfutils/libdw/
dwarf_ranges.c 123 Dwarf_Word start_offset;
126 &readendp, &start_offset)) == NULL)
129 offset = start_offset;
130 assert ((Dwarf_Word) offset == start_offset);

Completed in 404 milliseconds

1 2 3 4 5 6 7 8 9