HomeSort by relevance Sort by last modified time
    Searched defs:skip_count (Results 1 - 11 of 11) sorted by null

  /external/chromium_org/third_party/tcmalloc/chromium/src/
stacktrace_android-inl.h 57 int skip_count; member in struct:stack_crawl_state_t
60 stack_crawl_state_t(uintptr_t* frames, int max_depth, int skip_count)
64 skip_count(skip_count),
88 if (state->skip_count) {
89 --state->skip_count;
114 // int skip_count: how many stack pointers to skip before storing in result
118 reinterpret_cast<uintptr_t*>(result), max_depth, skip_count); variable
  /external/chromium_org/third_party/sfntly/cpp/src/sfntly/port/
file_input_stream.cc 117 int64_t skip_count = 0; local
119 skip_count = std::max<int64_t>(0 - (int64_t)position_, n);
120 position_ -= (size_t)(0 - skip_count);
123 skip_count = std::min<size_t>(length_ - position_, (size_t)n);
124 position_ += (size_t)skip_count;
125 fseek(file_, (size_t)skip_count, SEEK_CUR);
127 return skip_count;
memory_input_stream.cc 111 int64_t skip_count = 0; local
113 skip_count = std::max<int64_t>(0 - (int64_t)position_, n);
114 position_ -= (size_t)(0 - skip_count);
116 skip_count = std::min<size_t>(length_ - position_, (size_t)n);
117 position_ += (size_t)skip_count;
119 return skip_count;
  /external/sfntly/cpp/src/sfntly/port/
file_input_stream.cc 115 int64_t skip_count = 0; local
117 skip_count = std::max<int64_t>(0 - (int64_t)position_, n);
118 position_ -= (size_t)(0 - skip_count);
121 skip_count = std::min<size_t>(length_ - position_, (size_t)n);
122 position_ += (size_t)skip_count;
123 fseek(file_, (size_t)skip_count, SEEK_CUR);
125 return skip_count;
memory_input_stream.cc 109 int64_t skip_count = 0; local
111 skip_count = std::max<int64_t>(0 - (int64_t)position_, n);
112 position_ -= (size_t)(0 - skip_count);
114 skip_count = std::min<size_t>(length_ - position_, (size_t)n);
115 position_ += (size_t)skip_count;
117 return skip_count;
  /external/chromium_org/chrome/browser/
custom_home_pages_table_model.cc 117 size_t skip_count = 0; local
119 if (skip_count < index_list.size() && index_list[skip_count] == i)
120 skip_count++;
122 entries_[i - skip_count] = entries_[i];
127 insert_before -= skip_count;
130 skip_count = 0;
132 if (skip_count < index_list.size() &&
133 index_list[index_list.size() - skip_count - 1] == i) {
134 skip_count++
    [all...]
  /external/chromium_org/chrome/browser/history/
typed_url_syncable_service.cc 340 int skip_count = 0; local
365 skip_count = typed_count - kMaxTypedUrlVisits;
367 skip_count = total - kMaxTypedUrlVisits;
383 if (skip_count > 0) {
387 --skip_count;
394 DCHECK_EQ(skip_count, 0);
  /external/chromium_org/sandbox/win/src/
policy_low_level.cc 148 // opcode. The skip_count is the currently accumulated number of '?' seen so
154 int* skip_count, base::string16* fragment) {
200 *skip_count, match_opts, options);
201 *skip_count = 0;
228 int skip_count = 0; // counts how many '?' we have seen in a row. local
239 state, false, &skip_count, &fragment)) {
251 state, false, &skip_count, &fragment)) {
254 ++skip_count;
271 state, true, &skip_count, &fragment)) {
  /external/pdfium/core/src/fpdfapi/fpdf_parser/
fpdf_parser_document.cpp 175 int CPDF_Document::_FindPageIndex(CPDF_Dictionary* pNode, FX_DWORD& skip_count, FX_DWORD objnum, int& index, int level)
186 if (count <= skip_count) {
187 skip_count -= count;
210 int found_index = _FindPageIndex(pKid, skip_count, objnum, index, level + 1);
219 if (skip_count) {
220 skip_count--;
229 FX_DWORD skip_count = 0; local
237 skip_count = i;
250 return _FindPageIndex(pPages, skip_count, objnum, index);
  /external/chromium_org/chrome/browser/sync/glue/
typed_url_model_associator.cc 699 int skip_count = 0; local
724 skip_count = typed_count - kMaxTypedUrlVisits;
726 skip_count = total - kMaxTypedUrlVisits;
743 if (skip_count > 0) {
747 --skip_count;
754 DCHECK_EQ(skip_count, 0);
  /hardware/intel/img/psb_video/src/mrst/
psb_MPEG2MC.c 849 uint32_t skip_count = 0; local
    [all...]

Completed in 1537 milliseconds