Lines Matching defs:start
268 char *start, *end;
269 start = input->cd_raw.iov_base + input->cd_offset;
273 if (start + input->cd_length > end)
276 arcfour_crypt(key, (uchar_t *)start, (uchar_t *)start,
281 uchar_t *start, *end;
287 mp1 = advance_position(mp, input->cd_offset, &start);
300 if (_PTRDIFF(mp1->b_wptr, start) > left) {
302 arcfour_crypt(key, start, start, len);
305 len = _PTRDIFF(mp1->b_wptr, start);
306 arcfour_crypt(key, start, start, len);
308 start = mp1->b_rptr;
337 uchar_t *start;
342 start = (uchar_t *)(iovp->iov_base + offset);
343 arcfour_crypt(key, start + offset,
344 start + offset, cur_len);
375 char *start, *end;
376 start = input->cd_raw.iov_base + input->cd_offset;
380 if (start + input->cd_length > end)
383 ret = crypto_arcfour_crypt(key, (uchar_t *)start, output,
391 uchar_t *start, *end;
397 mp1 = advance_position(mp, input->cd_offset, &start);
410 if (_PTRDIFF(mp1->b_wptr, start) > left) {
412 ret = crypto_arcfour_crypt(key, start, output,
418 len = _PTRDIFF(mp1->b_wptr, start);
419 ret = crypto_arcfour_crypt(key, start, output,
424 start = mp1->b_rptr;
454 uchar_t *start;
458 start = (uchar_t *)(iovp->iov_base + offset);
459 ret = crypto_arcfour_crypt(key, start + offset,
540 uchar_t *start, *end;
541 start = (uchar_t *)(out->cd_raw.iov_base +
547 if (start + out->cd_length > end)
550 arcfour_crypt(key, in, start, length);
555 uchar_t *start, *end;
561 mp1 = advance_position(mp, out->cd_offset, &start);
574 if (_PTRDIFF(mp1->b_wptr, start) > left) {
576 arcfour_crypt(key, in, start, len);
579 len = _PTRDIFF(mp1->b_wptr, start);
580 arcfour_crypt(key, in, start, len);
582 start = mp1->b_rptr;
611 uchar_t *start;
615 start = (uchar_t *)(iovp->iov_base + offset);
616 arcfour_crypt(key, start + offset,
617 start + offset, cur_len);