Home
last modified time | relevance | path

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

/PHP-5.4/ext/session/
H A Dsession.c234 static char hexconvtab[] = "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ,-"; variable
271 *out++ = hexconvtab[w & mask]; in bin_to_readable()
/PHP-5.4/ext/standard/
H A Dstring.c126 static char hexconvtab[] = "0123456789abcdef"; variable
143 result[j++] = hexconvtab[old[i] >> 4]; in php_bin2hex()
144 result[j++] = hexconvtab[old[i] & 15]; in php_bin2hex()
/PHP-5.4/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 34 milliseconds