Home
last modified time | relevance | path

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

/system/core/toolbox/upstream-netbsd/lib/libc/stdlib/
Dstrsuftoll.c135 long long min, long long max, char *ebuf, size_t ebuflen, size_t depth) in __strsuftollx() argument
145 snprintf(ebuf, ebuflen, "%s: Recursion limit exceeded", desc); in __strsuftollx()
211 num *= __strsuftollx(desc, expr + 1, min, max, ebuf, ebuflen, in __strsuftollx()
218 snprintf(ebuf, ebuflen, "%s: %s", desc, strerror(errno)); in __strsuftollx()
224 snprintf(ebuf, ebuflen, "%s `%s': illegal number", desc, val); in __strsuftollx()
229 snprintf(ebuf, ebuflen, "%s %lld is less than %lld.", in __strsuftollx()
235 snprintf(ebuf, ebuflen, "%s %lld is greater than %lld.", in __strsuftollx()
245 long long min, long long max, char *ebuf, size_t ebuflen) in strsuftollx() argument
247 return __strsuftollx(desc, val, min, max, ebuf, ebuflen, 0); in strsuftollx()