Searched refs:hexchars (Results 1 – 3 of 3) sorted by relevance
468 static unsigned char hexchars[] = "0123456789ABCDEF"; variable495 to[1] = hexchars[c >> 4]; in php_url_encode()496 to[2] = hexchars[c & 15]; in php_url_encode()502 to[1] = hexchars[os_toascii[c] >> 4]; in php_url_encode()503 to[2] = hexchars[os_toascii[c] & 15]; in php_url_encode()600 ret[y++] = hexchars[(unsigned char) c >> 4];601 ret[y] = hexchars[(unsigned char) c & 15];605 ret[y++] = hexchars[os_toascii[(unsigned char) c] >> 4];606 ret[y] = hexchars[os_toascii[(unsigned char) c] & 15];
53 static const char hexchars[] = "0123456789abcdef"; variable613 hexchars, expprec); in php_formatted_print()620 hexchars, expprec); in php_formatted_print()634 hexchars, expprec); in php_formatted_print()
56 static const unsigned char hexchars[] = "0123456789ABCDEF"; variable96 *p++ = hexchars[(unsigned char) *s >> 4]; in php_filter_encode_url()97 *p++ = hexchars[(unsigned char) *s & 15]; in php_filter_encode_url()
Completed in 13 milliseconds