Home
last modified time | relevance | path

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

/linux/arch/nios2/lib/
A 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
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/lib/mpi/
A Dgeneric_mpih-lshift.c31 unsigned sh_1, sh_2; in mpihelp_lshift() local
37 sh_2 = BITS_PER_MPI_LIMB - sh_1; in mpihelp_lshift()
40 retval = low_limb >> sh_2; in mpihelp_lshift()
44 wp[i] = (high_limb << sh_1) | (low_limb >> sh_2); in mpihelp_lshift()
A Dgeneric_mpih-rshift.c32 unsigned sh_1, sh_2; in mpihelp_rshift() local
38 sh_2 = BITS_PER_MPI_LIMB - sh_1; in mpihelp_rshift()
40 retval = high_limb << sh_2; in mpihelp_rshift()
44 wp[i] = (low_limb >> sh_1) | (high_limb << sh_2); in mpihelp_rshift()

Completed in 12 milliseconds