Searched defs:skip_count (Results 1 - 25 of 31) 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.cc207 int skip_count, void* stack[kMaxStackDepth]) {
209 stack, kMaxStackDepth, kStripFrames + skip_count + 1);
206 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/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.cc116 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/
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/gpu/command_buffer/client/
H A Dcmd_buffer_helper.h135 void Noop(uint32 skip_count) { argument
137 (skip_count - 1) * sizeof(CommandBufferEntry));
139 cmd->Init(skip_count);
/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/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, 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)) {
151 GenStringOpcode(RuleType rule_type, StringMatchOptions match_opts, uint16 parameter, int state, bool last_call, int* skip_count, std::wstring* 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.h181 void SetHeader(uint32 skip_count) { argument
182 GPU_DCHECK_GT(skip_count, 0u);
183 header.Init(kCmdId, skip_count);
186 void Init(uint32 skip_count) { argument
187 SetHeader(skip_count);
190 static void* Set(void* cmd, uint32 skip_count) { argument
191 static_cast<ValueType*>(cmd)->Init(skip_count);
193 cmd, skip_count * sizeof(CommandBufferEntry)); // NOLINT
/external/chromium_org/ui/base/dragdrop/
H A Dos_exchange_data_provider_win.cc67 HRESULT __stdcall Skip(ULONG skip_count);
147 STDMETHODIMP FormatEtcEnumerator::Skip(ULONG skip_count) { argument
148 cursor_ += skip_count;
/external/chromium/sdch/open-vcdiff/src/gtest/
H A Dgtest.cc632 // the gtest_stack_trace_depth flag. The skip_count parameter
639 String UnitTestImpl::CurrentOsStackTraceExceptTop(int skip_count) { argument
640 (void)skip_count;
2829 // skip_count - the number of top frames to be skipped; doesn't count
/external/chromium/testing/gtest/src/
H A Dgtest.cc752 // the gtest_stack_trace_depth flag. The skip_count parameter
759 String UnitTestImpl::CurrentOsStackTraceExceptTop(int skip_count) { argument
760 (void)skip_count;
3530 // skip_count - the number of top frames to be skipped; doesn't count
4511 // the gtest_stack_trace_depth flag. The skip_count parameter
4519 int skip_count) {
4520 // We pass skip_count + 1 to skip this wrapper function in addition
4522 return GetUnitTestImpl()->CurrentOsStackTraceExceptTop(skip_count + 1);
4518 GetCurrentOsStackTraceExceptTop(UnitTest* , int skip_count) argument
/external/chromium_org/testing/gtest/src/
H A Dgtest.cc750 // the gtest_stack_trace_depth flag. The skip_count parameter
757 std::string UnitTestImpl::CurrentOsStackTraceExceptTop(int skip_count) { argument
758 (void)skip_count;
3463 // skip_count - the number of top frames to be skipped; doesn't count
3467 int /* skip_count */)
4451 // the gtest_stack_trace_depth flag. The skip_count parameter
4459 int skip_count) {
4460 // We pass skip_count + 1 to skip this wrapper function in addition
4462 return GetUnitTestImpl()->CurrentOsStackTraceExceptTop(skip_count + 1);
4458 GetCurrentOsStackTraceExceptTop(UnitTest* , int skip_count) argument
/external/chromium_org/third_party/mesa/src/src/gtest/src/
H A Dgtest.cc752 // the gtest_stack_trace_depth flag. The skip_count parameter
759 String UnitTestImpl::CurrentOsStackTraceExceptTop(int skip_count) { argument
760 (void)skip_count;
3530 // skip_count - the number of top frames to be skipped; doesn't count
4511 // the gtest_stack_trace_depth flag. The skip_count parameter
4519 int skip_count) {
4520 // We pass skip_count + 1 to skip this wrapper function in addition
4522 return GetUnitTestImpl()->CurrentOsStackTraceExceptTop(skip_count + 1);
4518 GetCurrentOsStackTraceExceptTop(UnitTest* , int skip_count) argument

Completed in 492 milliseconds

12