Home
last modified time | relevance | path

Searched refs:wp (Results 1 – 8 of 8) sorted by relevance

/lib/mpi/
Dgeneric_mpih-lshift.c41 mpihelp_lshift(mpi_ptr_t wp, mpi_ptr_t up, mpi_size_t usize, unsigned int cnt) in mpihelp_lshift() argument
49 wp += 1; in mpihelp_lshift()
57 wp[i] = (high_limb << sh_1) | (low_limb >> sh_2); in mpihelp_lshift()
60 wp[i] = high_limb << sh_1; in mpihelp_lshift()
Dgeneric_mpih-rshift.c42 mpihelp_rshift(mpi_ptr_t wp, mpi_ptr_t up, mpi_size_t usize, unsigned cnt) in mpihelp_rshift() argument
50 wp -= 1; in mpihelp_rshift()
57 wp[i] = (low_limb >> sh_1) | (high_limb << sh_2); in mpihelp_rshift()
60 wp[i] = low_limb >> sh_1; in mpihelp_rshift()
Dmpi-internal.h232 mpi_limb_t mpihelp_lshift(mpi_ptr_t wp, mpi_ptr_t up, mpi_size_t usize,
234 mpi_limb_t mpihelp_rshift(mpi_ptr_t wp, mpi_ptr_t up, mpi_size_t usize,
/lib/raid6/
Dneon.uc59 register unative_t wd$$, wq$$, wp$$, w1$$, w2$$;
67 wq$$ = wp$$ = vld1q_u8(&dptr[z0][d+$$*NSIZE]);
70 wp$$ = veorq_u8(wp$$, wd$$);
78 vst1q_u8(&p[d+NSIZE*$$], wp$$);
90 register unative_t wd$$, wq$$, wp$$, w1$$, w2$$;
99 wp$$ = veorq_u8(vld1q_u8(&p[d+$$*NSIZE]), wq$$);
104 wp$$ = veorq_u8(wp$$, wd$$);
123 vst1q_u8(&p[d+NSIZE*$$], wp$$);
Dint.uc88 unative_t wd$$, wq$$, wp$$, w1$$, w2$$;
95 wq$$ = wp$$ = *(unative_t *)&dptr[z0][d+$$*NSIZE];
98 wp$$ ^= wd$$;
105 *(unative_t *)&p[d+NSIZE*$$] = wp$$;
117 unative_t wd$$, wq$$, wp$$, w1$$, w2$$;
125 wq$$ = wp$$ = *(unative_t *)&dptr[z0][d+$$*NSIZE];
128 wp$$ ^= wd$$;
142 *(unative_t *)&p[d+NSIZE*$$] ^= wp$$;
Dtilegx.uc56 u64 wd$$, wq$$, wp$$, w1$$, w2$$;
66 wq$$ = wp$$ = *z0ptr++;
69 wp$$ = wp$$ ^ wd$$;
76 *p++ = wp$$;
Daltivec.uc74 unative_t wd$$, wq$$, wp$$, w1$$, w2$$;
82 wq$$ = wp$$ = *(unative_t *)&dptr[z0][d+$$*NSIZE];
85 wp$$ = vec_xor(wp$$, wd$$);
92 *(unative_t *)&p[d+NSIZE*$$] = wp$$;
/lib/
Dinflate.c169 #define wp outcnt macro
170 #define flush_output(w) (wp=(w),flush_window())
609 w = wp; /* initialize window position */ in inflate_codes()
690 wp = w; /* restore global window pointer */ in inflate_codes()
716 w = wp; /* initialize window position */ in inflate_stored()
749 wp = w; /* restore global window pointer */ in inflate_stored()
1092 wp = 0; in inflate()
1120 flush_output(wp); in inflate()