Lines Matching refs:t0
17 #define MOVE_BIGCHUNK(src, dst, offset, t0, t1, t2, t3, t4, t5, t6, t7) \ argument
18 ldd [%src + (offset) + 0x00], %t0; \
22 st %t0, [%dst + (offset) + 0x00]; \
31 #define MOVE_BIGALIGNCHUNK(src, dst, offset, t0, t1, t2, t3, t4, t5, t6, t7) \ argument
32 ldd [%src + (offset) + 0x00], %t0; \
36 std %t0, [%dst + (offset) + 0x00]; \
41 #define MOVE_LASTCHUNK(src, dst, offset, t0, t1, t2, t3) \ argument
42 ldd [%src - (offset) - 0x10], %t0; \
44 st %t0, [%dst - (offset) - 0x10]; \
49 #define MOVE_LASTALIGNCHUNK(src, dst, offset, t0, t1, t2, t3) \ argument
50 ldd [%src - (offset) - 0x10], %t0; \
52 std %t0, [%dst - (offset) - 0x10]; \
55 #define MOVE_SHORTCHUNK(src, dst, offset, t0, t1) \ argument
56 ldub [%src - (offset) - 0x02], %t0; \
58 stb %t0, [%dst - (offset) - 0x02]; \
62 #define RMOVE_BIGCHUNK(src, dst, offset, t0, t1, t2, t3, t4, t5, t6, t7) \ argument
63 ldd [%src - (offset) - 0x20], %t0; \
67 st %t0, [%dst - (offset) - 0x20]; \
76 #define RMOVE_BIGALIGNCHUNK(src, dst, offset, t0, t1, t2, t3, t4, t5, t6, t7) \ argument
77 ldd [%src - (offset) - 0x20], %t0; \
81 std %t0, [%dst - (offset) - 0x20]; \
86 #define RMOVE_LASTCHUNK(src, dst, offset, t0, t1, t2, t3) \ argument
87 ldd [%src + (offset) + 0x00], %t0; \
89 st %t0, [%dst + (offset) + 0x00]; \
94 #define RMOVE_SHORTCHUNK(src, dst, offset, t0, t1) \ argument
95 ldub [%src + (offset) + 0x00], %t0; \
97 stb %t0, [%dst + (offset) + 0x00]; \
100 #define SMOVE_CHUNK(src, dst, offset, t0, t1, t2, t3, t4, t5, t6, prev, shil, shir, offset2) \ argument
101 ldd [%src + (offset) + 0x00], %t0; \
103 srl %t0, shir, %t5; \
105 sll %t0, shil, %t0; \
108 or %t6, %t0, %t0; \
114 std %t0, [%dst + (offset) + (offset2) + 0x04]; \
118 #define SMOVE_ALIGNCHUNK(src, dst, offset, t0, t1, t2, t3, t4, t5, t6, prev, shil, shir, offset2) \ argument
119 ldd [%src + (offset) + 0x00], %t0; \
121 srl %t0, shir, %t4; \
123 sll %t0, shil, %t6; \
124 or %t4, %prev, %t0; \
133 std %t0, [%dst + (offset) + (offset2) + 0x00]; \