Searched defs:th (Results 51 - 75 of 85) sorted by last modified time

1234

/external/compiler-rt/test/tsan/
H A Dfork_multithreaded.cc17 pthread_t th; local
18 pthread_create(&th, 0, sleeper, 0);
H A Djava_alloc.cc24 pthread_t th; local
25 pthread_create(&th, 0, Thread, (void*)(jheap + kHeapSize / 4));
27 pthread_join(th, 0);
H A Djava_finalizer.cc17 pthread_t th; local
18 pthread_create(&th, 0, Thread, (void*)jheap);
20 pthread_join(th, 0);
H A Djava_lock.cc24 pthread_t th; local
25 pthread_create(&th, 0, Thread, 0);
29 pthread_join(th, 0);
H A Djava_lock_move.cc28 pthread_t th; local
29 pthread_create(&th, 0, Thread, 0);
34 pthread_join(th, 0);
H A Djava_lock_rec.cc37 pthread_t th; local
38 pthread_create(&th, 0, Thread, 0);
47 pthread_join(th, 0);
H A Djava_lock_rec_race.cc35 pthread_t th; local
36 pthread_create(&th, 0, Thread, 0);
41 pthread_join(th, 0);
H A Djava_move_overlap.cc54 pthread_t th; local
55 pthread_create(&th, 0, Thread, 0);
65 pthread_join(th, 0);
H A Djava_move_overlap_race.cc38 pthread_t th; local
39 pthread_create(&th, 0, Thread, 0);
45 pthread_join(th, 0);
H A Djava_race.cc15 pthread_t th; local
16 pthread_create(&th, 0, Thread, (void*)jheap);
18 pthread_join(th, 0);
H A Djava_race_move.cc22 pthread_t th; local
23 pthread_create(&th, 0, Thread, 0);
26 pthread_join(th, 0);
H A Djava_rwlock.cc24 pthread_t th; local
25 pthread_create(&th, 0, Thread, 0);
29 pthread_join(th, 0);
H A Dmalloc_stack.cc15 pthread_t th; local
16 pthread_create(&th, 0, thr, p);
18 pthread_join(th, 0);
H A Dmutex_double_lock.cc15 pthread_t th; local
16 pthread_create(&th, 0, ThreadFunc, &m);
17 pthread_join(th, 0);
H A Dmutex_robust.cc20 pthread_t th; local
21 pthread_create(&th, 0, thr, 0);
27 pthread_join(th, 0);
H A Dmutex_robust2.cc22 pthread_t th; local
23 pthread_create(&th, 0, thr, 0);
30 pthread_join(th, 0);
H A Drace_on_puts.cc19 pthread_t th[2]; local
20 pthread_create(&th[0], 0, Thread0, 0);
21 pthread_create(&th[1], 0, Thread1, 0);
22 pthread_join(th[0], 0);
23 pthread_join(th[1], 0);
H A Dsignal_errno.cc38 pthread_t th; local
39 pthread_create(&th, 0, sendsignal, 0);
41 pthread_join(th, 0);
H A Dsunrpc.cc16 pthread_t th[2]; local
17 pthread_create(&th[0], 0, thr, 0);
18 pthread_create(&th[1], 0, thr, 0);
19 pthread_join(th[0], 0);
20 pthread_join(th[1], 0);
H A Dunaligned_norace.cc76 pthread_t th; local
77 pthread_create(&th, 0, Thread, 0);
79 pthread_join(th, 0);
H A Dunaligned_race.cc132 pthread_t th; local
133 pthread_create(&th, 0, Thread, 0);
135 pthread_join(th, 0);
/external/chromium_org/third_party/webrtc/base/
H A Dvirtualsocket_unittest.cc30 Sender(Thread* th, AsyncSocket* s, uint32 rt) argument
31 : thread(th), socket(new AsyncUDPSocket(s)),
73 Receiver(Thread* th, AsyncSocket* s, uint32 bw) argument
74 : thread(th), socket(new AsyncUDPSocket(s)), bandwidth(bw), done(false),
/external/chromium_org/third_party/skia/src/gpu/
H A DGrDistanceFieldTextContext.cpp404 SkFixed th = SkIntToFixed(glyph->fBounds.height() - 2*SK_DistanceFieldInset); local
429 SkFixedToFloat(texture->normalizeFixedY(ty + th)),
/external/chromium_org/third_party/skia/src/ports/
H A DSkFontHost_win.cpp1540 const TTPOLYGONHEADER* th = (TTPOLYGONHEADER*)cur_glyph; local
1542 const uint8_t* end_poly = cur_glyph + th->cb;
1545 path->moveTo(SkFixedToScalar( SkFIXEDToFixed(th->pfxStart.x)),
1546 SkFixedToScalar(-SkFIXEDToFixed(th->pfxStart.y)));
1579 cur_glyph += th->cb;
1600 const TTPOLYGONHEADER* th = (TTPOLYGONHEADER*)cur_glyph; local
1602 const uint8_t* end_poly = cur_glyph + th->cb;
1606 path->moveTo(SkFixedToScalar( SkFIXEDToFixed(th->pfxStart.x)),
1654 cur_glyph += th->cb;
/external/chromium_org/third_party/skia/third_party/lua/src/
H A Dlgc.c495 static lu_mem traversestack (global_State *g, lua_State *th) { argument
496 StkId o = th->stack;
499 for (; o < th->top; o++)
502 StkId lim = th->stack + th->stacksize; /* real end of stack */
506 return sizeof(lua_State) + sizeof(TValue) * th->stacksize;
539 lua_State *th = gco2th(o); local
540 g->gray = th->gclist; /* remove from 'gray' list */
541 th->gclist = g->grayagain;
544 size = traversestack(g, th);
[all...]

Completed in 192 milliseconds

1234