Lines Matching defs:last
72 int last; /* pointing just after the last character */
122 assert(wb.cur == wb.last);
143 for (; wb.cur < wb.last; wb.cur++) {
186 * Now CUR points just after the last character in WB,
221 r = idn__unicode_decompose(wb->version, compat, wb->ucs4 + wb->last,
222 wb->size - wb->last, c, &dec_len);
225 wb->last += dec_len;
248 for (i = wb->cur; i < wb->last; i++)
341 wb->last = 0;
376 if (wb->last >= wb->size && (r = workbuf_extend(wb)) != idn_success)
378 wb->ucs4[wb->last++] = c;
388 nmove = wb->last - shift;
394 wb->last -= shift;
400 int last = wb->last;
402 for (i = j = 0; i < last; i++) {
411 wb->cur -= last - j;
412 wb->last = j;