Home
last modified time | relevance | path

Searched refs:c2x_table (Results 1 – 2 of 2) sorted by relevance

/freebsd-13-stable/contrib/subversion/subversion/svnserve/
HDlog-escape.c59 static const char c2x_table[] = "0123456789abcdef"; variable
69 *where++ = c2x_table[what >> 4]; in c2x()
70 *where++ = c2x_table[what & 0xf]; in c2x()
/freebsd-13-stable/contrib/apr/encoding/
HDapr_escape.c287 static const char c2x_table[] = "0123456789abcdef"; variable
296 *where++ = c2x_table[what >> 4]; in c2x()
297 *where++ = c2x_table[what & 0xf]; in c2x()
996 *dest++ = c2x_table[in[size] >> 4]; in apr_escape_hex()
997 *dest++ = c2x_table[in[size] & 0xf]; in apr_escape_hex()