/external/chromium_org/third_party/tcmalloc/chromium/src/ |
D | stacktrace_android-inl.h | 57 int skip_count; member 60 stack_crawl_state_t(uintptr_t* frames, int max_depth, int skip_count) in stack_crawl_state_t() 64 skip_count(skip_count), in stack_crawl_state_t() 88 if (state->skip_count) { in tracer() 89 --state->skip_count; in tracer() 118 reinterpret_cast<uintptr_t*>(result), max_depth, skip_count);
|
D | stacktrace_with_context.cc | 52 int skip_count, const void * /* uc */) { in GetStackFramesWithContext() argument 53 return GetStackFrames(pcs, sizes, max_depth, skip_count + 1); in GetStackFramesWithContext() 58 int skip_count, const void * /* uc */) { in GetStackTraceWithContext() argument 59 return GetStackTrace(result, max_depth, skip_count + 1); in GetStackTraceWithContext()
|
D | 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)
|
D | stacktrace_generic-inl.h | 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];
|
D | stacktrace_powerpc-inl.h | 124 skip_count++; 136 if (skip_count > 0) { 137 skip_count--;
|
D | stacktrace_win32-inl.h | 74 int skip_count) { in GetStackTrace() argument 79 return (int)RtlCaptureStackBackTrace_fn(skip_count + 2, max_depth, in GetStackTrace()
|
D | stacktrace_libunwind-inl.h | 93 skip_count++; // Do not include current frame 95 while (skip_count--) {
|
/external/jemalloc/test/ |
D | 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}, f…
|
/external/chromium_org/chrome/browser/ |
D | custom_home_pages_table_model.cc | 118 size_t skip_count = 0; in MoveURLs() local 120 if (skip_count < index_list.size() && index_list[skip_count] == i) in MoveURLs() 121 skip_count++; in MoveURLs() 123 entries_[i - skip_count] = entries_[i]; in MoveURLs() 128 insert_before -= skip_count; in MoveURLs() 131 skip_count = 0; in MoveURLs() 133 if (skip_count < index_list.size() && in MoveURLs() 134 index_list[index_list.size() - skip_count - 1] == i) { in MoveURLs() 135 skip_count++; in MoveURLs() 137 entries_[i + skip_count] = entries_[i]; in MoveURLs()
|
/external/chromium_org/third_party/tcmalloc/vendor/src/gperftools/ |
D | stacktrace.h | 81 int skip_count); 88 int skip_count, const void *uc); 107 int skip_count); 114 int skip_count, const void *uc);
|
/external/chromium_org/third_party/tcmalloc/chromium/src/gperftools/ |
D | stacktrace.h | 81 int skip_count); 88 int skip_count, const void *uc); 107 int skip_count); 114 int skip_count, const void *uc);
|
/external/sfntly/cpp/src/sfntly/port/ |
D | file_input_stream.cc | 115 int64_t skip_count = 0; in Skip() local 117 skip_count = std::max<int64_t>(0 - (int64_t)position_, n); in Skip() 118 position_ -= (size_t)(0 - skip_count); in Skip() 121 skip_count = std::min<size_t>(length_ - position_, (size_t)n); in Skip() 122 position_ += (size_t)skip_count; in Skip() 123 fseek(file_, (size_t)skip_count, SEEK_CUR); in Skip() 125 return skip_count; in Skip()
|
D | memory_input_stream.cc | 109 int64_t skip_count = 0; in Skip() local 111 skip_count = std::max<int64_t>(0 - (int64_t)position_, n); in Skip() 112 position_ -= (size_t)(0 - skip_count); in Skip() 114 skip_count = std::min<size_t>(length_ - position_, (size_t)n); in Skip() 115 position_ += (size_t)skip_count; in Skip() 117 return skip_count; in Skip()
|
/external/chromium_org/third_party/sfntly/cpp/src/sfntly/port/ |
D | file_input_stream.cc | 117 int64_t skip_count = 0; in Skip() local 119 skip_count = std::max<int64_t>(0 - (int64_t)position_, n); in Skip() 120 position_ -= (size_t)(0 - skip_count); in Skip() 123 skip_count = std::min<size_t>(length_ - position_, (size_t)n); in Skip() 124 position_ += (size_t)skip_count; in Skip() 125 fseek(file_, (size_t)skip_count, SEEK_CUR); in Skip() 127 return skip_count; in Skip()
|
D | memory_input_stream.cc | 111 int64_t skip_count = 0; in Skip() local 113 skip_count = std::max<int64_t>(0 - (int64_t)position_, n); in Skip() 114 position_ -= (size_t)(0 - skip_count); in Skip() 116 skip_count = std::min<size_t>(length_ - position_, (size_t)n); in Skip() 117 position_ += (size_t)skip_count; in Skip() 119 return skip_count; in Skip()
|
/external/chromium_org/third_party/tcmalloc/vendor/src/ |
D | 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)
|
D | stacktrace_generic-inl.h | 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];
|
D | stacktrace_powerpc-inl.h | 124 skip_count++; 136 if (skip_count > 0) { 137 skip_count--;
|
D | stacktrace_win32-inl.h | 74 int skip_count) { in GetStackTrace() argument 79 return (int)RtlCaptureStackBackTrace_fn(skip_count + 2, max_depth, in GetStackTrace()
|
D | stacktrace_libunwind-inl.h | 93 skip_count++; // Do not include current frame 95 while (skip_count--) {
|
/external/chromium_org/sandbox/win/src/ |
D | policy_low_level.cc | 154 int* skip_count, base::string16* fragment) { in GenStringOpcode() argument 200 *skip_count, match_opts, options); in GenStringOpcode() 201 *skip_count = 0; in GenStringOpcode() 228 int skip_count = 0; // counts how many '?' we have seen in a row. in AddStringMatch() local 239 state, false, &skip_count, &fragment)) { in AddStringMatch() 251 state, false, &skip_count, &fragment)) { in AddStringMatch() 254 ++skip_count; in AddStringMatch() 271 state, true, &skip_count, &fragment)) { in AddStringMatch()
|
/external/pdfium/core/src/fpdfapi/fpdf_parser/ |
D | fpdf_parser_document.cpp | 175 int CPDF_Document::_FindPageIndex(CPDF_Dictionary* pNode, FX_DWORD& skip_count, FX_DWORD objnum, in… in _FindPageIndex() argument 186 if (count <= skip_count) { in _FindPageIndex() 187 skip_count -= count; in _FindPageIndex() 210 int found_index = _FindPageIndex(pKid, skip_count, objnum, index, level + 1); in _FindPageIndex() 219 if (skip_count) { in _FindPageIndex() 220 skip_count--; in _FindPageIndex() 229 FX_DWORD skip_count = 0; in GetPageIndex() local 237 skip_count = i; in GetPageIndex() 250 return _FindPageIndex(pPages, skip_count, objnum, index); in GetPageIndex()
|
/external/chromium_org/base/win/ |
D | enum_variant.cc | 58 STDMETHODIMP EnumVariant::Skip(ULONG skip_count) { in Skip() argument 59 unsigned long count = skip_count; in Skip() 64 return (count == skip_count ? S_OK : S_FALSE); in Skip()
|
/external/chromium_org/gpu/command_buffer/common/ |
D | cmd_buffer_common.h | 188 void SetHeader(uint32_t skip_count) { in SetHeader() 189 DCHECK_GT(skip_count, 0u); in SetHeader() 190 header.Init(kCmdId, skip_count); in SetHeader() 193 void Init(uint32_t skip_count) { in Init() 194 SetHeader(skip_count); in Init() 197 static void* Set(void* cmd, uint32_t skip_count) { in Set() 198 static_cast<ValueType*>(cmd)->Init(skip_count); in Set() 200 cmd, skip_count * sizeof(CommandBufferEntry)); // NOLINT in Set()
|
/external/chromium_org/chrome/browser/history/ |
D | typed_url_syncable_service.cc | 340 int skip_count = 0; in WriteToTypedUrlSpecifics() local 365 skip_count = typed_count - kMaxTypedUrlVisits; in WriteToTypedUrlSpecifics() 367 skip_count = total - kMaxTypedUrlVisits; in WriteToTypedUrlSpecifics() 383 if (skip_count > 0) { in WriteToTypedUrlSpecifics() 387 --skip_count; in WriteToTypedUrlSpecifics() 394 DCHECK_EQ(skip_count, 0); in WriteToTypedUrlSpecifics()
|