Lines Matching refs:p0
97 register RC2_INT *p0, *p1; in RC2_encrypt() local
111 p0 = p1 = &(key->data[0]); in RC2_encrypt()
113 t = (x0 + (x1 & ~x3) + (x2 & x3) + *(p0++)) & 0xffff; in RC2_encrypt()
115 t = (x1 + (x2 & ~x0) + (x3 & x0) + *(p0++)) & 0xffff; in RC2_encrypt()
117 t = (x2 + (x3 & ~x1) + (x0 & x1) + *(p0++)) & 0xffff; in RC2_encrypt()
119 t = (x3 + (x0 & ~x2) + (x1 & x2) + *(p0++)) & 0xffff; in RC2_encrypt()
143 register RC2_INT *p0, *p1; in RC2_decrypt() local
157 p0 = &(key->data[63]); in RC2_decrypt()
161 x3 = (t - (x0 & ~x2) - (x1 & x2) - *(p0--)) & 0xffff; in RC2_decrypt()
163 x2 = (t - (x3 & ~x1) - (x0 & x1) - *(p0--)) & 0xffff; in RC2_decrypt()
165 x1 = (t - (x2 & ~x0) - (x3 & x0) - *(p0--)) & 0xffff; in RC2_decrypt()
167 x0 = (t - (x1 & ~x3) - (x2 & x3) - *(p0--)) & 0xffff; in RC2_decrypt()