Home
last modified time | relevance | path

Searched refs:sh_1 (Results 1 – 3 of 3) sorted by relevance

/linux-5.19.10/arch/nios2/lib/
Dmemcpy.c31 #define MERGE(w0, sh_1, w1, sh_2) (((w0) >> (sh_1)) | ((w1) << (sh_2))) argument
116 int sh_1, sh_2; in _wordcopy_fwd_dest_aligned() local
121 sh_1 = 8 * (srcp % OPSIZ); in _wordcopy_fwd_dest_aligned()
122 sh_2 = 8 * OPSIZ - sh_1; in _wordcopy_fwd_dest_aligned()
137 ((op_t *) dstp)[0] = MERGE(ap, sh_1, a0, sh_2); in _wordcopy_fwd_dest_aligned()
138 ((op_t *) dstp)[1] = MERGE(a0, sh_1, a1, sh_2); in _wordcopy_fwd_dest_aligned()
139 ((op_t *) dstp)[2] = MERGE(a1, sh_1, a2, sh_2); in _wordcopy_fwd_dest_aligned()
140 ((op_t *) dstp)[3] = MERGE(a2, sh_1, a3, sh_2); in _wordcopy_fwd_dest_aligned()
151 ((op_t *) dstp)[0] = MERGE(ap, sh_1, a0, sh_2); in _wordcopy_fwd_dest_aligned()
/linux-5.19.10/lib/mpi/
Dgeneric_mpih-lshift.c31 unsigned sh_1, sh_2; in mpihelp_lshift() local
35 sh_1 = cnt; in mpihelp_lshift()
37 sh_2 = BITS_PER_MPI_LIMB - sh_1; in mpihelp_lshift()
44 wp[i] = (high_limb << sh_1) | (low_limb >> sh_2); in mpihelp_lshift()
47 wp[i] = high_limb << sh_1; in mpihelp_lshift()
Dgeneric_mpih-rshift.c32 unsigned sh_1, sh_2; in mpihelp_rshift() local
36 sh_1 = cnt; in mpihelp_rshift()
38 sh_2 = BITS_PER_MPI_LIMB - sh_1; in mpihelp_rshift()
44 wp[i] = (low_limb >> sh_1) | (high_limb << sh_2); in mpihelp_rshift()
47 wp[i] = low_limb >> sh_1; in mpihelp_rshift()