Lines Matching defs:text
158 struct { uint64_t aad, text; } len;
177 actx->len.text = 0;
239 actx->len.text = plen;
264 actx->len.text = plen;
298 actx->len.text = plen;
329 ctr[8] = (unsigned char)(actx->len.text);
330 ctr[9] = (unsigned char)(actx->len.text>>8);
331 ctr[10] = (unsigned char)(actx->len.text>>16);
332 ctr[11] = (unsigned char)(actx->len.text>>24);
333 ctr[12] = (unsigned char)(actx->len.text>>32);
334 ctr[13] = (unsigned char)(actx->len.text>>40);
335 ctr[14] = (unsigned char)(actx->len.text>>48);
336 ctr[15] = (unsigned char)(actx->len.text>>56);
381 actx->len.aad = actx->len.text = 0;
391 if (in) { /* aad or text */
416 actx->len.text += plen;
422 actx->len.text += plen;
438 if ((rem = (size_t)actx->len.text % POLY1305_BLOCK_SIZE))
455 temp[8] = (unsigned char)(actx->len.text);
456 temp[9] = (unsigned char)(actx->len.text>>8);
457 temp[10] = (unsigned char)(actx->len.text>>16);
458 temp[11] = (unsigned char)(actx->len.text>>24);
459 temp[12] = (unsigned char)(actx->len.text>>32);
460 temp[13] = (unsigned char)(actx->len.text>>40);
461 temp[14] = (unsigned char)(actx->len.text>>48);
462 temp[15] = (unsigned char)(actx->len.text>>56);
511 actx->len.text = 0;