Searched refs:t1 (Results 1 - 16 of 16) sorted by last modified time

/system/bluetooth/tools/
H A Dasocket_test.c611 pthread_t t1; local
624 pthread_create(&t1, NULL, (void *)thread_accept_write, (void *)&a1);
633 pthread_join(t1, NULL);
645 pthread_t t1; local
657 pthread_create(&t1, NULL, (void *)thread_delay_connect, (void *)&a1);
662 pthread_join(t1, NULL);
H A Dpipetest.c152 pthread_t t1; local
158 pthread_create(&t1, NULL, (void *)thread_poll, NULL);
165 pthread_join(t1, NULL);
268 pthread_t t1; local
276 pthread_create(&t1, NULL, (void *)thread_pollin, (void *)fd[0]);
284 pthread_join(t1, NULL);
317 pthread_t t1;
323 pthread_create(&t1, NULL, (void *)thread_poll, (void *)fd[0]);
330 pthread_join(t1, NULL);
H A Dsocktest.c683 pthread_t t1; local
696 pthread_create(&t1, NULL, (void *)thread_accept_write, (void *)&a1);
705 pthread_join(t1, NULL);
717 pthread_t t1; local
729 pthread_create(&t1, NULL, (void *)thread_delay_connect, (void *)&a1);
734 pthread_join(t1, NULL);
/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/core/init/
H A Ddevices.c882 suseconds_t t0, t1; local
904 t1 = get_usecs();
907 log_event_print("coldboot %ld uS\n", ((long) (t1 - t0)));
/system/core/libcutils/
H A Dtztime.c174 static int differ_by_repeat P((time_t t1, time_t t0));
296 differ_by_repeat(t1, t0)
297 const time_t t1;
303 return t1 - t0 == SECSPERREPEAT;
/system/core/libpixelflinger/arch-mips/
H A Dt32cb16blend.S193 pixel $t3,$t4,$t1,0
194 sh $t1,-2($a0)
217 pixel $t3,$t4,$t1,0
218 pixel $t3,$t5,$t1,16
219 sw $t1,-8($a0)
233 pixel $t3,$t4,$t1,0
234 pixel $t3,$t5,$t1,16
235 sw $t1,-4($a0)
252 pixel $t3,$t4,$t1,0
253 sh $t1,
[all...]
/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();
/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/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/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/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;

Completed in 541 milliseconds