Lines Matching refs:end
289 char *end; in LI_ltostr() local
298 end = buf; in LI_ltostr()
300 *(end++) = '0' + (val % 10); in LI_ltostr()
303 *(end) = '0' + val; in LI_ltostr()
304 *(end + 1) = '\0'; in LI_ltostr()
305 len += end - buf; in LI_ltostr()
307 while (buf < end) { in LI_ltostr()
308 swap = *end; in LI_ltostr()
309 *end = *buf; in LI_ltostr()
313 end--; in LI_ltostr()
340 char *end; in buffer_append_off_t() local
357 end = start; in buffer_append_off_t()
359 *(end++) = '0' + (val % 10); in buffer_append_off_t()
362 *(end) = '0' + val; in buffer_append_off_t()
363 *(end + 1) = '\0'; in buffer_append_off_t()
364 len += end - start; in buffer_append_off_t()
366 while (start < end) { in buffer_append_off_t()
367 swap = *end; in buffer_append_off_t()
368 *end = *start; in buffer_append_off_t()
372 end--; in buffer_append_off_t()