Searched defs:th (Results 1 - 25 of 43) sorted by relevance

12

/external/doclava/res/assets/templates/
H A Dtodo.cs14 table th { property
35 <tr><th>Errors</th><td><?cs var:all.errorCount ?></td></tr>
36 <tr><th>Percent Good</th><td><?cs var:all.percentGood ?></td></tr>
37 <tr><th>Total Comments</th><td><?cs var:all.totalCount ?></td></tr>
44 <th>Package</th>
45 <th>Error
[all...]
/external/valgrind/main/none/tests/
H A Dpth_exit.c4 static void *th(void *v) function
14 pthread_create(&a, NULL, th, NULL);
15 pthread_create(&a, NULL, th, NULL);
16 pthread_create(&a, NULL, th, NULL);
17 pthread_create(&a, NULL, th, NULL);
H A Dmanythreads.c15 pthread_t th; local
20 pthread_create(&th, NULL, func, NULL);
21 pthread_join(th, NULL);
H A Dpth_atfork1.c77 pthread_t th; local
82 if (pthread_create (&th, NULL, thread, NULL) != 0)
85 pthread_join (th, &res);
/external/valgrind/main/helgrind/tests/
H A Dhg01_all_ok.c9 static void *th(void *v) function
25 pthread_create(&a, NULL, th, NULL);
26 pthread_create(&b, NULL, th, NULL);
H A Dhg04_race.c8 static void *th(void *v) function
19 pthread_create(&a, NULL, th, NULL);
21 pthread_create(&b, NULL, th, NULL);
H A Dhg05_race2.c13 static void *th(void *v) function
27 pthread_create(&a, NULL, th, &foo);
29 pthread_create(&b, NULL, th, &foo);
/external/jsilver/src/com/google/clearsilver/jsilver/exceptions/
H A DExceptionUtil.java30 public static boolean isFileNotFoundException(Throwable th) { argument
31 while (th != null) {
32 if (th instanceof JSilverTemplateNotFoundException || th instanceof FileNotFoundException) {
35 th = th.getCause();
/external/valgrind/main/callgrind/tests/
H A Dthreads.c14 static void *th(void *v) function
41 pthread_create(&t[i], NULL, th, &sum[i]);
/external/compiler-rt/lib/tsan/rtl_tests/
H A Dtsan_posix.cc59 pthread_t th[3]; local
64 EXPECT_EQ(pthread_create(&th[0], 0, dtors_thread, k[0]), 0);
65 EXPECT_EQ(pthread_create(&th[1], 0, dtors_thread, k[1]), 0);
66 EXPECT_EQ(pthread_join(th[0], 0), 0);
67 EXPECT_EQ(pthread_create(&th[2], 0, dtors_thread, k[2]), 0);
68 EXPECT_EQ(pthread_join(th[1], 0), 0);
69 EXPECT_EQ(pthread_join(th[2], 0), 0);
82 pthread_t th[kThreads]; local
84 EXPECT_EQ(pthread_create(&th[i], 0, local_thread,
87 EXPECT_EQ(pthread_join(th[
128 pthread_t th; local
[all...]
/external/linux-tools-perf/util/
H A Dthread.c68 struct thread *th; local
80 th = rb_entry(parent, struct thread, rb_node);
82 if (th->pid == pid) {
83 self->last_match = th;
84 return th;
87 if (pid < th->pid)
93 th = thread__new(pid);
94 if (th != NULL) {
95 rb_link_node(&th->rb_node, parent, p);
96 rb_insert_color(&th
[all...]
H A Dsession.c225 void perf_session__remove_thread(struct perf_session *self, struct thread *th) argument
228 rb_erase(&th->rb_node, &self->threads);
233 list_add_tail(&th->node, &self->dead_threads);
/external/emma/core/java12/com/vladium/emma/report/html/doc/
H A DHTMLTable.java116 Row (final boolean th) argument
120 m_th = th;
/external/libppp/src/
H A Dslcompress.c166 register struct tcphdr *th; local
183 th = (struct tcphdr *) & ((int *) ip)[hlen];
184 if ((th->th_flags & (TH_SYN | TH_FIN | TH_RST | TH_ACK)) != TH_ACK) {
185 log_Printf(LogDEBUG, "??? 2 th_flags = %x\n", th->th_flags);
200 *(int *) th != ((int *) &cs->cs_ip)[cs->cs_ip.ip_hl]) {
221 && *(int *) th == ((int *) &cs->cs_ip)[cs->cs_ip.ip_hl])
234 #define THOFFSET(th) (th->th_off)
235 hlen += th->th_off;
260 * but costless). The 4th lin
435 register struct tcphdr *th; local
[all...]
H A Dip.c302 const struct tcphdr *th; local
362 th = (const struct tcphdr *)payload;
368 if (datalen < 20 || datalen < (th->th_off << 2)) {
372 sport = ntohs(th->th_sport);
373 dport = ntohs(th->th_dport);
374 estab = (th->th_flags & TH_ACK);
375 syn = (th->th_flags & TH_SYN);
376 finrst = (th->th_flags & (TH_FIN|TH_RST));
381 th->th_flags, sport, dport);
566 const struct tcphdr *th; local
[all...]
/external/iproute2/misc/
H A Dlnstat.c164 static struct table_hdr th; local
168 th.hdr[i] = malloc(HDR_LINE_LENGTH);
169 memset(th.hdr[i], 0, sizeof(th.hdr[i]));
179 snprintf(th.hdr[0]+ofs, width+2, fmt,
185 snprintf(th.hdr[h]+ofs, width+2, fmt, "");
187 th.num_lines = h+1;
188 snprintf(th.hdr[h]+ofs, width+2, fmt, cname);
195 for (h = 1; h <= th.num_lines; h++) {
197 if (th
205 print_hdr(FILE *of, struct table_hdr *th) argument
[all...]
/external/openssl/crypto/bn/
H A Dbn_asm.c241 BN_ULONG dh,dl,q,ret=0,th,tl,t; local
267 th=q*dh;
271 t=h-th;
278 th-=dh;
283 th+=t;
285 if (l < tl) th++;
287 if (h < th)
292 h-=th;
/external/qemu/distrib/sdl-1.2.15/Xcode/TemplatesForXcodeLeopard/SDL OpenGL Application/atlantis/
H A Datlantis.c276 static double th[4] = {0.0, 0.0, 0.0, 0.0}; local
328 sprintf(num_str, "%0.2f Hz, %dx%d, VENDOR: ", filter(t, th), w_win, h_win);
333 sprintf(num_str, "%0.2f Hz, %dx%d, RENDERER: ", filter(t, th), w_win, h_win);
338 sprintf(num_str, "%0.2f Hz, %dx%d, VERSION: ", filter(t, th), w_win, h_win);
343 sprintf(num_str, "%0.2f Hz, %dx%d, EXTENSIONS: ", filter(t, th), w_win, h_win);
/external/qemu/distrib/sdl-1.2.15/Xcode/TemplatesForXcodeSnowLeopard/SDL OpenGL Application/atlantis/
H A Datlantis.c276 static double th[4] = {0.0, 0.0, 0.0, 0.0}; local
328 sprintf(num_str, "%0.2f Hz, %dx%d, VENDOR: ", filter(t, th), w_win, h_win);
333 sprintf(num_str, "%0.2f Hz, %dx%d, RENDERER: ", filter(t, th), w_win, h_win);
338 sprintf(num_str, "%0.2f Hz, %dx%d, VERSION: ", filter(t, th), w_win, h_win);
343 sprintf(num_str, "%0.2f Hz, %dx%d, EXTENSIONS: ", filter(t, th), w_win, h_win);
/external/qemu/distrib/sdl-1.2.15/Xcode/TemplatesForXcodeTiger/SDL OpenGL Application/atlantis/
H A Datlantis.c276 static double th[4] = {0.0, 0.0, 0.0, 0.0}; local
328 sprintf(num_str, "%0.2f Hz, %dx%d, VENDOR: ", filter(t, th), w_win, h_win);
333 sprintf(num_str, "%0.2f Hz, %dx%d, RENDERER: ", filter(t, th), w_win, h_win);
338 sprintf(num_str, "%0.2f Hz, %dx%d, VERSION: ", filter(t, th), w_win, h_win);
343 sprintf(num_str, "%0.2f Hz, %dx%d, EXTENSIONS: ", filter(t, th), w_win, h_win);
/external/quake/quake/src/QW/client/
H A Dkeys.c211 HANDLE th; local
318 th = GetClipboardData(CF_TEXT);
319 if (th) {
320 clipText = GlobalLock(th);
322 textCopied = malloc(GlobalSize(th)+1);
335 GlobalUnlock(th);
H A Dsys_win.c404 HANDLE th; local
456 th = GetClipboardData(CF_TEXT);
457 if (th) {
458 clipText = GlobalLock(th);
460 textCopied = malloc(GlobalSize(th)+1);
475 GlobalUnlock(th);
/external/valgrind/main/callgrind/
H A Dcommand.c291 thread_info** th; local
332 th = CLG_(get_threads)();
335 if (!th[t]) continue;
/external/tcpdump/
H A Dprint-tcp.c313 register struct tcp_seq_hash *th; local
385 for (th = &tcp_seq_hash[tha.port % TSEQ_HASHSIZE];
386 th->nxt; th = th->nxt)
387 if (memcmp((char *)&tha, (char *)&th->addr,
388 sizeof(th->addr)) == 0)
391 if (!th->nxt || (flags & TH_SYN)) {
393 if (th->nxt == NULL) {
394 th
[all...]
/external/webkit/Source/WebKit/efl/ewk/
H A Dewk_tiled_matrix.c576 Evas_Coord x, y, w, h, tw, th; local
590 th = TILE_SIZE_AT_ZOOM(TILE_H, zoom);
603 if (y + h - 1 > (long)(rows * th))
604 h = rows * th - y;
608 return eina_tile_grid_slicer_setup(slicer, x, y, w, h, tw, th);

Completed in 480 milliseconds

12