Home
last modified time | relevance | path

Searched refs:skip_count (Results 1 – 25 of 51) sorted by relevance

123

/external/jemalloc/test/
Dtest.sh.in20 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/deqp-deps/SPIRV-Tools/source/fuzz/
Dfuzzer_pass_split_blocks.cpp69 std::map<SpvOp, uint32_t> skip_count; in Apply() local
80 skip_count.clear(); in Apply()
84 base, opcode, skip_count.count(opcode) ? skip_count.at(opcode) : 0)); in Apply()
86 skip_count[opcode] = in Apply()
87 skip_count.count(opcode) ? skip_count.at(opcode) + 1 : 1; in Apply()
Dinstruction_descriptor.cpp74 uint32_t skip_count = 0; // The number of these opcodes we have skipped when in MakeInstructionDescriptor() local
85 skip_count); in MakeInstructionDescriptor()
91 skip_count++; in MakeInstructionDescriptor()
101 return MakeInstructionDescriptor(block.id(), opcode, skip_count); in MakeInstructionDescriptor()
Dfuzzer_pass.cpp123 std::map<SpvOp, uint32_t> skip_count; in ForEachInstructionWithInstructionDescriptor() local
134 skip_count.clear(); in ForEachInstructionWithInstructionDescriptor()
142 skip_count.count(opcode) ? skip_count.at(opcode) : 0)); in ForEachInstructionWithInstructionDescriptor()
145 skip_count[opcode] = in ForEachInstructionWithInstructionDescriptor()
146 skip_count.count(opcode) ? skip_count.at(opcode) + 1 : 1; in ForEachInstructionWithInstructionDescriptor()
/external/swiftshader/third_party/SPIRV-Tools/source/fuzz/
Dfuzzer_pass_split_blocks.cpp68 std::map<SpvOp, uint32_t> skip_count; in Apply() local
79 skip_count.clear(); in Apply()
83 base, opcode, skip_count.count(opcode) ? skip_count.at(opcode) : 0)); in Apply()
85 skip_count[opcode] = in Apply()
86 skip_count.count(opcode) ? skip_count.at(opcode) + 1 : 1; in Apply()
Dinstruction_descriptor.cpp74 uint32_t skip_count = 0; // The number of these opcodes we have skipped when in MakeInstructionDescriptor() local
85 skip_count); in MakeInstructionDescriptor()
91 skip_count++; in MakeInstructionDescriptor()
101 return MakeInstructionDescriptor(block.id(), opcode, skip_count); in MakeInstructionDescriptor()
Dfuzzer_pass.cpp119 std::map<SpvOp, uint32_t> skip_count; in MaybeAddTransformationBeforeEachInstruction() local
130 skip_count.clear(); in MaybeAddTransformationBeforeEachInstruction()
139 skip_count.count(opcode) ? skip_count.at(opcode) : 0)); in MaybeAddTransformationBeforeEachInstruction()
142 skip_count[opcode] = in MaybeAddTransformationBeforeEachInstruction()
143 skip_count.count(opcode) ? skip_count.at(opcode) + 1 : 1; in MaybeAddTransformationBeforeEachInstruction()
/external/angle/third_party/spirv-tools/src/source/fuzz/
Dfuzzer_pass_split_blocks.cpp69 std::map<SpvOp, uint32_t> skip_count; in Apply() local
80 skip_count.clear(); in Apply()
84 base, opcode, skip_count.count(opcode) ? skip_count.at(opcode) : 0)); in Apply()
86 skip_count[opcode] = in Apply()
87 skip_count.count(opcode) ? skip_count.at(opcode) + 1 : 1; in Apply()
Dinstruction_descriptor.cpp74 uint32_t skip_count = 0; // The number of these opcodes we have skipped when in MakeInstructionDescriptor() local
85 skip_count); in MakeInstructionDescriptor()
91 skip_count++; in MakeInstructionDescriptor()
101 return MakeInstructionDescriptor(block.id(), opcode, skip_count); in MakeInstructionDescriptor()
Dfuzzer_pass.cpp123 std::map<SpvOp, uint32_t> skip_count; in ForEachInstructionWithInstructionDescriptor() local
134 skip_count.clear(); in ForEachInstructionWithInstructionDescriptor()
142 skip_count.count(opcode) ? skip_count.at(opcode) : 0)); in ForEachInstructionWithInstructionDescriptor()
145 skip_count[opcode] = in ForEachInstructionWithInstructionDescriptor()
146 skip_count.count(opcode) ? skip_count.at(opcode) + 1 : 1; in ForEachInstructionWithInstructionDescriptor()
/external/jemalloc_new/test/
Dtest.sh.in32 skip_count=0
35 if [ $pass_count -ne 0 -o $skip_count -ne 0 -o $fail_count != 0 ] ; then
60 skip_count=$((skip_count+1))
72 total_count=`expr ${pass_count} + ${skip_count} + ${fail_count}`
74 echo "Test suite summary: pass: ${pass_count}/${total_count}, skip: ${skip_count}/${total_count}, f…
/external/sfntly/cpp/src/sfntly/port/
Dfile_input_stream.cc121 int64_t skip_count = 0; in Skip() local
123 skip_count = std::max<int64_t>(0 - (int64_t)position_, n); in Skip()
124 position_ -= (size_t)(0 - skip_count); in Skip()
127 skip_count = std::min<size_t>(length_ - position_, (size_t)n); in Skip()
128 position_ += (size_t)skip_count; in Skip()
129 fseek(file_, (size_t)skip_count, SEEK_CUR); in Skip()
131 return skip_count; in Skip()
Dmemory_input_stream.cc115 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()
120 skip_count = std::min<size_t>(length_ - position_, (size_t)n); in Skip()
121 position_ += (size_t)skip_count; in Skip()
123 return skip_count; in Skip()
/external/tensorflow/tensorflow/core/lib/random/
Dphilox_random_test.cc50 constexpr int skip_count = 2048; in TEST() local
56 gen.Skip(skip_count / 4); in TEST()
60 std::vector<uint32> v2(count + skip_count); in TEST()
67 ASSERT_EQ(v1[i], v2[i + skip_count]); in TEST()
/external/pdfium/core/fpdfapi/parser/
Dcpdf_document.cpp247 uint32_t* skip_count, in FindPageIndex() argument
255 if (*skip_count) in FindPageIndex()
256 (*skip_count)--; in FindPageIndex()
270 if (count <= *skip_count) { in FindPageIndex()
271 (*skip_count) -= count; in FindPageIndex()
289 int found_index = FindPageIndex(pKid, skip_count, objnum, index, level + 1); in FindPageIndex()
298 uint32_t skip_count = 0; in GetPageIndex() local
305 skip_count = i; in GetPageIndex()
314 int found_index = FindPageIndex(pPages, &skip_count, objnum, &start_index, 0); in GetPageIndex()
/external/perfetto/src/base/
Ddebug_crash_stack_trace.cc86 skip_count(1) {} in StackCrawlState()
91 size_t skip_count; member
98 if (ip != 0 && state->skip_count) { in TraceStackFrame()
99 state->skip_count--; in TraceStackFrame()
/external/libusb/tests/
Dtestlib.c172 int skip_count = 0; in libusb_testlib_run_tests() local
264 case TEST_STATUS_SKIP: skip_count++; break; in libusb_testlib_run_tests()
273 libusb_testlib_logf(&ctx, "Skipped %d tests", skip_count); in libusb_testlib_run_tests()
/external/tensorflow/tensorflow/core/platform/windows/
Dstacktrace.h37 void CreateCurrent(int skip_count) {} in CreateCurrent() argument
/external/u-boot/tools/
Dproftool.c495 int missing_count = 0, skip_count = 0; in make_ftrace() local
519 skip_count++; in make_ftrace()
530 skip_count); in make_ftrace()
/external/tensorflow/tensorflow/core/platform/default/
Dstacktrace.h85 void CreateCurrent(int skip_count) {} in CreateCurrent() argument
/external/googletest/googlemock/test/
Dgmock-internal-utils_test.cc439 std::string CurrentStackTrace(int max_depth, int skip_count) override { in CurrentStackTrace()
440 return (testing::Message() << max_depth << "::" << skip_count << "\n") in CurrentStackTrace()
464 int skip_count = atoi(log.substr(expected_message.size()).c_str()); in TEST() local
477 EXPECT_THAT(skip_count, in TEST()
/external/mesa3d/src/gallium/auxiliary/driver_ddebug/
Ddd_screen.c638 dscreen->skip_count = debug_get_num_option("GALLIUM_DDEBUG_SKIP", 0); in ddebug_screen_create()
639 if (dscreen->skip_count > 0) { in ddebug_screen_create()
641 dscreen->skip_count); in ddebug_screen_create()
/external/google-breakpad/src/testing/gtest/src/
Dgtest-internal-inl.h427 virtual String CurrentStackTrace(int max_depth, int skip_count) = 0;
443 virtual String CurrentStackTrace(int max_depth, int skip_count)
623 String CurrentOsStackTraceExceptTop(int skip_count) GTEST_NO_INLINE_;
/external/llvm/utils/unittest/googletest/src/
Dgtest-internal-inl.h423 virtual String CurrentStackTrace(int max_depth, int skip_count) = 0;
438 String CurrentStackTrace(int max_depth, int skip_count) override;
612 String CurrentOsStackTraceExceptTop(int skip_count);
/external/swiftshader/third_party/llvm-7.0/llvm/utils/unittest/googletest/src/
Dgtest-internal-inl.h429 virtual string CurrentStackTrace(int max_depth, int skip_count) = 0;
449 virtual string CurrentStackTrace(int max_depth, int skip_count);
621 std::string CurrentOsStackTraceExceptTop(int skip_count) GTEST_NO_INLINE_;

123