Lines Matching defs:maxbytes
65 idn__debug_hexstring(const char *s, int maxbytes) {
70 if (maxbytes > STRING_MAXBYTES)
71 maxbytes = STRING_MAXBYTES;
73 for (i = 0, p = buf; i < maxbytes; i += 3, s++) {
83 if (i >= maxbytes)
93 idn__debug_xstring(const char *s, int maxbytes) {
98 if (maxbytes > STRING_MAXBYTES)
99 maxbytes = STRING_MAXBYTES;
103 while (i < maxbytes) {
121 if (i >= maxbytes)
131 idn__debug_ucs4xstring(const unsigned long *s, int maxbytes) {
136 if (maxbytes > STRING_MAXBYTES)
137 maxbytes = STRING_MAXBYTES;
141 while (i < maxbytes) {
173 if (i >= maxbytes)
183 idn__debug_utf16xstring(const unsigned short *s, int maxbytes) {
188 if (maxbytes > STRING_MAXBYTES)
189 maxbytes = STRING_MAXBYTES;
193 while (i < maxbytes) {
211 if (i >= maxbytes)
221 idn__debug_hexdata(const char *s, int length, int maxbytes) {
226 if (maxbytes > STRING_MAXBYTES)
227 maxbytes = STRING_MAXBYTES;
231 while (length > 0 && i < maxbytes) {
242 if (i >= maxbytes)