Home
last modified time | relevance | path

Searched refs:sh_2 (Results 1 – 7 of 7) sorted by relevance

/glibc-2.36/sysdeps/powerpc/power4/
Dwordcopy.c75 int sh_1, sh_2; in WORDCOPY_FWD_DEST_ALIGNED() local
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
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()
204 ((op_t *) dstp)[1] = MERGE (a1, sh_1, a2, sh_2); in WORDCOPY_BWD_DEST_ALIGNED()
205 ((op_t *) dstp)[0] = MERGE (a0, sh_1, a1, sh_2); in WORDCOPY_BWD_DEST_ALIGNED()
/glibc-2.36/string/
Dwordcopy.c145 int sh_1, sh_2; in WORDCOPY_FWD_DEST_ALIGNED() local
151 sh_2 = 8 * OPSIZ - sh_1; in WORDCOPY_FWD_DEST_ALIGNED()
197 ((op_t *) dstp)[0] = MERGE (a2, sh_1, a3, sh_2); in WORDCOPY_FWD_DEST_ALIGNED()
200 ((op_t *) dstp)[1] = MERGE (a3, sh_1, a0, sh_2); in WORDCOPY_FWD_DEST_ALIGNED()
203 ((op_t *) dstp)[2] = MERGE (a0, sh_1, a1, sh_2); in WORDCOPY_FWD_DEST_ALIGNED()
206 ((op_t *) dstp)[3] = MERGE (a1, sh_1, a2, sh_2); in WORDCOPY_FWD_DEST_ALIGNED()
217 ((op_t *) dstp)[0] = MERGE (a2, sh_1, a3, sh_2); in WORDCOPY_FWD_DEST_ALIGNED()
342 int sh_1, sh_2; in WORDCOPY_BWD_DEST_ALIGNED() local
348 sh_2 = 8 * OPSIZ - sh_1; in WORDCOPY_BWD_DEST_ALIGNED()
394 ((op_t *) dstp)[3] = MERGE (a0, sh_1, a1, sh_2); in WORDCOPY_BWD_DEST_ALIGNED()
[all …]
Dmemcmp.c59 # define MERGE(w0, sh_1, w1, sh_2) (((w0) >> (sh_1)) | ((w1) << (sh_2))) argument
61 # define MERGE(w0, sh_1, w1, sh_2) (((w0) << (sh_1)) | ((w1) >> (sh_2))) argument
/glibc-2.36/sysdeps/powerpc/power6/
Dwordcopy.c89 int sh_1, sh_2; in WORDCOPY_FWD_DEST_ALIGNED() local
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
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()
/glibc-2.36/stdlib/
Dlshift.c39 register unsigned sh_1, sh_2; in mpn_lshift() local
64 sh_2 = BITS_PER_MP_LIMB - sh_1; in mpn_lshift()
67 retval = low_limb >> sh_2; in mpn_lshift()
72 wp[i] = (high_limb << sh_1) | (low_limb >> sh_2); in mpn_lshift()
Drshift.c41 register unsigned sh_1, sh_2; in mpn_rshift() local
64 sh_2 = BITS_PER_MP_LIMB - sh_1; in mpn_rshift()
66 retval = high_limb << sh_2; in mpn_rshift()
72 wp[i] = (low_limb >> sh_1) | (high_limb << sh_2); in mpn_rshift()
/glibc-2.36/sysdeps/generic/
Dmemcopy.h68 #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