/system/extras/tests/bionic/libc/common/ |
D | test_pthread_join.c | 43 pthread_t t1 = (pthread_t)arg; in thread2_func() local 46 pthread_join(t1, &result); in thread2_func() 55 pthread_t t1 = (pthread_t)arg; in thread3_func() local 58 pthread_join(t1, &result); in thread3_func() 65 pthread_t t1, t2, t3; in main() local 67 pthread_create( &t1, NULL, thread1_func, NULL ); in main() 68 pthread_create( &t2, NULL, thread2_func, (void*)t1 ); in main() 69 pthread_create( &t3, NULL, thread3_func, (void*)t1 ); in main()
|
D | test_pthread_rwlock.c | 259 double t1; in do_rwlock_test_rd3_t1() local 268 t1 = time_now(); in do_rwlock_test_rd3_t1() 270 TTRUE((t1-s->t0) >= s->waitDelay); in do_rwlock_test_rd3_t1() 278 double t1; in do_rwlock_test_rd3_t2() local 289 t1 = time_now(); in do_rwlock_test_rd3_t2() 290 TTRUE((t1-s->t0) >= s->waitDelay); in do_rwlock_test_rd3_t2()
|
D | test_pthread_mutex.c | 288 double t1; in do_mutex_test_3_t1() local 291 t1 = time_now(); in do_mutex_test_3_t1() 293 TTRUE((t1-s->t0) >= s->waitDelay); in do_mutex_test_3_t1() 301 double t1; in do_mutex_test_3_t2() local 312 t1 = time_now(); in do_mutex_test_3_t2() 313 TTRUE((t1-s->t0) >= s->waitDelay); in do_mutex_test_3_t2()
|
/system/core/libcutils/tests/memset_mips/ |
D | android_memset_test.S | 42 DBG lui $t1,0xffff /* $a1 must be 16bits */ 43 DBG and $t1,$a1 44 DBG tne $t1 72 and $t1,$a2,63 /* is there enough left to do a full 64 byte loop? */ 73 beq $a2,$t1,1f 74 subu $t2,$a2,$t1 /* $t2 is the number of bytes to do in loop64 */ 99 andi $t1,$a2,0x3c /* $t1 how many bytes to store using sw */ 101 subu $t0,$t1 /* 64+12-$t0 is offset to jump from 1f */ 104 subu $a2,$t1 123 addu $a0,$t1
|
D | memset_omips.S | 38 slti t1, a2, 8 # Less than 8? 39 bne t1, zero, .Llast8
|
/system/core/libpixelflinger/tests/codegen/ |
D | codegen.cpp | 36 static void ggl_test_codegen(uint32_t n, uint32_t p, uint32_t t0, uint32_t t1) in ggl_test_codegen() argument 45 needs.t[1] = t1; in ggl_test_codegen() 75 uint32_t t1; in main() local 76 sscanf(argv[1], "%08x:%08x_%08x_%08x", &p, &n, &t0, &t1); in main() 77 ggl_test_codegen(n, p, t0, t1); in main()
|
/system/extras/tests/bionic/libc/bionic/ |
D | test_pthread_create.c | 22 pthread_t t1, t2; in main() local 24 pthread_create( &t1, NULL, thread1_func, (void *)1 ); in main() 26 pthread_join(t1, NULL); in main()
|
/system/extras/tests/bionic/libc/other/ |
D | bench_locks.c | 16 double t0, t1; in main() local 28 t1 = now() - t0; in main() 29 printf( "pthread_mutex_lock/unlock: %.5g us/op\n", (t1*1000000.0)/ITERATIONS ); in main()
|
/system/core/fastboot/ |
D | usbtest.c | 94 long long t0, t1; in test_null() local 103 t1 = NOW(); in test_null() 104 fprintf(stderr,"%d bytes in %lld uS\n", arg_count * arg_size, (t1 - t0)); in test_null() 112 long long t0, t1; in test_zero() local 121 t1 = NOW(); in test_zero() 122 fprintf(stderr,"%d bytes in %lld uS\n", arg_count * arg_size, (t1 - t0)); in test_zero()
|
/system/core/libpixelflinger/arch-mips/ |
D | t32cb16blend.S | 193 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,-2($a0)
|
/system/extras/tests/timetest/ |
D | timetest.c | 61 struct timespec t1, dtmin, dtminp, dtmax; in main() local 77 clock_gettime(clock_id, &t1); in main() 82 dt = ts_sub(t, t1); in main() 83 t1 = t; in main()
|
/system/extras/tests/pftest/ |
D | pftest.c | 101 unsigned long long t1 = stop_watch(); in main() local 105 printf("%d, %f\n", numPages, (float) (t1 - t0) / WORKLOAD); in main()
|
/system/core/libmincrypt/ |
D | sha256.c | 92 uint32_t t1 = H + s1 + ch + K[t] + W[t]; in SHA256_Transform() local 97 E = D + t1; in SHA256_Transform() 101 A = t1 + t2; in SHA256_Transform()
|
/system/core/init/ |
D | devices.c | 892 suseconds_t t0, t1; in device_init() local 914 t1 = get_usecs(); in device_init() 917 log_event_print("coldboot %ld uS\n", ((long) (t1 - t0))); in device_init()
|
/system/core/libpixelflinger/codeflinger/ |
D | texturing.cpp | 76 const int t1 = (parts.reload & 2) ? scratches.obtain() : 0; in init_iterated_color() local 91 parts.argb_dx[i].reg = (parts.reload & 2) ? t1 : obtainReg(); in init_iterated_color()
|