Lines Matching refs:buf
258 char *buf; in buffer_append_long_hex() local
274 buf = b->ptr + (b->used - 1); in buffer_append_long_hex()
280 *(buf++) = hex_chars[(value >> shift) & 0x0F]; in buffer_append_long_hex()
282 *buf = '\0'; in buffer_append_long_hex()
287 int LI_ltostr(char *buf, long val) { in LI_ltostr() argument
294 *(buf++) = '-'; in LI_ltostr()
298 end = buf; in LI_ltostr()
305 len += end - buf; in LI_ltostr()
307 while (buf < end) { in LI_ltostr()
309 *end = *buf; in LI_ltostr()
310 *buf = swap; in LI_ltostr()
312 buf++; in LI_ltostr()