HomeSort by relevance Sort by last modified time
    Searched defs:thr (Results 51 - 75 of 109) sorted by null

1 23 4 5

  /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
deringing_luma.cpp 41 int thr, blks, incr; local
94 thr = thres[blks];
97 thr, width, max_diff);
148 thr = thres[blks];
151 thr, width, max_diff);
210 thr = thres[blks];
213 thr, width, max_diff);
216 width, thr, max_diff);
  /libcore/luni/src/test/java/libcore/java/lang/
OldThrowableTest.java 26 Throwable thr = new Throwable(message, npe); local
27 assertEquals("message is incorrect.", message, thr.getMessage());
28 assertEquals("cause is incorrect.", npe, thr.getCause());
30 thr = new Throwable(null, npe);
31 assertNull("message is not null.", thr.getMessage());
32 assertEquals("cause is incorrect.", npe, thr.getCause());
34 thr = new Throwable(message, null);
35 assertEquals("message is incorrect.", message, thr.getMessage());
36 assertNull("cause is not null.", thr.getCause());
42 Throwable thr = new Throwable(npe) local
74 Throwable thr = new Throwable(message, npe); local
83 Throwable thr = new Throwable(); local
118 Throwable thr = new Throwable(npe); local
    [all...]
OldThreadGroupTest.java 202 for(MyThread thr:subThreads) {
203 thr.start();
220 for(MyThread thr:subThreads1) {
221 thr.start();
229 for(MyThread thr:subThreads) {
230 thr.interrupt();
OldThreadTest.java 407 Thread thr = new Thread(); local
408 thr.start();
410 thr.start();
  /system/core/debuggerd/
crasher.c 85 pthread_t thr; local
89 pthread_create(&thr, &attr, noisy, (void*) 'A');
90 pthread_create(&thr, &attr, noisy, (void*) 'B');
91 pthread_create(&thr, &attr, noisy, (void*) 'C');
  /packages/providers/MediaProvider/src/com/android/providers/media/
MediaScannerService.java 103 Thread thr = new Thread(null, this, "MediaScannerService"); local
104 thr.start();
  /external/autotest/client/site_tests/security_ptraceRestrictions/src/
thread-prctl.c 121 pthread_t thr; local
146 pthread_create(&thr, NULL, thr_fn, NULL);
147 pthread_join(thr, NULL);
  /external/compiler-rt/lib/tsan/rtl/
tsan_interface_inl.h 88 ThreadState *thr = cur_thread(); local
89 thr->is_vptr_access = true;
90 MemoryWrite(thr, CALLERPC, (uptr)vptr_p, kSizeLog8);
91 thr->is_vptr_access = false;
97 ThreadState *thr = cur_thread(); local
98 thr->is_vptr_access = true;
99 MemoryRead(thr, CALLERPC, (uptr)vptr_p, kSizeLog8);
100 thr->is_vptr_access = false;
tsan_mman.cc 70 void AllocatorThreadStart(ThreadState *thr) {
71 allocator()->InitCache(&thr->alloc_cache);
72 internal_allocator()->InitCache(&thr->internal_alloc_cache);
75 void AllocatorThreadFinish(ThreadState *thr) {
76 allocator()->DestroyCache(&thr->alloc_cache);
77 internal_allocator()->DestroyCache(&thr->internal_alloc_cache);
84 static void SignalUnsafeCall(ThreadState *thr, uptr pc) {
85 if (atomic_load_relaxed(&thr->in_signal_handler) == 0 ||
89 ObtainCurrentStack(thr, pc, &stack);
95 OutputReport(thr, rep)
171 ThreadState *thr = cur_thread(); local
178 ThreadState *thr = cur_thread(); local
185 ThreadState *thr = cur_thread(); local
194 ThreadState *thr = cur_thread(); local
240 ThreadState *thr = cur_thread(); local
    [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->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)
363 ThreadState *thr = reinterpret_cast<ThreadState*>(arg); local
406 ThreadState *thr = reinterpret_cast<ThreadState*>(arg); local
    [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)
81 ThreadState *thr; member in struct:__tsan::OnStartedArgs
    [all...]
  /external/compiler-rt/lib/tsan/tests/rtl/
tsan_test_util_posix.cc 96 pthread_t thr; local
97 __interceptor_pthread_create(&thr, 0, BeforeInitThread, 0);
98 __interceptor_pthread_join(thr, 0);
  /packages/apps/Protips/src/com/android/protips/
ProtipWidget.java 52 HandlerThread thr = new HandlerThread("ProtipWidget async"); typedefs
53 thr.start();
54 mAsyncHandler = new Handler(thr.getLooper());
  /cts/tests/tests/security/src/android/security/cts/
StagefrightTest.java 308 LooperThread thr = new LooperThread(new Runnable() { local
335 thr.start();
432 thr.stopLooper();
  /development/samples/MySampleRss/src/com/example/codelab/rssexample/
RssService.java 87 Thread thr = new Thread(null, this, "rss_service_thread"); local
88 thr.start();
  /frameworks/base/core/java/android/os/
Binder.java 434 Thread thr = new Thread("Binder.dumpAsync") { local
443 thr.start();
  /external/compiler-rt/lib/tsan/go/
tsan_go.cc 78 ThreadState *thr = (ThreadState*)internal_alloc(MBlockThreadContex, local
80 internal_memset(thr, 0, sizeof(*thr));
81 return thr;
86 ThreadState *thr = AllocGoroutine(); local
87 main_thr = *thrp = thr;
88 Initialize(thr);
94 ThreadState *thr = main_thr; local
95 int res = Finalize(thr);
103 void __tsan_read(ThreadState *thr, void *addr, void *pc)
150 ThreadState *thr = AllocGoroutine(); local
    [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);
  /external/libvpx/libvpx/vp8/common/
mfqe.c 150 unsigned int act, actd, sad, usad, vsad, sse, thr, thrsq, actrisk; local
189 /* thr = qdiff/16 + log2(act) + log4(qprev) */
190 thr = (qdiff >> 4);
191 while (actd >>= 1) thr++;
192 while (qprev >>= 2) thr++;
195 thrsq = thr * thr;
201 if (sad < thr &&
204 2 * usad < thr && 2 * vsad < thr && !actrisk
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/
mfqe.c 149 unsigned int act, actd, sad, usad, vsad, sse, thr, thrsq, actrisk; local
188 /* thr = qdiff/16 + log2(act) + log4(qprev) */
189 thr = (qdiff >> 4);
190 while (actd >>= 1) thr++;
191 while (qprev >>= 2) thr++;
194 thrsq = thr * thr;
200 if (sad < thr &&
203 2 * usad < thr && 2 * vsad < thr && !actrisk
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/alerts/
AlertReceiver.java 95 HandlerThread thr = new HandlerThread("AlertReceiver async"); typedefs
96 thr.start();
97 sAsyncHandler = new Handler(thr.getLooper());
    [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/aac/libSBRenc/src/
tran_det.cpp 929 const FIXP_DBL thr = TRAN_DET_THRSHLD; local
    [all...]
  /external/libvpx/libvpx/vp9/encoder/x86/
vp9_dct_ssse3.c 299 __m128i round, quant, dequant, thr; local
375 thr = _mm_srai_epi16(dequant, 1);
395 nzflag = _mm_movemask_epi8(_mm_cmpgt_epi16(qcoeff0, thr)) |
396 _mm_movemask_epi8(_mm_cmpgt_epi16(qcoeff1, thr));
  /external/valgrind/callgrind/
dump.c 1321 thread_info** thr = CLG_(get_threads)(); local
    [all...]

Completed in 1650 milliseconds

1 23 4 5