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

1 2 3 4

  /external/ltp/tools/pounder21/src/time_tests/
drift-test.py 61 start_offset = string.atof(line[-2]); variable
80 delta_offset = now_offset - start_offset
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_state_batch.c 94 uint32_t start_offset = brw->state_batch_list[i].offset; local
95 uint32_t end_offset = start_offset + brw->state_batch_list[i].size;
97 start_offset);
intel_asm_annotation.c 38 int start_offset = annotation[i].offset; local
66 brw_disassemble(devinfo, assembly, start_offset, end_offset, stderr);
  /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;
  /hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/parser/include/
viddec_pm_utils_list.h 28 int32_t start_offset; /* starting offset of unused data including sc prefix in first buffer */ member in struct:__anon47343
  /system/core/libunwindstack/
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
ElfInterfaceArm.h 82 uint64_t start_offset() { return start_offset_; } function in class:unwindstack::ElfInterfaceArm
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...]
  /system/core/libunwindstack/tests/
SymbolsTest.cpp 334 uint64_t start_offset = 0x1000; local
336 Symbols symbols(start_offset, 4 * sizeof(TypeParam), sizeof(TypeParam), str_offset, 0x1000);
343 this->memory_.SetMemory(start_offset, &sym, sizeof(sym));
346 start_offset += sizeof(sym);
353 this->memory_.SetMemory(start_offset, &sym, sizeof(sym));
356 start_offset += sizeof(sym);
361 this->memory_.SetMemory(start_offset, &sym, sizeof(sym));
364 start_offset += sizeof(sym);
371 this->memory_.SetMemory(start_offset, &sym, sizeof(sym));
  /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
ebdt_table.cc 135 int start_offset = Offset::kHeaderLength; local
149 start_offset + glyph_offset, size, builder->format());
153 start_offset += glyph_offset;
  /art/runtime/gc/accounting/
card_table_test.cc 112 size_t start_offset = 0; local
114 start_offset = (start_offset + kObjectAlignment) % CardTable::kCardSize;
118 uint8_t* start = cstart + start_offset;
  /external/pcre/dist2/src/
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/webp/src/dsp/
filters.c 50 const size_t start_offset = row * stride; local
53 in += start_offset;
54 out += start_offset;
87 const size_t start_offset = row * stride; local
90 in += start_offset;
91 out += start_offset;
132 const size_t start_offset = row * stride; local
135 in += start_offset;
136 out += start_offset;
filters_mips_dsp_r2.c 201 const size_t start_offset = row * stride; local
204 in += start_offset;
205 out += start_offset;
249 const size_t start_offset = row * stride; local
252 in += start_offset;
253 out += start_offset;
317 const size_t start_offset = row * stride; local
320 in += start_offset;
321 out += 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;
  /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);
  /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...]
  /art/dexlayout/
compact_dex_writer.cc 42 const uint32_t start_offset = stream->Tell(); local
105 return stream->Tell() - start_offset;
  /external/aac/libDRCdec/src/
drcGainDec_process.cpp 158 int start_modulo, start_offset; local
170 start_offset = (start_modulo ? stepsize - start_modulo : 0);
171 /* n_buf = (start + timePrev + start_offset)/stepsize; */
172 n_buf = (start + timePrev + start_offset) >> (15 - fixnormz_S(stepsize));
176 /* runs = ceil((stop - start - start_offset)/stepsize). This works for
178 INT runs = (INT)(stop - start - start_offset + stepsize - 1) >>
184 n = start + start_offset;
  /external/libunwind/src/ia64/
Gtables.c 40 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/gallium/drivers/etnaviv/
etnaviv_state.c 556 unsigned start_offset = 0; /* start of current consecutive stretch */ local
565 start_offset = elements[idx].src_offset;
588 VIVS_FE_VERTEX_ELEMENT_CONFIG_END(end_offset - start_offset);
  /external/v8/src/heap/
remembered-set.h 65 uintptr_t start_offset = start - chunk->address(); local
67 DCHECK_LT(start_offset, end_offset);
69 slot_set->RemoveRange(static_cast<int>(start_offset),
73 // Compute slot set indicies for the range [start_offset, end_offset).
74 int start_chunk = static_cast<int>(start_offset / Page::kPageSize);
77 static_cast<int>(start_offset % Page::kPageSize);
86 // Clear all slots from start_offset to the end of first chunk.
  /external/v8/src/regexp/arm64/
regexp-macro-assembler-arm64.h 101 int start_offset,
177 Register start_offset() { return w27; } function in class:v8::internal::RegExpMacroAssemblerARM64
  /external/v8/src/regexp/
regexp-macro-assembler.cc 232 int start_offset = previous_index; local
233 int char_length = subject_ptr->length() - start_offset;
256 StringCharacterPosition(subject_ptr, start_offset + slice_offset);
261 start_offset,
274 int start_offset,
286 isolate, code->entry(), input, start_offset, input_start, input_end,

Completed in 2219 milliseconds

1 2 3 4