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

1 2

  /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/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/pdfium/core/src/fpdfapi/fpdf_parser/
fpdf_parser_document.cpp 176 int CPDF_Document::_FindPageIndex(CPDF_Dictionary* pNode, FX_DWORD& skip_count, FX_DWORD objnum, int& index, int level)
187 if (count <= skip_count) {
188 skip_count -= count;
211 int found_index = _FindPageIndex(pKid, skip_count, objnum, index, level + 1);
220 if (skip_count) {
221 skip_count--;
230 FX_DWORD skip_count = 0; local
238 skip_count = i;
251 return _FindPageIndex(pPages, skip_count, objnum, index);
  /hardware/intel/img/psb_video/src/mrst/
psb_MPEG2MC.c 849 uint32_t skip_count = 0; local
    [all...]
  /external/google-breakpad/src/testing/gtest/src/
gtest-internal-inl.h 425 // skip_count - the number of top frames to be skipped; doesn't count
427 virtual String CurrentStackTrace(int max_depth, int skip_count) = 0;
443 virtual String CurrentStackTrace(int max_depth, int skip_count)
616 // the gtest_stack_trace_depth flag. The skip_count parameter
623 String CurrentOsStackTraceExceptTop(int skip_count) GTEST_NO_INLINE_;
    [all...]
gtest.cc 753 // the gtest_stack_trace_depth flag. The skip_count parameter
760 String UnitTestImpl::CurrentOsStackTraceExceptTop(int skip_count) {
761 (void)skip_count;
    [all...]
  /external/gtest/src/
gtest-internal-inl.h 426 // skip_count - the number of top frames to be skipped; doesn't count
428 virtual string CurrentStackTrace(int max_depth, int skip_count) = 0;
444 virtual string CurrentStackTrace(int max_depth, int skip_count)
623 // the gtest_stack_trace_depth flag. The skip_count parameter
630 std::string CurrentOsStackTraceExceptTop(int skip_count) GTEST_NO_INLINE_;
    [all...]
gtest.cc 767 // the gtest_stack_trace_depth flag. The skip_count parameter
774 std::string UnitTestImpl::CurrentOsStackTraceExceptTop(int skip_count) {
775 (void)skip_count;
    [all...]
  /external/llvm/utils/unittest/googletest/src/
gtest-internal-inl.h 417 // skip_count - the number of top frames to be skipped; doesn't count
419 virtual String CurrentStackTrace(int max_depth, int skip_count) = 0;
434 String CurrentStackTrace(int max_depth, int skip_count) override;
601 // the gtest_stack_trace_depth flag. The skip_count parameter
608 String CurrentOsStackTraceExceptTop(int skip_count);
    [all...]
gtest.cc 752 // the gtest_stack_trace_depth flag. The skip_count parameter
759 String UnitTestImpl::CurrentOsStackTraceExceptTop(int skip_count) {
760 (void)skip_count;
    [all...]
  /external/mesa3d/src/gtest/src/
gtest-internal-inl.h 418 // skip_count - the number of top frames to be skipped; doesn't count
420 virtual String CurrentStackTrace(int max_depth, int skip_count) = 0;
435 virtual String CurrentStackTrace(int max_depth, int skip_count);
602 // the gtest_stack_trace_depth flag. The skip_count parameter
609 String CurrentOsStackTraceExceptTop(int skip_count);
    [all...]
gtest.cc 752 // the gtest_stack_trace_depth flag. The skip_count parameter
759 String UnitTestImpl::CurrentOsStackTraceExceptTop(int skip_count) {
760 (void)skip_count;
    [all...]
  /external/protobuf/gtest/src/
gtest-internal-inl.h 486 // skip_count - the number of top frames to be skipped; doesn't count
488 virtual String CurrentStackTrace(int max_depth, int skip_count) = 0;
503 virtual String CurrentStackTrace(int max_depth, int skip_count);
670 // the gtest_stack_trace_depth flag. The skip_count parameter
677 String CurrentOsStackTraceExceptTop(int skip_count);
    [all...]
gtest.cc 730 // the gtest_stack_trace_depth flag. The skip_count parameter
737 String UnitTestImpl::CurrentOsStackTraceExceptTop(int skip_count) {
738 (void)skip_count;
    [all...]
  /ndk/sources/third_party/googletest/googletest/src/
gtest-internal-inl.h 426 // skip_count - the number of top frames to be skipped; doesn't count
428 virtual string CurrentStackTrace(int max_depth, int skip_count) = 0;
444 virtual string CurrentStackTrace(int max_depth, int skip_count)
617 // the gtest_stack_trace_depth flag. The skip_count parameter
624 std::string CurrentOsStackTraceExceptTop(int skip_count) GTEST_NO_INLINE_;
    [all...]
gtest.cc 752 // the gtest_stack_trace_depth flag. The skip_count parameter
759 std::string UnitTestImpl::CurrentOsStackTraceExceptTop(int skip_count) {
760 (void)skip_count;
    [all...]
  /external/protobuf/gtest/include/gtest/internal/
gtest-internal.h 746 // the gtest_stack_trace_depth flag. The skip_count parameter
754 int skip_count);
    [all...]
  /external/google-breakpad/src/testing/gtest/include/gtest/internal/
gtest-internal.h 717 // the gtest_stack_trace_depth flag. The skip_count parameter
725 int skip_count);
    [all...]
  /external/gtest/include/gtest/internal/
gtest-internal.h 643 // the gtest_stack_trace_depth flag. The skip_count parameter
651 UnitTest* unit_test, int skip_count);
    [all...]
  /external/llvm/utils/unittest/googletest/include/gtest/internal/
gtest-internal.h 746 // the gtest_stack_trace_depth flag. The skip_count parameter
754 int skip_count);
    [all...]
  /external/mesa3d/src/gtest/include/gtest/internal/
gtest-internal.h 717 // the gtest_stack_trace_depth flag. The skip_count parameter
725 int skip_count);
    [all...]
  /ndk/sources/third_party/googletest/googletest/include/gtest/internal/
gtest-internal.h 632 // the gtest_stack_trace_depth flag. The skip_count parameter
640 UnitTest* unit_test, int skip_count);
    [all...]
  /external/protobuf/gtest/fused-src/gtest/
gtest-all.cc     [all...]
  /external/pdfium/core/include/fpdfapi/
fpdf_parser.h 178 int _FindPageIndex(CPDF_Dictionary* pNode, FX_DWORD& skip_count, FX_DWORD objnum, int& index, int level = 0);

Completed in 4085 milliseconds

1 2