Home
last modified time | relevance | path

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

/PHP-5.5/ext/session/
H A Dsession.c240 static char hexconvtab[] = "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ,-"; variable
277 *out++ = hexconvtab[w & mask]; in bin_to_readable()
/PHP-5.5/ext/standard/
H A Dstring.c126 static char hexconvtab[] = "0123456789abcdef"; variable
146 result[j++] = hexconvtab[old[i] >> 4]; in php_bin2hex()
147 result[j++] = hexconvtab[old[i] & 15]; in php_bin2hex()
/PHP-5.5/ext/soap/
H A Dphp_encoding.c992 static char hexconvtab[] = "0123456789ABCDEF"; in to_xml_hexbin() local
1011 str[j++] = hexconvtab[((unsigned char)Z_STRVAL_P(data)[i]) >> 4]; in to_xml_hexbin()
1012 str[j++] = hexconvtab[((unsigned char)Z_STRVAL_P(data)[i]) & 15]; in to_xml_hexbin()

Completed in 29 milliseconds