HomeSort by relevance Sort by last modified time
    Searched defs:thr (Results 76 - 100 of 122) sorted by null

1 2 34 5

  /external/mesa3d/src/egl/main/
eglcurrent.c 300 _EGLThreadInfo *thr = _eglGetCurrentThread(); local
305 funcName = thr->CurrentFuncName;
323 callback(error, funcName, type, thr->Label, thr->CurrentObjectLabel, buf);
  /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);
  /art/test/1900-track-alloc/src/art/
Test1900.java 48 for (Thread thr : thrs) {
49 thr.join();
  /art/test/1917-get-stack-frame/src/art/
Test1917.java 63 private final Thread thr; field in class:Test1917.StackTraceGenerator
65 public StackTraceGenerator(Thread thr, Consumer<StackTrace.StackFrameData> con) {
66 this.thr = thr;
75 if (thr == null) {
78 return thr;
136 Thread thr = new Thread(
141 thr.start();
142 thr.join();
  /art/tools/jvmti-agents/simple-force-redefine/
forceredefine.cc 230 static void CbVmInit(jvmtiEnv* jvmti, JNIEnv* env, jthread thr ATTRIBUTE_UNUSED) {
300 jthread thr; local
301 jvmti->GetCurrentThread(&thr);
302 CbVmInit(jvmti, jni, thr);
  /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 83 ThreadState *thr = cur_thread(); local
84 if (thr->proc())
101 ProcWire(gp->proc, thr);
106 ThreadState *thr = cur_thread(); local
107 if (thr->proc() != gp->proc)
109 ProcUnwire(gp->proc, thr);
135 static void SignalUnsafeCall(ThreadState *thr, uptr pc) {
136 if (atomic_load_relaxed(&thr->in_signal_handler) == 0 ||
140 ObtainCurrentStack(thr, pc, &stack);
146 OutputReport(thr, rep)
227 ThreadState *thr = cur_thread(); local
235 ThreadState *thr = cur_thread(); local
243 ThreadState *thr = cur_thread(); local
252 ThreadState *thr = cur_thread(); local
298 ThreadState *thr = cur_thread(); local
    [all...]
tsan_platform_linux.cc 356 ThreadState* thr = (ThreadState*)__get_tls()[TLS_SLOT_TSAN]; local
357 if (thr == nullptr) {
362 thr = reinterpret_cast<ThreadState*>(__get_tls()[TLS_SLOT_TSAN]);
363 if (thr == nullptr) {
364 thr = reinterpret_cast<ThreadState*>(MmapOrDie(sizeof(ThreadState),
366 __get_tls()[TLS_SLOT_TSAN] = thr;
380 return thr;
388 ThreadState* thr = (ThreadState*)__get_tls()[TLS_SLOT_TSAN]; local
389 if (thr != dead_thread_state) {
391 UnmapOrDie(thr, sizeof(ThreadState))
    [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->proc()->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)
374 ThreadState *thr = reinterpret_cast<ThreadState*>(arg); local
417 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);
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_mutex_lock/
3-1.c 94 pthread_t *thr; member in struct:__anon32329
115 if ((ret = pthread_kill(*(thearg->thr), thearg->sig))) {
314 arg1.thr = &th_work;
315 arg2.thr = &th_work;
  /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);
  /development/samples/MySampleRss/src/com/example/codelab/rssexample/
RssService.java 87 Thread thr = new Thread(null, this, "rss_service_thread"); local
88 thr.start();
  /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/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/body/
CallableDeclaration.java 205 for (ReferenceType thr : getThrownExceptions()) {
212 sb.append(thr.toString(prettyPrinterNoCommentsConfiguration));
  /external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-core/com/github/javaparser/ast/body/
ConstructorDeclaration.java 214 for (ReferenceType thr : getThrows()) {
221 sb.append(thr.toStringWithoutComments());
MethodDeclaration.java 350 for (ReferenceType thr : getThrows()) {
357 sb.append(thr.toStringWithoutComments());
  /external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_src/proper_source/com/github/javaparser/ast/body/
ConstructorDeclaration.java 203 for (NameExpr thr : getThrows()) {
210 sb.append(thr.toStringWithoutComments());
MethodDeclaration.java 281 for (NameExpr thr : getThrows()) {
288 sb.append(thr.toStringWithoutComments());
  /external/libaom/libaom/av1/encoder/x86/
av1_quantize_avx2.c 47 __m256i *thr, __m256i *qp) {
66 *thr = _mm256_srai_epi16(qp[2], 1 + log_scale);
69 static INLINE void update_qp(int log_scale, __m256i *thr, __m256i *qp) {
73 *thr = _mm256_srai_epi16(qp[2], 1 + log_scale);
107 static INLINE void quantize(const __m256i *thr, const __m256i *qp, __m256i *c,
111 __m256i mask = _mm256_cmpgt_epi16(abs_coeff, *thr);
112 mask = _mm256_or_si256(mask, _mm256_cmpeq_epi16(abs_coeff, *thr));
148 __m256i coeff, thr; local
151 init_qp(round_ptr, quant_ptr, dequant_ptr, log_scale, &thr, qp);
155 quantize(&thr, qp, &coeff, iscan_ptr, qcoeff_ptr, dqcoeff_ptr, &eob)
223 __m256i coeff, thr; local
302 __m256i coeff, thr; local
    [all...]
  /external/libvpx/libvpx/test/
vp9_quantize_test.cc 171 const int thr = dequant_ptr[1] >> (1 + is_32x32); local
191 if (i >= 16 && (abs_coeff[y] <= thr)) {
  /external/libvpx/libvpx/vp8/common/
mfqe.c 122 unsigned int act, actd, sad, usad, vsad, sse, thr, thrsq, actrisk; local
158 /* thr = qdiff/16 + log2(act) + log4(qprev) */
159 thr = (qdiff >> 4);
160 while (actd >>= 1) thr++;
161 while (qprev >>= 2) thr++;
164 thrsq = thr * thr;
170 if (sad < thr &&
173 2 * usad < thr && 2 * vsad < thr && !actrisk
    [all...]
  /external/u-boot/drivers/i2c/
at91_i2c.h 42 u32 thr; member in struct:at91_i2c_regs

Completed in 1695 milliseconds

1 2 34 5