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

1 2

  /external/valgrind/main/include/
pub_tool_threadstate.h 41 #define VG_N_THREADS 500
  /external/valgrind/main/coregrind/
m_threadstate.c 47 ThreadState VG_(threads)[VG_N_THREADS] __attribute__((aligned(16)));
57 for (tid = 1; tid < VG_N_THREADS; tid++) {
94 vg_assert(tid >= 0 && tid < VG_N_THREADS);
103 if (tid >= VG_N_THREADS) return False;
137 for(tid = 1; tid < VG_N_THREADS; tid++)
151 for(tid = 1; tid < VG_N_THREADS; tid++)
164 for(tid = 1; tid < VG_N_THREADS; tid++)
pub_core_threadstate.h 377 extern ThreadState VG_(threads)[VG_N_THREADS];
m_machine.c 357 for (tid = 1; tid < VG_N_THREADS; tid++) {
377 for (i = (*tid)+1; i < VG_N_THREADS; i++) {
392 vg_assert(0 <= tid && tid < VG_N_THREADS && tid != VG_INVALID_THREADID);
399 vg_assert(0 <= tid && tid < VG_N_THREADS && tid != VG_INVALID_THREADID);
406 vg_assert(0 <= tid && tid < VG_N_THREADS && tid != VG_INVALID_THREADID);
413 vg_assert(0 <= tid && tid < VG_N_THREADS && tid != VG_INVALID_THREADID);
    [all...]
vgdb-invoker-ptrace.c 202 static VgdbThreadState vgdb_threads[VG_N_THREADS];
414 for (i = 1; i < VG_N_THREADS; i++) {
481 for (i = 1; i < VG_N_THREADS; i++) {
    [all...]
m_libcassert.c 331 for (i = 1; i < VG_N_THREADS; i++) {
m_errormgr.c 34 #include "pub_core_threadstate.h" // For VG_N_THREADS
640 tl_assert(tid < VG_N_THREADS);
660 vg_assert( tid < VG_N_THREADS );
    [all...]
  /external/valgrind/main/helgrind/
hg_basics.h 47 return coretid >= 0 && coretid < VG_N_THREADS;
hg_main.c 135 static Thread** map_threads = NULL; /* Array[VG_N_THREADS] of Thread* */
440 for (i = 0; i < VG_N_THREADS; i++) {
445 for (i = 0; i < VG_N_THREADS; i++) {
597 map_threads = HG_(zalloc)( "hg.ids.1", VG_N_THREADS * sizeof(Thread*) );
675 tl_assert(VG_INVALID_THREADID >= 0 && VG_INVALID_THREADID < VG_N_THREADS);
    [all...]
  /external/valgrind/main/callgrind/
threads.c 64 static thread_info* thread[VG_N_THREADS];
79 for(i=0;i<VG_N_THREADS;i++)
89 for(t=1;t<VG_N_THREADS;t++) {
153 CLG_ASSERT(tid < VG_N_THREADS);
main.c     [all...]
  /external/valgrind/main/coregrind/m_scheduler/
scheduler.c 239 for (i = 1; i < VG_N_THREADS; i++) {
250 VG_(printf)("Increase VG_N_THREADS, rebuild and try again.\n");
251 VG_(core_panic)("VG_N_THREADS is too low");
515 vg_assert(tid >= 0 && tid < VG_N_THREADS);
569 for (tid = 1; tid < VG_N_THREADS; tid++) {
611 for (i = 0 /* NB; not 1 */; i < VG_N_THREADS; i++) {
    [all...]
  /external/valgrind/main/drd/
drd_thread.h 36 #include "pub_tool_threadstate.h" /* VG_N_THREADS */
42 #define DRD_N_THREADS VG_N_THREADS
  /external/valgrind/main/coregrind/m_syswrap/
syswrap-main.c     [all...]
syswrap-amd64-linux.c 486 vg_assert(tid >= 1 && tid < VG_N_THREADS);
518 vg_assert(tid >= 1 && tid < VG_N_THREADS);
    [all...]
syswrap-arm-linux.c 545 vg_assert(tid >= 1 && tid < VG_N_THREADS);
568 vg_assert(tid >= 1 && tid < VG_N_THREADS);
    [all...]
syswrap-mips32-linux.c 730 vg_assert (tid >= 1 && tid < VG_N_THREADS);
745 vg_assert (tid >= 1 && tid < VG_N_THREADS);
    [all...]
syswrap-ppc32-linux.c 649 vg_assert(tid >= 1 && tid < VG_N_THREADS);
684 vg_assert(tid >= 1 && tid < VG_N_THREADS);
    [all...]
syswrap-s390x-linux.c 576 vg_assert(tid >= 1 && tid < VG_N_THREADS);
607 vg_assert(tid >= 1 && tid < VG_N_THREADS);
    [all...]
syswrap-arm64-linux.c 659 //ZZ vg_assert(tid >= 1 && tid < VG_N_THREADS);
682 vg_assert(tid >= 1 && tid < VG_N_THREADS);
    [all...]
syswrap-ppc64-linux.c 634 vg_assert(tid >= 1 && tid < VG_N_THREADS);
    [all...]
syswrap-x86-linux.c     [all...]
  /external/valgrind/main/exp-sgcheck/
sg_main.c 68 return tid >= 0 && tid < VG_N_THREADS
    [all...]
  /external/valgrind/main/coregrind/m_gdbserver/
target.c 75 for (tid = 1; tid < VG_N_THREADS; tid++) {
  /external/valgrind/main/coregrind/m_coredump/
coredump-elf.c 596 for(i = 1; i < VG_N_THREADS; i++) {

Completed in 1648 milliseconds

1 2