Searched refs:hexchars (Results 1 – 3 of 3) sorted by relevance
480 static unsigned char hexchars[] = "0123456789ABCDEF"; variable505 to[1] = hexchars[c >> 4]; in php_url_encode()506 to[2] = hexchars[c & 15]; in php_url_encode()512 to[1] = hexchars[os_toascii[c] >> 4]; in php_url_encode()513 to[2] = hexchars[os_toascii[c] & 15]; in php_url_encode()611 str[y++] = hexchars[(unsigned char) s[x] >> 4];612 str[y] = hexchars[(unsigned char) s[x] & 15];616 str[y++] = hexchars[os_toascii[(unsigned char) s[x]] >> 4];617 str[y] = hexchars[os_toascii[(unsigned char) s[x]] & 15];
53 static char hexchars[] = "0123456789abcdef"; variable619 hexchars, expprec); in php_formatted_print()627 hexchars, expprec); in php_formatted_print()643 hexchars, expprec); in php_formatted_print()
59 static const unsigned char hexchars[] = "0123456789ABCDEF"; variable97 *p++ = hexchars[(unsigned char) *s >> 4]; in php_filter_encode_url()98 *p++ = hexchars[(unsigned char) *s & 15]; in php_filter_encode_url()
Completed in 15 milliseconds