Home
last modified time | relevance | path

Searched refs:t0 (Results 1 – 14 of 14) sorted by relevance

/system/core/libcutils/tests/memset_mips/
Dmemset_omips.S44 sll t0, a1, 8
45 or a1, t0
46 sll t0, a1, 16
47 or a1, t0 # a1 is now pattern in full word
50 subu t0, zero, a0 # Unaligned address?
51 andi t0, 0x3
52 beq t0, zero, .Lchkw
53 subu a2, t0
55 addu a0, t0 # Now both a0 and a2 are updated
58 andi t0, a2, 0x7 # Enough left for one loop iteration?
[all …]
Dandroid_memset_test.S40 DBG andi $t0,$a0,1 /* $a0 must be halfword aligned */
41 DBG tne $t0
51 li $t0,~1
52 and $a2,$t0
57 andi $t0,$a0,2 /* Check dst alignment */
60 beqz $t0,.Laligned32 /* dst is 32 bit aligned */
64 beqz $t0,.Laligned32 /* dst is 32 bit aligned */
98 1: li $t0,64+12
101 subu $t0,$t1 /* 64+12-$t0 is offset to jump from 1f */
102 1: addu $ra,$t0
[all …]
Dmemset_cmips.S67 addu t0,a0,a2 # t0 is the "past the end" address
/system/core/libpixelflinger/tests/codegen/
Dcodegen.cpp36 static void ggl_test_codegen(uint32_t n, uint32_t p, uint32_t t0, uint32_t t1) in ggl_test_codegen() argument
44 needs.t[0] = t0; in ggl_test_codegen()
74 uint32_t t0; 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/other/
Dbench_locks.c16 double t0, t1; in main() local
23 t0 = now(); in main()
28 t1 = now() - t0; in main()
/system/core/fastboot/
Dusbtest.c94 long long t0, t1; in test_null() local
96 t0 = 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
114 t0 = 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/
Dt32cb16blend.S54 ext $t0,\dreg,\shift+5,6 # start green extraction dst[\shift:10..5]
61 mul $t8,$t0,$t7
62 ext $t0,\dreg,\shift,5 # start blue extraction dst[\shift:4..0]
68 mul $t0,$t0,$t7
71 srl $t8,$t0,8
182 and $t0,$a0,3
183 beqz $t0,aligned
/system/extras/tests/pftest/
Dpftest.c97 unsigned long long t0 = stop_watch(); in main() local
105 printf("%d, %f\n", numPages, (float) (t1 - t0) / WORKLOAD); in main()
/system/extras/tests/bionic/libc/common/
Dtest_pthread_rwlock.c251 double t0; member
270 TTRUE((t1-s->t0) >= s->waitDelay); in do_rwlock_test_rd3_t1()
290 TTRUE((t1-s->t0) >= s->waitDelay); in do_rwlock_test_rd3_t2()
311 s->t0 = time_now(); in do_test_rwlock_rd3()
Dtest_pthread_mutex.c280 double t0; member
293 TTRUE((t1-s->t0) >= s->waitDelay); in do_mutex_test_3_t1()
313 TTRUE((t1-s->t0) >= s->waitDelay); in do_mutex_test_3_t2()
334 s->t0 = time_now(); in do_test_mutex_3()
/system/core/libpixelflinger/
Draster.cpp176 const GGLint t0 = Vcr - y; in gglBitBlit() local
177 c->procs.texCoord2i(c, s0, t0); in gglBitBlit()
199 int32_t t0 = Vcr - gglMulx(dtdy, y); // t0 = Vcr - y * dtdy in gglBitBlit() local
203 texcoords[3] = t0; in gglBitBlit()
Dscanline.cpp2006 int32_t t0 = gglMulx(t, iw, iwscale); in scanline_perspective_single() local
2028 dtdx = (tq - t0) / premainder; in scanline_perspective_single()
2042 dtdx = (tq - t0) >> SPAN_BITS; in scanline_perspective_single()
2054 ti.ydtdy = t0 << tscale; in scanline_perspective_single()
2057 ti.ydtdy = t0 >>-tscale; in scanline_perspective_single()
2061 t0 = tq; in scanline_perspective_single()
/system/core/init/
Ddevices.c880 suseconds_t t0, t1; in device_init() local
898 t0 = get_usecs(); in device_init()
905 log_event_print("coldboot %ld uS\n", ((long) (t1 - t0))); in device_init()
/system/core/libpixelflinger/codeflinger/
Dtexturing.cpp75 const int t0 = (parts.reload & 1) ? scratches.obtain() : 0; in init_iterated_color() local
83 const int c = (parts.reload & 1) ? t0 : obtainReg(); in init_iterated_color()