HomeSort by relevance Sort by last modified time
    Searched refs:thread_count (Results 76 - 100 of 124) sorted by null

1 2 34 5

  /external/llvm/utils/unittest/googletest/src/
gtest-death-test.cc 178 // caller not to pass a thread_count of 1.
179 static String DeathTestThreadWarning(size_t thread_count) {
183 if (thread_count == 0)
186 msg << "detected " << thread_count << " threads."; local
789 const size_t thread_count = GetThreadCount(); local
790 if (thread_count != 1) {
791 GTEST_LOG_(WARNING) << DeathTestThreadWarning(thread_count);
    [all...]
  /external/mesa3d/src/gtest/src/
gtest-death-test.cc 216 // caller not to pass a thread_count of 1.
217 static std::string DeathTestThreadWarning(size_t thread_count) {
221 if (thread_count == 0)
224 msg << "detected " << thread_count << " threads."; local
823 const size_t thread_count = GetThreadCount(); local
824 if (thread_count != 1) {
825 GTEST_LOG_(WARNING) << DeathTestThreadWarning(thread_count);
    [all...]
  /external/opencv/cv/src/
cvdistransform.cpp 456 int thread_count = cvGetNumThreads(); local
471 // sqr_tab: 2*m, sat_tab: 3*m + 1, d: m*thread_count,
472 pass1_sz = src->rows*(5 + thread_count) + 1;
474 // sqr_tab & inv_tab: n each; f & v: n*thread_count each; z: (n+1)*thread_count
475 pass2_sz = src->cols*(2 + thread_count*3) + thread_count;
497 #pragma omp parallel for num_threads(thread_count)
535 #pragma omp parallel for num_threads(thread_count) schedule(dynamic)
  /external/protobuf/gtest/src/
gtest-death-test.cc 169 // caller not to pass a thread_count of 1.
170 static String DeathTestThreadWarning(size_t thread_count) {
174 if (thread_count == 0)
177 msg << "detected " << thread_count << " threads."; local
739 const size_t thread_count = GetThreadCount(); local
740 if (thread_count != 1) {
741 GTEST_LOG_(WARNING) << DeathTestThreadWarning(thread_count);
    [all...]
  /external/swiftshader/third_party/LLVM/utils/unittest/googletest/
gtest-death-test.cc 178 // caller not to pass a thread_count of 1.
179 static String DeathTestThreadWarning(size_t thread_count) {
183 if (thread_count == 0)
186 msg << "detected " << thread_count << " threads."; local
787 const size_t thread_count = GetThreadCount(); local
788 if (thread_count != 1) {
789 GTEST_LOG_(WARNING) << DeathTestThreadWarning(thread_count);
    [all...]
  /external/v8/testing/gtest/src/
gtest-death-test.cc 225 // caller not to pass a thread_count of 1.
226 static std::string DeathTestThreadWarning(size_t thread_count) {
230 if (thread_count == 0)
233 msg << "detected " << thread_count << " threads."; local
832 const size_t thread_count = GetThreadCount(); local
833 if (thread_count != 1) {
834 GTEST_LOG_(WARNING) << DeathTestThreadWarning(thread_count);
    [all...]
gtest-port.cc 114 mach_msg_type_number_t thread_count; local
116 const kern_return_t status = task_threads(task, &thread_list, &thread_count);
122 sizeof(thread_t) * thread_count);
123 return static_cast<size_t>(thread_count);
    [all...]
  /external/vulkan-validation-layers/tests/gtest-1.7.0/src/
gtest-death-test.cc 216 // caller not to pass a thread_count of 1.
217 static std::string DeathTestThreadWarning(size_t thread_count) {
221 if (thread_count == 0)
224 msg << "detected " << thread_count << " threads."; local
823 const size_t thread_count = GetThreadCount(); local
824 if (thread_count != 1) {
825 GTEST_LOG_(WARNING) << DeathTestThreadWarning(thread_count);
    [all...]
gtest-port.cc 91 mach_msg_type_number_t thread_count; local
93 const kern_return_t status = task_threads(task, &thread_list, &thread_count);
99 sizeof(thread_t) * thread_count);
100 return static_cast<size_t>(thread_count);
    [all...]
  /prebuilts/ndk/r16/sources/third_party/googletest/googletest/src/
gtest-death-test.cc 216 // caller not to pass a thread_count of 1.
217 static std::string DeathTestThreadWarning(size_t thread_count) {
221 if (thread_count == 0)
224 msg << "detected " << thread_count << " threads."; local
823 const size_t thread_count = GetThreadCount(); local
824 if (thread_count != 1) {
825 GTEST_LOG_(WARNING) << DeathTestThreadWarning(thread_count);
    [all...]
  /external/google-breakpad/src/processor/
minidump.cc 1561 uint32_t thread_count; local
1619 thread_index << "\/" << thread_count; local
1626 thread_index << "\/" << thread_count; local
1634 thread_index << "\/" << thread_count; local
    [all...]
minidump_processor.cc 154 unsigned int thread_count = threads->thread_count(); local
160 thread_index < thread_count;
164 thread_index, thread_count);
    [all...]
minidump_processor_unittest.cc 81 MOCK_CONST_METHOD0(thread_count, unsigned int());
531 EXPECT_CALL(thread_list, thread_count()).
570 EXPECT_CALL(thread_list, thread_count()).WillRepeatedly(Return(0));
624 EXPECT_CALL(thread_list, thread_count()).
stackwalk_common.cc 846 int thread_count = process_state.threads()->size(); local
919 int thread_count = process_state.threads()->size(); local
    [all...]
  /external/google-breakpad/src/client/linux/minidump_writer/
minidump_writer_unittest.cc 567 for (int i = 0; i < dump_thread_list->thread_count(); i++) {
660 for (unsigned int i = 0; i < dump_thread_list->thread_count(); i++) {
728 for (unsigned int i = 0; i < dump_thread_list->thread_count(); i++) {
  /external/syslinux/com32/hdt/
hdt-menu-processor.c 95 if (hardware->dmi.processor.thread_count != 0) {
96 snprintf(buffer, sizeof buffer, "CPU Thread: %d", hardware->dmi.processor.thread_count);
98 hardware->dmi.processor.thread_count);
  /art/openjdkjvmti/
ti_stack.cc 473 jint thread_count,
480 if (thread_count < 0) {
483 if (thread_count == 0) {
534 for (jint i = 0; i != thread_count; ++i) {
596 size_t rounded_stack_info_size = art::RoundUp(sizeof(jvmtiStackInfo) * thread_count,
609 for (size_t i = 0; i < static_cast<size_t>(thread_count); ++i) {
    [all...]
  /external/googletest/googletest/src/
gtest-port.cc 119 mach_msg_type_number_t thread_count; local
121 const kern_return_t status = task_threads(task, &thread_list, &thread_count);
127 sizeof(thread_t) * thread_count);
128 return static_cast<size_t>(thread_count);
    [all...]
  /external/libvpx/libvpx/third_party/googletest/src/src/
gtest-port.cc 119 mach_msg_type_number_t thread_count; local
121 const kern_return_t status = task_threads(task, &thread_list, &thread_count);
127 sizeof(thread_t) * thread_count);
128 return static_cast<size_t>(thread_count);
    [all...]
  /frameworks/native/libs/vr/libpdx_default_transport/
pdx_benchmarks.cpp 528 int thread_count = ProgramOptions.threads; local
529 while (thread_count--) {
602 int thread_count = ProgramOptions.threads; local
603 while (thread_count--) {
    [all...]
  /prebuilts/ndk/r16/sources/third_party/vulkan/src/tests/gtest-1.7.0/src/
gtest-port.cc 91 mach_msg_type_number_t thread_count; local
93 const kern_return_t status = task_threads(task, &thread_list, &thread_count);
99 sizeof(thread_t) * thread_count);
100 return static_cast<size_t>(thread_count);
    [all...]
  /external/google-breakpad/src/client/mac/handler/
minidump_generator.cc 972 mach_msg_type_number_t thread_count; local
975 if (task_threads(crashing_task_, &threads_for_task, &thread_count))
980 non_generator_thread_count = thread_count - 1;
982 non_generator_thread_count = thread_count;
995 for (unsigned int i = 0; i < thread_count; ++i) {
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_program.c 385 * bytes times the given \p thread_count.
391 unsigned thread_count)
401 per_thread_size * thread_count, 4096);
  /art/runtime/gc/collector/
mark_sweep.h 295 void ProcessMarkStackParallel(size_t thread_count)
  /system/core/adb/
test_device.py 499 thread_count = 48
501 def hammer(thread_idx, thread_count, result):
503 for i in range(thread_idx, 240, thread_count):
511 for i in range(thread_count):
512 thread = threading.Thread(target=hammer, args=(i, thread_count, result))
    [all...]

Completed in 1158 milliseconds

1 2 34 5