Lines Matching defs:dq
28 uint8_t *dq, const uint8_t *pbmul,
42 * qx = qmul[*q ^ *dq];
43 * *dq++ = db = pbmul[px] ^ qx;
53 vx = veorq_u8(vld1q_u8(q), vld1q_u8(dq));
66 vst1q_u8(dq, db);
73 dq += 16;
77 void __raid6_datap_recov_neon(int bytes, uint8_t *p, uint8_t *q, uint8_t *dq,
86 * *p++ ^= *dq = qmul[*q ^ *dq];
87 * q++; dq++;
94 vx = veorq_u8(vld1q_u8(q), vld1q_u8(dq));
102 vst1q_u8(dq, vx);
108 dq += 16;