Searched refs:conv_10 (Results 1 - 1 of 1) sorted by relevance

/freebsd-10-stable/contrib/apr/strings/
H A Dapr_snprintf.c327 * (conv_10_quad), the other when we don't (conv_10). We're assuming the
330 static char *conv_10(register apr_int32_t num, register int is_unsigned, function
387 return(conv_10((apr_int32_t)num, is_unsigned, is_negative, buf_end, len));
432 p = conv_10((addr & 0x000000FF) , TRUE, &is_negative, p, &sub_len);
434 p = conv_10((addr & 0x0000FF00) >> 8, TRUE, &is_negative, p, &sub_len);
436 p = conv_10((addr & 0x00FF0000) >> 16, TRUE, &is_negative, p, &sub_len);
438 p = conv_10((addr & 0xFF000000) >> 24, TRUE, &is_negative, p, &sub_len);
454 p = conv_10(sa->port, TRUE, &is_negative, p, &sub_len);
499 return conv_10(u.u32, TRUE, &is_negative, buf_end, len);
504 return conv_10(
[all...]

Completed in 56 milliseconds