HomeSort by relevance Sort by last modified time
    Searched refs:thr (Results 126 - 150 of 212) sorted by null

1 2 3 4 56 7 8 9

  /external/ltp/testcases/kernel/mem/hugetlb/hugemmap/
hugemmap06.c 94 void *thr(void *arg) function
136 TEST(pthread_create(&tid[i], NULL, thr, &mmap_sz[i]));
  /art/test/994-breakpoint-line/src/art/
Test994.java 38 public static void notifyBreakpointReached(Thread thr, Executable e, long loc) {
  /art/test/997-single-step/src/art/
Test997.java 50 public static void notifySingleStep(Thread thr, Executable e, long loc) {
  /art/test/ti-agent/
breakpoint_helper.cc 150 jthread thr) {
185 thr))) {
193 jthread thr) {
197 thr))) {
  /external/libvpx/libvpx/vp9/encoder/x86/
vp9_quantize_sse2.c 26 __m128i thr; local
113 thr = _mm_srai_epi16(dequant, 1);
134 nzflag = _mm_movemask_epi8(_mm_cmpgt_epi16(qcoeff0, thr)) |
135 _mm_movemask_epi8(_mm_cmpgt_epi16(qcoeff1, thr));
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_mutex_lock/
3-1.c 102 pthread_t *thr; member in struct:__anon26750
123 if ((ret = pthread_kill(*(thearg->thr), thearg->sig))) {
322 arg1.thr = &th_work;
323 arg2.thr = &th_work;
  /external/mesa3d/src/egl/main/
eglcurrent.c 355 _EGLThreadInfo *thr = _eglGetCurrentThread(); local
359 funcName = thr->CurrentFuncName;
363 _eglDebugReportFullv(error, thr->CurrentFuncName, funcName, type, thr->CurrentObjectLabel, message, args);
  /external/valgrind/helgrind/
hg_lock_n_thread.h 57 /* Thr, libhb's private thread record, exported abstractly. Thr's are
59 is a small integer which uniquely identifies a Thr and which is
60 used in ScalarTS because it is smaller than a Thr*. There is a 1-1
61 mapping between Thr's and ThrIDs. */
62 typedef struct _Thr Thr;
86 Thr* hbthr; /* which in turn points back here .. */
188 Bool HG_(is_sane_Thread) ( Thread* thr );
  /external/aac/libSBRdec/src/
psbitdec.cpp 383 UCHAR thr; local
384 thr = (UCHAR)h_ps_d->noSubSamples - (pBsData->noEnv - env);
385 if (pBsData->aEnvStartStop[env] > thr) {
386 pBsData->aEnvStartStop[env] = thr;
389 thr = pBsData->aEnvStartStop[env-1]+1;
390 if (pBsData->aEnvStartStop[env] < thr) {
391 pBsData->aEnvStartStop[env] = thr;
  /external/compiler-rt/lib/tsan/rtl/
tsan_interface.h 347 void __tsan_go_atomic32_load(ThreadState *thr, uptr cpc, uptr pc, u8 *a);
349 void __tsan_go_atomic64_load(ThreadState *thr, uptr cpc, uptr pc, u8 *a);
351 void __tsan_go_atomic32_store(ThreadState *thr, uptr cpc, uptr pc, u8 *a);
353 void __tsan_go_atomic64_store(ThreadState *thr, uptr cpc, uptr pc, u8 *a);
355 void __tsan_go_atomic32_fetch_add(ThreadState *thr, uptr cpc, uptr pc, u8 *a);
357 void __tsan_go_atomic64_fetch_add(ThreadState *thr, uptr cpc, uptr pc, u8 *a);
359 void __tsan_go_atomic32_exchange(ThreadState *thr, uptr cpc, uptr pc, u8 *a);
361 void __tsan_go_atomic64_exchange(ThreadState *thr, uptr cpc, uptr pc, u8 *a);
363 void __tsan_go_atomic32_compare_exchange(ThreadState *thr, uptr cpc, uptr pc,
366 void __tsan_go_atomic64_compare_exchange(ThreadState *thr, uptr cpc, uptr pc
    [all...]
  /external/iproute2/ip/
xfrm_policy.c 1027 struct xfrmu_spdhthresh thr; local
1033 if (get_u8(&thr.lbits, *argv, 0) || thr.lbits > 32)
1036 if (get_u8(&thr.rbits, *argv, 0) || thr.rbits > 32)
1040 (void *)&thr, sizeof(thr));
1042 struct xfrmu_spdhthresh thr; local
1048 if (get_u8(&thr.lbits, *argv, 0) || thr.lbits > 128
    [all...]
  /external/iw/
station.c 230 uint32_t thr; local
232 thr = nla_get_u32(sinfo[NL80211_STA_INFO_EXPECTED_THROUGHPUT]);
234 thr = thr * 1000 / 1024;
237 thr / 1000, thr % 1000);
  /libcore/luni/src/test/java/libcore/java/lang/
OldThreadGroupTest.java 192 for(MyThread thr:subThreads) {
193 thr.start();
210 for(MyThread thr:subThreads1) {
211 thr.start();
219 for(MyThread thr:subThreads) {
220 thr.interrupt();
OldThreadTest.java 407 Thread thr = new Thread(); local
408 thr.start();
410 thr.start();
  /art/test/1900-track-alloc/src/art/
Test1900.java 48 for (Thread thr : thrs) {
49 thr.join();
  /external/ltp/testcases/realtime/func/pi_perf/
pi_perf.c 119 struct thread *thr = (struct thread *)arg; local
121 printf("Busy %ld started\n", (long)thr->arg);
  /prebuilts/go/darwin-x86/src/runtime/cgo/
gcc_signal_darwin_armx.c 184 pthread_t thr = NULL; local
205 ret = _cgo_try_pthread_create(&thr, &attr, mach_exception_handler, (void*)port_set);
  /prebuilts/go/linux-x86/src/runtime/cgo/
gcc_signal_darwin_armx.c 184 pthread_t thr = NULL; local
205 ret = _cgo_try_pthread_create(&thr, &attr, mach_exception_handler, (void*)port_set);
  /art/test/988-method-trace/src/art/
Test988.java 71 Throwable thr = ((Throwable) val); local
72 w.write(thr.getClass().getName() + ": " + thr.getMessage() + "\n");
73 for (StackTraceElement e : thr.getStackTrace()) {
  /art/test/996-breakpoint-obsolete/src/art/
Test996.java 97 public static void notifyBreakpointReached(Thread thr, Executable e, long loc) {
  /cts/tests/tests/security/src/android/security/cts/
StagefrightTest.java 627 LooperThread thr = new LooperThread(new Runnable() { local
655 thr.start();
776 thr.stopLooper();
777 thr.join();
793 LooperThread thr = new LooperThread(new Runnable() { local
822 thr.start();
855 thr.stopLooper();
856 thr.join();
918 LooperThread thr = new LooperThread(new Runnable() { local
    [all...]
  /libcore/ojluni/src/main/java/sun/net/www/protocol/jar/
URLJarFile.java 226 } catch (Throwable thr) {
230 thr.addSuppressed(ioe);
232 throw thr;
  /packages/apps/Protips/src/com/android/protips/
ProtipWidget.java 52 HandlerThread thr = new HandlerThread("ProtipWidget async"); external variable declarations
53 thr.start();
54 mAsyncHandler = new Handler(thr.getLooper());
  /external/fio/os/
os-freebsd.h 9 #include <sys/thr.h>
  /development/samples/MySampleRss/src/com/example/codelab/rssexample/
RssService.java 87 Thread thr = new Thread(null, this, "rss_service_thread"); local
88 thr.start();

Completed in 2018 milliseconds

1 2 3 4 56 7 8 9