Searched refs:uchexchar (Results 1 – 2 of 2) sorted by relevance
132 static const char uchexchar[] = "0123456789ABCDEF"; in url_escape_unsafe() local142 if (++n < bufsize) *q++ = uchexchar[c >> 4]; in url_escape_unsafe()143 if (++n < bufsize) *q++ = uchexchar[c & 15]; in url_escape_unsafe()
57 static const char uchexchar[16] = "0123456789ABCDEF"; in http_do_bake_cookies() local99 *q++ = uchexchar[c >> 4]; in http_do_bake_cookies()100 *q++ = uchexchar[c & 15]; in http_do_bake_cookies()