Searched defs:skip_count (Results 1 - 25 of 32) sorted by relevance

12

/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Dstacktrace_with_context.cc37 // Inlining causes skip_count to be incorrect, and there
52 int skip_count, const void * /* uc */) {
53 return GetStackFrames(pcs, sizes, max_depth, skip_count + 1);
58 int skip_count, const void * /* uc */) {
59 return GetStackTrace(result, max_depth, skip_count + 1);
51 GetStackFramesWithContext(void** pcs, int* sizes, int max_depth, int skip_count, const void * ) argument
57 GetStackTraceWithContext(void** result, int max_depth, int skip_count, const void * ) argument
H A Dstacktrace_win32-inl.h74 int skip_count) {
79 return (int)RtlCaptureStackBackTrace_fn(skip_count + 2, max_depth,
86 int /* skip_count */) {
73 GetStackTrace(void** result, int max_depth, int skip_count) argument
H A Dstacktrace_android-inl.h57 int skip_count; member in struct:stack_crawl_state_t
60 stack_crawl_state_t(uintptr_t* frames, int max_depth, int skip_count) argument
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
H A Dheap-profiler.cc379 static void RecordAlloc(const void* ptr, size_t bytes, int skip_count) { argument
382 int depth = stack_generator_function(skip_count + 1, stack);
H A Dheap-profile-table.cc210 int skip_count, void* stack[kMaxStackDepth]) {
212 stack, kMaxStackDepth, kStripFrames + skip_count + 1);
209 GetCallerStackTrace( int skip_count, void* stack[kMaxStackDepth]) argument
H A Dmalloc_hook.cc641 // into the implementations for GetStackTrace instead of the skip_count.
643 int skip_count) {
651 return GetStackTrace(result, max_depth, skip_count + int(DEBUG_MODE));
661 // max passed/needed skip_count is 6
642 MallocHook_GetCallerStackTrace(void** result, int max_depth, int skip_count) argument
/external/chromium_org/third_party/tcmalloc/vendor/src/
H A Dstacktrace_win32-inl.h74 int skip_count) {
79 return (int)RtlCaptureStackBackTrace_fn(skip_count + 2, max_depth,
86 int /* skip_count */) {
73 GetStackTrace(void** result, int max_depth, int skip_count) argument
H A Dheap-profile-table.cc219 int skip_count, void* stack[kMaxStackDepth]) {
221 stack, kMaxStackDepth, kStripFrames + skip_count + 1);
218 GetCallerStackTrace( int skip_count, void* stack[kMaxStackDepth]) argument
H A Dheap-profiler.cc300 static void RecordAlloc(const void* ptr, size_t bytes, int skip_count) { argument
303 int depth = HeapProfileTable::GetCallerStackTrace(skip_count + 1, stack);
H A Dmalloc_hook.cc641 // into the implementations for GetStackTrace instead of the skip_count.
643 int skip_count) {
651 return GetStackTrace(result, max_depth, skip_count + int(DEBUG_MODE));
661 // max passed/needed skip_count is 6
642 MallocHook_GetCallerStackTrace(void** result, int max_depth, int skip_count) argument
/external/chromium_org/third_party/sfntly/cpp/src/sfntly/port/
H A Dfile_input_stream.cc117 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;
H A Dmemory_input_stream.cc111 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/
H A Dfile_input_stream.cc115 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;
H A Dmemory_input_stream.cc109 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/
H A Dcustom_home_pages_table_model.cc117 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/
H A Dtyped_url_syncable_service.cc340 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/third_party/tcmalloc/chromium/src/gperftools/
H A Dmalloc_hook.h257 // Use "skip_count" (similarly to GetStackTrace from stacktrace.h)
261 int skip_count) {
262 return MallocHook_GetCallerStackTrace(result, max_depth, skip_count);
260 GetCallerStackTrace(void** result, int max_depth, int skip_count) argument
/external/chromium_org/third_party/tcmalloc/vendor/src/gperftools/
H A Dmalloc_hook.h257 // Use "skip_count" (similarly to GetStackTrace from stacktrace.h)
261 int skip_count) {
262 return MallocHook_GetCallerStackTrace(result, max_depth, skip_count);
260 GetCallerStackTrace(void** result, int max_depth, int skip_count) argument
/external/pdfium/core/src/fpdfapi/fpdf_parser/
H A Dfpdf_parser_document.cpp175 int CPDF_Document::_FindPageIndex(CPDF_Dictionary* pNode, FX_DWORD& skip_count, FX_DWORD objnum, int& index, int level) argument
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/gpu/command_buffer/client/
H A Dcmd_buffer_helper.h190 void Noop(uint32 skip_count) { argument
192 (skip_count - 1) * sizeof(CommandBufferEntry));
194 cmd->Init(skip_count);
/external/chromium_org/sandbox/win/src/
H A Dpolicy_low_level.cc148 // 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)) {
151 GenStringOpcode(RuleType rule_type, StringMatchOptions match_opts, uint16 parameter, int state, bool last_call, int* skip_count, base::string16* fragment) argument
/external/chromium_org/chrome/browser/sync/glue/
H A Dtyped_url_model_associator.cc699 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);
/external/chromium_org/gpu/command_buffer/common/
H A Dcmd_buffer_common.h188 void SetHeader(uint32_t skip_count) { argument
189 DCHECK_GT(skip_count, 0u);
190 header.Init(kCmdId, skip_count);
193 void Init(uint32_t skip_count) { argument
194 SetHeader(skip_count);
197 static void* Set(void* cmd, uint32_t skip_count) { argument
198 static_cast<ValueType*>(cmd)->Init(skip_count);
200 cmd, skip_count * sizeof(CommandBufferEntry)); // NOLINT
/external/chromium_org/ui/base/dragdrop/
H A Dos_exchange_data_provider_win.cc75 HRESULT __stdcall Skip(ULONG skip_count);
155 STDMETHODIMP FormatEtcEnumerator::Skip(ULONG skip_count) { argument
156 cursor_ += skip_count;
/external/chromium_org/testing/gtest/src/
H A Dgtest.cc771 // the gtest_stack_trace_depth flag. The skip_count parameter
778 std::string UnitTestImpl::CurrentOsStackTraceExceptTop(int skip_count) { argument
779 (void)skip_count;
3792 // skip_count - the number of top frames to be skipped; doesn't count
3796 int /* skip_count */)
4904 // the gtest_stack_trace_depth flag. The skip_count parameter
4912 int skip_count) {
4913 // We pass skip_count + 1 to skip this wrapper function in addition
4915 return GetUnitTestImpl()->CurrentOsStackTraceExceptTop(skip_count + 1);
4911 GetCurrentOsStackTraceExceptTop(UnitTest* , int skip_count) argument

Completed in 531 milliseconds

12