Searched refs:th (Results 1 - 25 of 185) sorted by relevance

12345678

/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.target/i386/
H A Dpr26778.c11 double th = x[1] + x[2]; local
12 if (x[2] != th - x[1]) {
14 thdb.d = th;
16 th = thdb.d;
18 return x[0] + th;
/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/gdb/testsuite/gdb.threads/
H A Dattach-stopped.c43 pthread_t th;
44 pthread_create (&th, NULL, func, NULL);
45 pthread_join (th, NULL);
H A Dattach-into-signal.c60 pthread_t th;
61 pthread_create (&th, NULL, func, NULL);
62 pthread_join (th, NULL);
H A Dthread_check.c52 pthread_t th[N]; local
55 if (pthread_create (&th[n], NULL, tf, (void *) (long int) n) != 0)
66 if (pthread_join (th[n], NULL) != 0)
/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/gdb/gdbserver/
H A Dwin32-low.h58 void (*get_thread_context) (win32_thread_info *th,
62 void (*set_thread_context) (win32_thread_info *th,
66 void (*thread_added) (win32_thread_info *th);
70 win32_thread_info *th, int r);
74 win32_thread_info *th, int r);
76 void (*single_step) (win32_thread_info *th);
H A Dwin32-arm-low.c30 arm_get_thread_context (win32_thread_info *th, DEBUG_EVENT* current_event) argument
32 th->context.ContextFlags = \
36 GetThreadContext (th->h, &th->context);
40 arm_set_thread_context (win32_thread_info *th, DEBUG_EVENT* current_event) argument
42 SetThreadContext (th->h, &th->context);
97 win32_thread_info *th, int r)
99 char *context_offset = regptr (&th->context, r);
106 win32_thread_info *th, in
96 arm_fetch_inferior_register(struct regcache *regcache, win32_thread_info *th, int r) argument
105 arm_store_inferior_register(struct regcache *regcache, win32_thread_info *th, int r) argument
[all...]
H A Dwin32-i386-low.c158 i386_get_thread_context (win32_thread_info *th, DEBUG_EVENT* current_event) argument
165 th->context.ContextFlags = (CONTEXT_FULL
170 if (!GetThreadContext (th->h, &th->context))
185 if (th->tid == current_event->dwThreadId)
189 dr->dr_mirror[0] = th->context.Dr0;
190 dr->dr_mirror[1] = th->context.Dr1;
191 dr->dr_mirror[2] = th->context.Dr2;
192 dr->dr_mirror[3] = th->context.Dr3;
193 dr_status_mirror = th
199 i386_set_thread_context(win32_thread_info *th, DEBUG_EVENT* current_event) argument
217 i386_thread_added(win32_thread_info *th) argument
240 i386_single_step(win32_thread_info *th) argument
373 i386_fetch_inferior_register(struct regcache *regcache, win32_thread_info *th, int r) argument
395 i386_store_inferior_register(struct regcache *regcache, win32_thread_info *th, int r) argument
[all...]
/netbsd-6-1-5-RELEASE/sys/netinet/
H A Dtcp_private.h47 #define TCP_HDR_ALIGNED_P(th) 1
49 #define TCP_HDR_ALIGNED_P(th) ((((vaddr_t)(th)) & 3) == 0)
H A Dtcp_debug.h54 struct tcphdr th; member in struct:tcp_debug::__anon9295
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.c-torture/compile/
H A D921011-1.c5 int th, h, em, nlwm, nlwS, nlw, sy; local
24 if (++sy == th)
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.dg/
H A Dsms-2.c12 int th, h, em, nlwm, nlwS, nlw, sy; local
31 if (++sy == th)
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/gcc.c-torture/compile/
H A D921011-1.c5 int th, h, em, nlwm, nlwS, nlw, sy; local
24 if (++sy == th)
/netbsd-6-1-5-RELEASE/tests/lib/libpthread/
H A Dt_kill.c75 } th[NTHREAD]; variable in typeref:struct:threadinfo
90 if (self == th[i].id)
95 th[i].gotsignal++;
125 PTHREAD_REQUIRE(pthread_create(&th[i].id, NULL, f, &th[i]));
134 PTHREAD_REQUIRE(pthread_kill(th[i].id, SIGUSR1));
138 PTHREAD_REQUIRE(pthread_join(th[i].id, NULL));
/netbsd-6-1-5-RELEASE/common/lib/libc/gen/
H A Dbswap64.c38 uint32_t tl, th;
40 th = bswap32((uint32_t)(x & 0x00000000ffffffffULL));
42 return ((uint64_t)th << 32) | tl;
/netbsd-6-1-5-RELEASE/usr.sbin/npf/npftest/
H A Dnpfstream.c40 const struct tcphdr *th; local
52 th = (const struct tcphdr *)((const uint8_t *)ip + hlen);
54 tcpdlen = ntohs(ip->ip_len) - hlen - (th->th_off << 2);
55 if (th->th_flags & TH_SYN) {
58 if (th->th_flags & TH_FIN) {
61 seq = ntohl(th->th_seq);
77 forw ? ">" : "<", (th->th_flags & (TH_SYN | TH_ACK | TH_FIN)),
78 packetno, error, (u_int)seq, (u_int)ntohl(th->th_ack),
79 tcpdlen, ntohs(th->th_win), (uintptr_t)result[0]);
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libgomp/testsuite/libgomp.c/
H A Dicv-2.c40 pthread_t th; local
42 pthread_create (&th, NULL, tf, NULL);
44 pthread_join (th, NULL);
H A Dlock-3.c52 pthread_t th; local
55 pthread_create (&th, NULL, tf, NULL);
57 pthread_join (th, NULL);
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/testsuite/ext/mt_allocator/
H A D22309_thread.cc95 pthread_t th; local
96 pthread_create(&th, NULL, tf, NULL);
97 pthread_join(th, NULL);
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/libstdc++-v3/testsuite/ext/mt_allocator/
H A D22309_thread.cc96 pthread_t th; local
97 pthread_create(&th, NULL, tf, NULL);
98 pthread_join(th, NULL);
/netbsd-6-1-5-RELEASE/external/lgpl3/mpfr/dist/tests/
H A Dtrandom.c34 double d, av = 0, var = 0, chi2 = 0, th; local
86 th = (double)nbtests / size_tab;
89 (int)th);
93 chi2 += (tab[k] - th) * (tab[k] - th) / th;
H A Dthyperbolic.c30 mpfr_t t, ch,sh,th,ach,ash,ath; local
37 mpfr_init2(th,200);
66 tester=mpfr_tanh(th,t,MPFR_RNDD);
67 if (!MPFR_IS_NAN(th) || tester!=0)
108 mpfr_clear(th);
119 mpfr_t t, ch,sh,th,ach,ash,ath; local
126 mpfr_init2(th,200);
155 tester = mpfr_tanh (th, t, MPFR_RNDD);
156 if (!MPFR_IS_ZERO(th) || tester)
197 mpfr_clear(th);
208 mpfr_t t, ch, sh, th, ach, ash, ath; local
[all...]
/netbsd-6-1-5-RELEASE/external/bsd/flex/dist/
H A Dtables.h70 int yytbl_hdr_init (struct yytbl_hdr *th, const char *version_str,
75 const struct yytbl_hdr *th);
/netbsd-6-1-5-RELEASE/sys/kern/
H A Dkern_tc.c303 tc_delta(struct timehands *th) argument
307 tc = th->th_counter;
309 th->th_offset_count) & tc->tc_counter_mask);
321 struct timehands *th; local
357 th = timehands;
358 gen = th->th_generation;
359 *bt = th->th_offset;
360 bintime_addx(bt, th->th_scale * tc_delta(th));
361 } while (gen == 0 || gen != th
419 struct timehands *th; local
433 struct timehands *th; local
447 struct timehands *th; local
461 struct timehands *th; local
476 struct timehands *th; local
490 struct timehands *th; local
706 struct timehands *th, *tho; local
919 struct timehands *th; local
[all...]
/netbsd-6-1-5-RELEASE/usr.sbin/sup/source/
H A Dstree.c132 TREE *th; local
134 th = tl->Thi;
135 tp->Tlo = th->Thi;
136 tl->Thi = th->Tlo;
137 th->Thi = tp;
138 th->Tlo = tl;
140 if (th->Tbf == 1)
142 else if (th->Tbf == -1)
144 th->Tbf = 0;
145 return (th);
149 Trothl(TREE * tp, TREE * th) argument
168 Trothh(TREE * tp, TREE * th) argument
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/contrib/regression/
H A Dmkindex.pl96 <table><tr><th>Name</th><th align='right'>Size</th></tr>

Completed in 274 milliseconds

12345678