/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/deqp-deps/SPIRV-Tools/source/fuzz/ |
D | fuzzer_pass_split_blocks.cpp | 69 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()
|
D | instruction_descriptor.cpp | 74 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()
|
D | fuzzer_pass.cpp | 123 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/ |
D | fuzzer_pass_split_blocks.cpp | 68 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()
|
D | instruction_descriptor.cpp | 74 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()
|
D | fuzzer_pass.cpp | 119 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/ |
D | fuzzer_pass_split_blocks.cpp | 69 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()
|
D | instruction_descriptor.cpp | 74 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()
|
D | fuzzer_pass.cpp | 123 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/ |
D | test.sh.in | 32 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/ |
D | file_input_stream.cc | 121 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()
|
D | memory_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() 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/ |
D | philox_random_test.cc | 50 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/ |
D | cpdf_document.cpp | 247 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/ |
D | debug_crash_stack_trace.cc | 86 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/ |
D | testlib.c | 172 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/ |
D | stacktrace.h | 37 void CreateCurrent(int skip_count) {} in CreateCurrent() argument
|
/external/u-boot/tools/ |
D | proftool.c | 495 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/ |
D | stacktrace.h | 85 void CreateCurrent(int skip_count) {} in CreateCurrent() argument
|
/external/googletest/googlemock/test/ |
D | gmock-internal-utils_test.cc | 439 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/ |
D | dd_screen.c | 638 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/ |
D | gtest-internal-inl.h | 427 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/ |
D | gtest-internal-inl.h | 423 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/ |
D | gtest-internal-inl.h | 429 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_;
|