Home
last modified time | relevance | path

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

/haiku/src/libs/stdc++/legacy/
H A Dstream.cc55 static char* itoa(unsigned long i, int size, int neg, int base) in itoa() function
96 if (i >= 0) return itoa((unsigned long)i, len, 0, 10); in dec()
97 else return itoa((unsigned long)(-i), len, 1, 10); in dec()
101 if (i >= 0) return itoa((unsigned long)i, len, 0, 10); in dec()
102 else return itoa((unsigned long)(-i), len, 1, 10); in dec()
106 return itoa(i, len, 0, 10); in dec()
110 return itoa(i, len, 0, 10); in dec()
115 return itoa((unsigned long)i, len, 0, 16); in hex()
119 return itoa((unsigned long)i, len, 0, 16); in hex()
123 return itoa(i, len, 0, 16); in hex()
[all …]
/haiku/src/add-ons/print/transports/ipp/
H A DIppURLConnection.cpp12 char *itoa(int i, char *buf, int unit) in itoa() function
64 itoa(__ippRequest->length(), buf, 10); in setRequest()
/haiku/src/system/libroot/posix/glibc/stdio-common/
H A DJamfile32 itoa-digits.c
33 itoa-udigits.c