Home
last modified time | relevance | path

Searched refs:bufend (Results 1 – 4 of 4) sorted by relevance

/l4re-core-master/uclibc/lib/contrib/uclibc/libc/stdio/
A D_uintmaxtostr.c57 *bufend = '\0'; in _uintmaxtostr()
63 bufend -= __UCLIBC_CURLOCALE->thousands_sep_len; in _uintmaxtostr()
64 memcpy(bufend, __UCLIBC_CURLOCALE->thousands_sep, in _uintmaxtostr()
81 bufend -= __UCLIBC_CURLOCALE->outdigit_length[digit]; in _uintmaxtostr()
82 memcpy(bufend, in _uintmaxtostr()
106 bufend -= __UCLIBC_CURLOCALE->thousands_sep_len; in _uintmaxtostr()
107 memcpy(bufend, __UCLIBC_CURLOCALE->thousands_sep, in _uintmaxtostr()
133 bufend -= __UCLIBC_CURLOCALE->outdigit_length[digit]; in _uintmaxtostr()
134 memcpy(bufend, in _uintmaxtostr()
147 *--bufend = '-'; in _uintmaxtostr()
[all …]
A Dvsnprintf.c82 unsigned char *bufend; /* pointer to 1 past end of buffer */
97 f.bufend = buf + size;
126 if (f.bufpos == f.bufend) {
A Dold_vfprintf.c166 unsigned char *bufend; /* pointer to 1 past end of buffer */ member
177 } else if (f->bufend > f->bufpos) { in _outnstr()
178 size_t r = f->bufend - f->bufpos; in _outnstr()
192 } else if (f->bufpos < f->bufend) { in putc_unlocked_sprintf()
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/sysdeps/linux/common/bits/
A DuClibc_uintmaxtostr.h91 extern char *_uintmaxtostr(char * __restrict bufend, uintmax_t uval,
96 #define _int10tostr(bufend, intval) \ argument
97 _uintmaxtostr((bufend), (intval), -10, __UIM_DECIMAL)
99 #define _int10tostr(bufend, intval) \ argument
100 _uintmaxtostr((bufend), (uintmax_t)(intval), -10, __UIM_DECIMAL)

Completed in 10 milliseconds