HomeSort by relevance Sort by last modified time
    Searched defs:skip_count (Results 1 - 7 of 7) 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/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 116 size_t skip_count = 0; local
118 if (skip_count < index_list.size() && index_list[skip_count] == i)
119 skip_count++;
121 entries_[i - skip_count] = entries_[i];
126 insert_before -= skip_count;
129 skip_count = 0;
131 if (skip_count < index_list.size() &&
132 index_list[index_list.size() - skip_count - 1] == i) {
133 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, std::wstring* 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/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);

Completed in 269 milliseconds