Searched defs:t1 (Results 1 - 12 of 12) sorted by relevance

/system/extras/tests/bionic/libc/bionic/
H A Dtest_pthread_create.c22 pthread_t t1, t2; local
24 pthread_create( &t1, NULL, thread1_func, (void *)1 );
26 pthread_join(t1, NULL);
/system/extras/tests/bionic/libc/common/
H A Dtest_pthread_join.c43 pthread_t t1 = (pthread_t)arg; local
46 pthread_join(t1, &result);
55 pthread_t t1 = (pthread_t)arg; local
58 pthread_join(t1, &result);
65 pthread_t t1, t2, t3; local
67 pthread_create( &t1, NULL, thread1_func, NULL );
68 pthread_create( &t2, NULL, thread2_func, (void*)t1 );
69 pthread_create( &t3, NULL, thread3_func, (void*)t1 );
H A Dtest_pthread_mutex.c288 double t1; local
291 t1 = time_now();
292 //DEBUG ONLY: printf("t1-s->t0=%g waitDelay=%g\n", t1-s->t0, s->waitDelay);
293 TTRUE((t1-s->t0) >= s->waitDelay);
301 double t1; local
312 t1 = time_now();
313 TTRUE((t1-s->t0) >= s->waitDelay);
H A Dtest_pthread_rwlock.c259 double t1; local
268 t1 = time_now();
269 //DEBUG ONLY: printf("t1-s->t0=%g waitDelay=%g\n", t1-s->t0, s->waitDelay);
270 TTRUE((t1-s->t0) >= s->waitDelay);
278 double t1; local
289 t1 = time_now();
290 TTRUE((t1-s->t0) >= s->waitDelay);
/system/extras/tests/bionic/libc/other/
H A Dbench_locks.c16 double t0, t1; local
28 t1 = now() - t0;
29 printf( "pthread_mutex_lock/unlock: %.5g us/op\n", (t1*1000000.0)/ITERATIONS );
/system/core/libpixelflinger/tests/codegen/
H A Dcodegen.cpp36 static void ggl_test_codegen(uint32_t n, uint32_t p, uint32_t t0, uint32_t t1) argument
45 needs.t[1] = t1;
75 uint32_t t1; local
76 sscanf(argv[1], "%08x:%08x_%08x_%08x", &p, &n, &t0, &t1);
77 ggl_test_codegen(n, p, t0, t1);
/system/extras/tests/pftest/
H A Dpftest.c101 unsigned long long t1 = stop_watch(); local
105 printf("%d, %f\n", numPages, (float) (t1 - t0) / WORKLOAD);
/system/core/fastboot/
H A Dusbtest.c94 long long t0, t1; local
103 t1 = NOW();
104 fprintf(stderr,"%d bytes in %lld uS\n", arg_count * arg_size, (t1 - t0));
112 long long t0, t1; local
121 t1 = NOW();
122 fprintf(stderr,"%d bytes in %lld uS\n", arg_count * arg_size, (t1 - t0));
/system/extras/tests/timetest/
H A Dtimetest.c61 struct timespec t1, dtmin, dtminp, dtmax; local
77 clock_gettime(clock_id, &t1);
82 dt = ts_sub(t, t1);
83 t1 = t;
/system/core/libmincrypt/
H A Dsha256.c92 uint32_t t1 = H + s1 + ch + K[t] + W[t]; local
97 E = D + t1;
101 A = t1 + t2;
/system/core/init/
H A Ddevices.c892 suseconds_t t0, t1; local
914 t1 = get_usecs();
917 log_event_print("coldboot %ld uS\n", ((long) (t1 - t0)));
/system/core/libpixelflinger/codeflinger/
H A Dtexturing.cpp76 const int t1 = (parts.reload & 2) ? scratches.obtain() : 0; local
91 parts.argb_dx[i].reg = (parts.reload & 2) ? t1 : obtainReg();

Completed in 122 milliseconds