HomeSort by: relevance | last modified time | path
    Searched refs:thr (Results 1 - 25 of 459) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/external/gpl3/gcc/dist/libgomp/
oacc-cuda.c 37 struct goacc_thread *thr = goacc_thread (); local
40 if (thr && thr->dev && thr->dev->openacc.cuda.get_current_device_func)
44 bool profiling_p = GOACC_PROFILING_SETUP_P (thr, &prof_info, &api_info);
46 ret = thr->dev->openacc.cuda.get_current_device_func ();
50 thr->prof_info = NULL;
51 thr->api_info = NULL;
61 struct goacc_thread *thr = goacc_thread (); local
64 if (thr && thr->dev && thr->dev->openacc.cuda.get_current_context_func
85 struct goacc_thread *thr = goacc_thread (); local
121 struct goacc_thread *thr; local
    [all...]
teams.c 35 struct gomp_thread *thr = gomp_thread (); local
49 thr->num_teams = num_teams - 1;
50 for (thr->team_num = 0; thr->team_num < num_teams; thr->team_num++)
52 thr->num_teams = 0;
53 thr->team_num = 0;
64 struct gomp_thread *thr = gomp_thread (); local
65 return thr->num_teams + 1;
71 struct gomp_thread *thr = gomp_thread () local
    [all...]
barrier.c 34 struct gomp_thread *thr = gomp_thread (); local
35 struct gomp_team *team = thr->ts.team;
47 struct gomp_thread *thr = gomp_thread (); local
48 struct gomp_team *team = thr->ts.team;
single.c 39 struct gomp_thread *thr = gomp_thread (); local
40 struct gomp_team *team = thr->ts.team;
46 single_count = thr->ts.single_count++;
66 struct gomp_thread *thr = gomp_thread (); local
80 gomp_team_barrier_wait (&thr->ts.team->barrier);
82 ret = thr->ts.work_share->copyprivate;
95 struct gomp_thread *thr = gomp_thread (); local
96 struct gomp_team *team = thr->ts.team;
100 thr->ts.work_share->copyprivate = data;
  /src/external/gpl3/gcc.old/dist/libgomp/
oacc-cuda.c 37 struct goacc_thread *thr = goacc_thread (); local
40 if (thr && thr->dev && thr->dev->openacc.cuda.get_current_device_func)
44 bool profiling_p = GOACC_PROFILING_SETUP_P (thr, &prof_info, &api_info);
46 ret = thr->dev->openacc.cuda.get_current_device_func ();
50 thr->prof_info = NULL;
51 thr->api_info = NULL;
61 struct goacc_thread *thr = goacc_thread (); local
64 if (thr && thr->dev && thr->dev->openacc.cuda.get_current_context_func
85 struct goacc_thread *thr = goacc_thread (); local
121 struct goacc_thread *thr; local
    [all...]
teams.c 35 struct gomp_thread *thr = gomp_thread (); local
49 thr->num_teams = num_teams - 1;
50 for (thr->team_num = 0; thr->team_num < num_teams; thr->team_num++)
52 thr->num_teams = 0;
53 thr->team_num = 0;
64 struct gomp_thread *thr = gomp_thread (); local
65 return thr->num_teams + 1;
71 struct gomp_thread *thr = gomp_thread () local
    [all...]
barrier.c 34 struct gomp_thread *thr = gomp_thread (); local
35 struct gomp_team *team = thr->ts.team;
47 struct gomp_thread *thr = gomp_thread (); local
48 struct gomp_team *team = thr->ts.team;
single.c 39 struct gomp_thread *thr = gomp_thread (); local
40 struct gomp_team *team = thr->ts.team;
46 single_count = thr->ts.single_count++;
66 struct gomp_thread *thr = gomp_thread (); local
80 gomp_team_barrier_wait (&thr->ts.team->barrier);
82 ret = thr->ts.work_share->copyprivate;
95 struct gomp_thread *thr = gomp_thread (); local
96 struct gomp_team *team = thr->ts.team;
100 thr->ts.work_share->copyprivate = data;
  /src/external/gpl3/gcc/dist/libgomp/config/accel/
pool.h 37 gomp_get_thread_pool (struct gomp_thread *thr, unsigned nthreads)
40 return thr->thread_pool;
  /src/external/gpl3/gcc.old/dist/libgomp/config/accel/
pool.h 37 gomp_get_thread_pool (struct gomp_thread *thr, unsigned nthreads)
40 return thr->thread_pool;
  /src/external/gpl3/gcc.old/dist/libgomp/config/nvptx/
pool.h 37 gomp_get_thread_pool (struct gomp_thread *thr, unsigned nthreads)
40 return thr->thread_pool;
  /src/external/gpl3/gdb/dist/gdb/python/lib/gdb/dap/
threads.py 21 def _thread_name(thr):
22 if thr.name is not None:
23 return thr.name
24 if thr.details is not None:
25 return thr.details
32 for thr in gdb.selected_inferior().threads():
34 "id": thr.global_num,
36 name = _thread_name(thr)
  /src/external/gpl3/gdb.old/dist/gdb/python/lib/gdb/dap/
threads.py 21 def _thread_name(thr):
22 if thr.name is not None:
23 return thr.name
24 if thr.details is not None:
25 return thr.details
32 for thr in gdb.selected_inferior().threads():
34 "id": thr.global_num,
36 name = _thread_name(thr)
  /src/external/gpl3/gcc/dist/libsanitizer/tsan/
tsan_fd.h 41 void FdAcquire(ThreadState *thr, uptr pc, int fd);
42 void FdRelease(ThreadState *thr, uptr pc, int fd);
43 void FdAccess(ThreadState *thr, uptr pc, int fd);
44 void FdClose(ThreadState *thr, uptr pc, int fd, bool write = true);
45 void FdFileCreate(ThreadState *thr, uptr pc, int fd);
46 void FdDup(ThreadState *thr, uptr pc, int oldfd, int newfd, bool write);
47 void FdPipeCreate(ThreadState *thr, uptr pc, int rfd, int wfd);
48 void FdEventCreate(ThreadState *thr, uptr pc, int fd);
49 void FdSignalCreate(ThreadState *thr, uptr pc, int fd);
50 void FdInotifyCreate(ThreadState *thr, uptr pc, int fd)
    [all...]
tsan_rtl_thread.cpp 24 ThreadContext::ThreadContext(Tid tid) : ThreadContextBase(tid), thr(), sync() {}
74 static void ThreadCheckIgnore(ThreadState *thr) {
77 if (thr->ignore_reads_and_writes)
78 ReportIgnoresEnabled(thr->tctx, &thr->mop_ignore_set);
79 if (thr->ignore_sync)
80 ReportIgnoresEnabled(thr->tctx, &thr->sync_ignore_set);
83 static void ThreadCheckIgnore(ThreadState *thr) {}
86 void ThreadFinalize(ThreadState *thr) {
145 ThreadState *thr; member in struct:__tsan::OnStartedArgs
    [all...]
tsan_rtl_proc.cpp 24 proc->thr = nullptr;
34 CHECK_EQ(proc->thr, nullptr);
45 void ProcWire(Processor *proc, ThreadState *thr) {
46 CHECK_EQ(thr->proc1, nullptr);
47 CHECK_EQ(proc->thr, nullptr);
48 thr->proc1 = proc;
49 proc->thr = thr;
52 void ProcUnwire(Processor *proc, ThreadState *thr) {
53 CHECK_EQ(thr->proc1, proc)
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/lib/tsan/rtl/
tsan_fd.h 42 void FdAcquire(ThreadState *thr, uptr pc, int fd);
43 void FdRelease(ThreadState *thr, uptr pc, int fd);
44 void FdAccess(ThreadState *thr, uptr pc, int fd);
45 void FdClose(ThreadState *thr, uptr pc, int fd, bool write = true);
46 void FdFileCreate(ThreadState *thr, uptr pc, int fd);
47 void FdDup(ThreadState *thr, uptr pc, int oldfd, int newfd, bool write);
48 void FdPipeCreate(ThreadState *thr, uptr pc, int rfd, int wfd);
49 void FdEventCreate(ThreadState *thr, uptr pc, int fd);
50 void FdSignalCreate(ThreadState *thr, uptr pc, int fd);
51 void FdInotifyCreate(ThreadState *thr, uptr pc, int fd)
    [all...]
tsan_rtl_thread.cc 27 , thr()
49 ThreadState *thr; member in struct:__tsan::OnCreatedArgs
54 thr = 0;
58 if (!args->thr) // GCD workers don't have a parent thread.
60 args->thr->fast_state.IncrementEpoch();
62 TraceAddEvent(args->thr, args->thr->fast_state, EventTypeMop, 0);
63 ReleaseImpl(args->thr, 0, &sync);
64 creation_stack_id = CurrentStackId(args->thr, args->pc);
66 StatInc(args->thr, StatThreadMaxTid)
82 ThreadState *thr; member in struct:__tsan::OnStartedArgs
    [all...]
tsan_rtl_proc.cc 25 proc->thr = nullptr;
35 CHECK_EQ(proc->thr, nullptr);
47 void ProcWire(Processor *proc, ThreadState *thr) {
48 CHECK_EQ(thr->proc1, nullptr);
49 CHECK_EQ(proc->thr, nullptr);
50 thr->proc1 = proc;
51 proc->thr = thr;
54 void ProcUnwire(Processor *proc, ThreadState *thr) {
55 CHECK_EQ(thr->proc1, proc)
    [all...]
tsan_rtl_mutex.cc 26 void ReportDeadlock(ThreadState *thr, uptr pc, DDReport *r);
29 ThreadState *thr; member in struct:__tsan::Callback
32 Callback(ThreadState *thr, uptr pc)
33 : thr(thr)
35 DDCallback::pt = thr->proc()->dd_pt;
36 DDCallback::lt = thr->dd_lt;
39 u32 Unwind() override { return CurrentStackId(thr, pc); }
40 int UniqueTid() override { return thr->unique_id; }
43 void DDMutexInit(ThreadState *thr, uptr pc, SyncVar *s)
416 ThreadState *thr = reinterpret_cast<ThreadState*>(arg); local
459 ThreadState *thr = reinterpret_cast<ThreadState*>(arg); local
    [all...]
  /src/external/gpl3/gcc.old/dist/libsanitizer/tsan/
tsan_fd.h 41 void FdAcquire(ThreadState *thr, uptr pc, int fd);
42 void FdRelease(ThreadState *thr, uptr pc, int fd);
43 void FdAccess(ThreadState *thr, uptr pc, int fd);
44 void FdClose(ThreadState *thr, uptr pc, int fd, bool write = true);
45 void FdFileCreate(ThreadState *thr, uptr pc, int fd);
46 void FdDup(ThreadState *thr, uptr pc, int oldfd, int newfd, bool write);
47 void FdPipeCreate(ThreadState *thr, uptr pc, int rfd, int wfd);
48 void FdEventCreate(ThreadState *thr, uptr pc, int fd);
49 void FdSignalCreate(ThreadState *thr, uptr pc, int fd);
50 void FdInotifyCreate(ThreadState *thr, uptr pc, int fd)
    [all...]
tsan_rtl_proc.cpp 24 proc->thr = nullptr;
34 CHECK_EQ(proc->thr, nullptr);
46 void ProcWire(Processor *proc, ThreadState *thr) {
47 CHECK_EQ(thr->proc1, nullptr);
48 CHECK_EQ(proc->thr, nullptr);
49 thr->proc1 = proc;
50 proc->thr = thr;
53 void ProcUnwire(Processor *proc, ThreadState *thr) {
54 CHECK_EQ(thr->proc1, proc)
    [all...]
tsan_rtl_mutex.cpp 25 void ReportDeadlock(ThreadState *thr, uptr pc, DDReport *r);
28 ThreadState *thr; member in struct:__tsan::final
31 Callback(ThreadState *thr, uptr pc)
32 : thr(thr)
34 DDCallback::pt = thr->proc()->dd_pt;
35 DDCallback::lt = thr->dd_lt;
38 StackID Unwind() override { return CurrentStackId(thr, pc); }
39 int UniqueTid() override { return thr->unique_id; }
42 void DDMutexInit(ThreadState *thr, uptr pc, SyncVar *s)
415 ThreadState *thr = reinterpret_cast<ThreadState*>(arg); local
471 ThreadState *thr = reinterpret_cast<ThreadState*>(arg); local
    [all...]
tsan_rtl_thread.cpp 25 : ThreadContextBase(tid), thr(), sync(), epoch0(), epoch1() {}
78 static void ThreadCheckIgnore(ThreadState *thr) {
81 if (thr->ignore_reads_and_writes)
82 ReportIgnoresEnabled(thr->tctx, &thr->mop_ignore_set);
83 if (thr->ignore_sync)
84 ReportIgnoresEnabled(thr->tctx, &thr->sync_ignore_set);
87 static void ThreadCheckIgnore(ThreadState *thr) {}
90 void ThreadFinalize(ThreadState *thr) {
115 ThreadState *thr; member in struct:__tsan::OnCreatedArgs
144 ThreadState *thr; member in struct:__tsan::OnStartedArgs
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/lib/tsan/dd/
dd_rtl.cc 22 static u32 CurrentStackTrace(Thread *thr, uptr skip) {
24 thr->ignore_interceptors = true;
26 thr->ignore_interceptors = false;
32 static void PrintStackTrace(Thread *thr, u32 stk) {
34 thr->ignore_interceptors = true;
36 thr->ignore_interceptors = false;
39 static void ReportDeadlock(Thread *thr, DDReport *rep) {
48 PrintStackTrace(thr, rep->loop[i].stk[1]);
52 PrintStackTrace(thr, rep->loop[i].stk[0]);
58 Callback::Callback(Thread *thr)
    [all...]

Completed in 48 milliseconds

1 2 3 4 5 6 7 8 91011>>