Searched defs:c2x_table (Results 1 - 3 of 3) sorted by relevance

/httpd/server/
H A Dapreq_util.c117 static const char c2x_table[] = "0123456789ABCDEF"; variable
518 *d++ = c2x_table[c >> 4];
519 *d++ = c2x_table[c & 0xf];
H A Dutil.c1838 static const char c2x_table[] = "0123456789abcdef"; variable
1847 *where++ = c2x_table[what >> 4];
1848 *where++ = c2x_table[what & 0xf];
2138 *dest++ = c2x_table[in[i] >> 4];
2139 *dest++ = c2x_table[in[i] & 0xf];
/httpd/modules/mappers/
H A Dmod_rewrite.c621 static const char c2x_table[] = "0123456789abcdef"; variable
630 *where++ = c2x_table[what >> 4];
631 *where++ = c2x_table[what & 0xf];

Completed in 259 milliseconds