Lines Matching defs:itoa_buffer
26 static __attribute__((unused)) char itoa_buffer[21];
223 /* converts unsigned long <in> to an hex string using the static itoa_buffer
229 utoh_r(in, itoa_buffer);
230 return itoa_buffer;
295 /* converts long integer <in> to a string using the static itoa_buffer and
301 itoa_r(in, itoa_buffer);
302 return itoa_buffer;
305 /* converts long integer <in> to a string using the static itoa_buffer and
311 itoa_r(in, itoa_buffer);
312 return itoa_buffer;
315 /* converts unsigned long integer <in> to a string using the static itoa_buffer
321 utoa_r(in, itoa_buffer);
322 return itoa_buffer;
359 /* converts uint64_t <in> to an hex string using the static itoa_buffer and
365 u64toh_r(in, itoa_buffer);
366 return itoa_buffer;
421 /* converts int64_t <in> to a string using the static itoa_buffer and returns
427 i64toa_r(in, itoa_buffer);
428 return itoa_buffer;
431 /* converts uint64_t <in> to a string using the static itoa_buffer and returns
437 u64toa_r(in, itoa_buffer);
438 return itoa_buffer;