Home
last modified time | relevance | path

Searched refs:hexchars (Results 1 – 3 of 3) sorted by relevance

/PHP-5.4/ext/standard/
H A Durl.c484 static unsigned char hexchars[] = "0123456789ABCDEF"; variable
509 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];
H A Dformatted_print.c50 static char hexchars[] = "0123456789abcdef"; variable
616 hexchars, expprec); in php_formatted_print()
624 hexchars, expprec); in php_formatted_print()
640 hexchars, expprec); in php_formatted_print()
/PHP-5.4/ext/filter/
H A Dsanitizing_filters.c59 static const unsigned char hexchars[] = "0123456789ABCDEF"; variable
97 *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