Searched refs:sh_1 (Results 1 – 3 of 3) sorted by relevance
/linux/arch/nios2/lib/ |
A D | memcpy.c | 31 #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/lib/mpi/ |
A D | generic_mpih-lshift.c | 31 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()
|
A D | generic_mpih-rshift.c | 32 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()
|
Completed in 8 milliseconds