Home
last modified time | relevance | path

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

/PHP-7.0/ext/filter/
H A Dsanitizing_filters.c58 static const unsigned char hexchars[] = "0123456789ABCDEF"; variable
98 *p++ = hexchars[(unsigned char) *s >> 4]; in php_filter_encode_url()
99 *p++ = hexchars[(unsigned char) *s & 15]; in php_filter_encode_url()
/PHP-7.0/ext/standard/
H A Dformatted_print.c55 static char hexchars[] = "0123456789abcdef"; variable
614 hexchars, expprec); in php_formatted_print()
621 hexchars, expprec); in php_formatted_print()
635 hexchars, expprec); in php_formatted_print()
H A Durl.c446 static unsigned char hexchars[] = "0123456789ABCDEF"; variable
473 to[1] = hexchars[c >> 4]; in php_url_encode()
474 to[2] = hexchars[c & 15]; in php_url_encode()
480 to[1] = hexchars[os_toascii[c] >> 4]; in php_url_encode()
481 to[2] = hexchars[os_toascii[c] & 15]; in php_url_encode()
574 ZSTR_VAL(str)[y++] = hexchars[(unsigned char) s[x] >> 4];
575 ZSTR_VAL(str)[y] = hexchars[(unsigned char) s[x] & 15];
579 ZSTR_VAL(str)[y++] = hexchars[os_toascii[(unsigned char) s[x]] >> 4];
580 ZSTR_VAL(str)[y] = hexchars[os_toascii[(unsigned char) s[x]] & 15];

Completed in 15 milliseconds