Searched refs:sh_1 (Results 1 – 3 of 3) sorted by relevance
/sysdeps/powerpc/power4/ |
A D | wordcopy.c | 75 int sh_1, sh_2; in WORDCOPY_FWD_DEST_ALIGNED() local 80 sh_1 = 8 * (srcp % OPSIZ); in WORDCOPY_FWD_DEST_ALIGNED() 81 sh_2 = 8 * OPSIZ - sh_1; in WORDCOPY_FWD_DEST_ALIGNED() 91 ((op_t *) dstp)[0] = MERGE (a0, sh_1, a1, sh_2); in WORDCOPY_FWD_DEST_ALIGNED() 106 ((op_t *) dstp)[0] = MERGE (a0, sh_1, a1, sh_2); in WORDCOPY_FWD_DEST_ALIGNED() 107 ((op_t *) dstp)[1] = MERGE (a1, sh_1, a2, sh_2); in WORDCOPY_FWD_DEST_ALIGNED() 170 int sh_1, sh_2; in WORDCOPY_BWD_DEST_ALIGNED() local 175 sh_1 = 8 * (srcp % OPSIZ); in WORDCOPY_BWD_DEST_ALIGNED() 176 sh_2 = 8 * OPSIZ - sh_1; in WORDCOPY_BWD_DEST_ALIGNED() 188 ((op_t *) dstp)[0] = MERGE (a1, sh_1, a2, sh_2); in WORDCOPY_BWD_DEST_ALIGNED() [all …]
|
/sysdeps/powerpc/power6/ |
A D | wordcopy.c | 89 int sh_1, sh_2; in WORDCOPY_FWD_DEST_ALIGNED() local 96 sh_1 = 8 * (srcp % OPSIZ); in WORDCOPY_FWD_DEST_ALIGNED() 97 sh_2 = 8 * OPSIZ - sh_1; in WORDCOPY_FWD_DEST_ALIGNED() 107 ((op_t *) dstp)[0] = MERGE (a0, sh_1, a1, sh_2); in WORDCOPY_FWD_DEST_ALIGNED() 189 int sh_1, sh_2; in WORDCOPY_BWD_DEST_ALIGNED() local 196 sh_1 = 8 * (srcp % OPSIZ); in WORDCOPY_BWD_DEST_ALIGNED() 197 sh_2 = 8 * OPSIZ - sh_1; in WORDCOPY_BWD_DEST_ALIGNED() 209 ((op_t *) dstp)[0] = MERGE (a1, sh_1, a2, sh_2); in WORDCOPY_BWD_DEST_ALIGNED()
|
/sysdeps/generic/ |
A D | memcopy.h | 68 #define MERGE(w0, sh_1, w1, sh_2) (((w0) >> (sh_1)) | ((w1) << (sh_2))) argument 71 #define MERGE(w0, sh_1, w1, sh_2) (((w0) << (sh_1)) | ((w1) >> (sh_2))) argument
|
Completed in 6 milliseconds