Searched refs:MERGE (Results 1 – 2 of 2) sorted by relevance
/string/ |
A D | wordcopy.c | 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() 394 ((op_t *) dstp)[3] = MERGE (a0, sh_1, a1, sh_2); in WORDCOPY_BWD_DEST_ALIGNED() 397 ((op_t *) dstp)[2] = MERGE (a3, sh_1, a0, sh_2); in WORDCOPY_BWD_DEST_ALIGNED() 400 ((op_t *) dstp)[1] = MERGE (a2, sh_1, a3, sh_2); in WORDCOPY_BWD_DEST_ALIGNED() 403 ((op_t *) dstp)[0] = MERGE (a1, sh_1, a2, sh_2); in WORDCOPY_BWD_DEST_ALIGNED() 414 ((op_t *) dstp)[3] = MERGE (a0, sh_1, a1, sh_2); in WORDCOPY_BWD_DEST_ALIGNED()
|
A D | memcmp.c | 59 # define MERGE(w0, sh_1, w1, sh_2) (((w0) >> (sh_1)) | ((w1) << (sh_2))) macro 61 # define MERGE(w0, sh_1, w1, sh_2) (((w0) << (sh_1)) | ((w1) >> (sh_2))) macro 260 x = MERGE(a2, shl, a3, shr); in memcmp_not_common_alignment() 267 x = MERGE(a3, shl, a0, shr); in memcmp_not_common_alignment() 274 x = MERGE(a0, shl, a1, shr); in memcmp_not_common_alignment() 281 x = MERGE(a1, shl, a2, shr); in memcmp_not_common_alignment() 294 x = MERGE(a2, shl, a3, shr); in memcmp_not_common_alignment()
|
Completed in 5 milliseconds