Home
last modified time | relevance | path

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

/external/syslinux/core/fs/pxe/
Durlparse.c132 static const char uchexchar[] = "0123456789ABCDEF"; in url_escape_unsafe() local
142 if (++n < bufsize) *q++ = uchexchar[c >> 4]; in url_escape_unsafe()
143 if (++n < bufsize) *q++ = uchexchar[c & 15]; in url_escape_unsafe()
Dhttp.c57 static const char uchexchar[16] = "0123456789ABCDEF"; in http_do_bake_cookies() local
99 *q++ = uchexchar[c >> 4]; in http_do_bake_cookies()
100 *q++ = uchexchar[c & 15]; in http_do_bake_cookies()