Lines Matching defs:what
1676 static char x2c(const char *what)
1681 digit = ((what[0] >= 'A') ? ((what[0] & 0xdf) - 'A') + 10
1682 : (what[0] - '0'));
1684 digit += (what[1] >= 'A' ? ((what[1] & 0xdf) - 'A') + 10
1685 : (what[1] - '0'));
1690 xstr[2]=what[0];
1691 xstr[3]=what[1];
1829 * 0 <= what < 256... which usually means that you have to cast to
1840 static APR_INLINE unsigned char *c2x(unsigned what, unsigned char prefix,
1844 what = apr_xlate_conv_byte(ap_hdrs_to_ascii, (unsigned char)what);
1847 *where++ = c2x_table[what >> 4];
1848 *where++ = c2x_table[what & 0xf];
1859 * leaving '/' alone, but otherwise doing what escape_path_segment() does. For