Searched refs:hexchars (Results 1 – 3 of 3) sorted by relevance
484 static unsigned char hexchars[] = "0123456789ABCDEF"; variable509 to[1] = hexchars[c >> 4]; in php_url_encode()510 to[2] = hexchars[c & 15]; in php_url_encode()516 to[1] = hexchars[os_toascii[c] >> 4]; in php_url_encode()517 to[2] = hexchars[os_toascii[c] & 15]; in php_url_encode()615 str[y++] = hexchars[(unsigned char) s[x] >> 4];616 str[y] = hexchars[(unsigned char) s[x] & 15];620 str[y++] = hexchars[os_toascii[(unsigned char) s[x]] >> 4];621 str[y] = hexchars[os_toascii[(unsigned char) s[x]] & 15];
50 static char hexchars[] = "0123456789abcdef"; variable616 hexchars, expprec); in php_formatted_print()624 hexchars, expprec); in php_formatted_print()640 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 10 milliseconds