HomeSort by relevance Sort by last modified time
    Searched refs:skip_count (Results 1 - 25 of 79) sorted by null

1 2 3 4

  /external/chromium_org/third_party/tcmalloc/chromium/src/gperftools/
stacktrace.h 49 // Skips the most recent "skip_count" stack frames (also skips the
81 int skip_count);
88 int skip_count, const void *uc);
107 int skip_count);
114 int skip_count, const void *uc);
heap-profiler.h 88 * 1. May optionally skip the first |skip_count| items on the stack.
92 typedef int (*StackGeneratorFunction)(int skip_count, void** stack);
  /external/chromium_org/third_party/tcmalloc/chromium/src/
stacktrace_with_context.cc 37 // 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);
stacktrace_generic-inl.h 60 // int skip_count: how many stack pointers to skip before storing in result
68 skip_count++; // we want to skip the current frame as well
69 int result_count = size - skip_count;
75 result[i] = stack[i + skip_count];
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
stacktrace.cc 64 GetStackTrace(void **result, int max_depth, int skip_count)
73 GetStackFrames(void **result, int *sizes, int max_depth, int skip_count)
83 int skip_count, const void *ucp)
93 int skip_count, const void *ucp)
stacktrace_win32-inl.h 74 int skip_count) {
79 return (int)RtlCaptureStackBackTrace_fn(skip_count + 2, max_depth,
86 int /* skip_count */) {
stacktrace_libunwind-inl.h 74 // int skip_count: how many stack pointers to skip before storing in result
93 skip_count++; // Do not include current frame
95 while (skip_count--) {
stacktrace_powerpc-inl.h 93 // int skip_count: how many stack pointers to skip before storing in result
118 // Note we do *not* increment skip_count here for the SYSV ABI. If
124 skip_count++;
136 if (skip_count > 0) {
137 skip_count--;
stacktrace_arm-inl.h 102 // int skip_count: how many stack pointers to skip before storing in result
127 if (skip_count > 0) {
128 skip_count--;
  /external/chromium_org/third_party/tcmalloc/vendor/src/gperftools/
stacktrace.h 49 // Skips the most recent "skip_count" stack frames (also skips the
81 int skip_count);
88 int skip_count, const void *uc);
107 int skip_count);
114 int skip_count, const void *uc);
  /external/jemalloc/test/
test.sh.in 20 skip_count=0
23 if [ $pass_count -ne 0 -o $skip_count -ne 0 -o $fail_count != 0 ] ; then
34 skip_count=$((skip_count+1))
45 total_count=`expr ${pass_count} + ${skip_count} + ${fail_count}`
47 echo "Test suite summary: pass: ${pass_count}/${total_count}, skip: ${skip_count}/${total_count}, fail: ${fail_count}/${total_count}"
  /external/chromium_org/third_party/tcmalloc/vendor/src/
stacktrace_generic-inl.h 60 // int skip_count: how many stack pointers to skip before storing in result
68 skip_count++; // we want to skip the current frame as well
69 int result_count = size - skip_count;
75 result[i] = stack[i + skip_count];
stacktrace.cc 64 GetStackTrace(void **result, int max_depth, int skip_count)
73 GetStackFrames(void **result, int *sizes, int max_depth, int skip_count)
83 int skip_count, const void *ucp)
93 int skip_count, const void *ucp)
stacktrace_win32-inl.h 74 int skip_count) {
79 return (int)RtlCaptureStackBackTrace_fn(skip_count + 2, max_depth,
86 int /* skip_count */) {
stacktrace_libunwind-inl.h 74 // int skip_count: how many stack pointers to skip before storing in result
93 skip_count++; // Do not include current frame
95 while (skip_count--) {
stacktrace_powerpc-inl.h 93 // int skip_count: how many stack pointers to skip before storing in result
118 // Note we do *not* increment skip_count here for the SYSV ABI. If
124 skip_count++;
136 if (skip_count > 0) {
137 skip_count--;
stacktrace_arm-inl.h 102 // int skip_count: how many stack pointers to skip before storing in result
127 if (skip_count > 0) {
128 skip_count--;
  /external/chromium_org/third_party/sfntly/cpp/src/sfntly/port/
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;
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;
  /external/sfntly/cpp/src/sfntly/port/
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;
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;
  /external/chromium_org/chrome/browser/
custom_home_pages_table_model.cc 118 size_t skip_count = 0; local
120 if (skip_count < index_list.size() && index_list[skip_count] == i)
121 skip_count++;
123 entries_[i - skip_count] = entries_[i];
128 insert_before -= skip_count;
131 skip_count = 0;
133 if (skip_count < index_list.size() &&
134 index_list[index_list.size() - skip_count - 1] == i) {
135 skip_count++
    [all...]
  /external/chromium_org/base/win/
enum_variant.cc 58 STDMETHODIMP EnumVariant::Skip(ULONG skip_count) {
59 unsigned long count = skip_count;
64 return (count == skip_count ? S_OK : S_FALSE);
enum_variant.h 37 STDMETHODIMP Skip(ULONG skip_count);

Completed in 927 milliseconds

1 2 3 4