Searched refs:hexconvtab (Results 1 – 3 of 3) sorted by relevance
234 static char hexconvtab[] = "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ,-"; variable271 *out++ = hexconvtab[w & mask]; in bin_to_readable()
126 static char hexconvtab[] = "0123456789abcdef"; variable143 result[j++] = hexconvtab[old[i] >> 4]; in php_bin2hex()144 result[j++] = hexconvtab[old[i] & 15]; in php_bin2hex()
992 static char hexconvtab[] = "0123456789ABCDEF"; in to_xml_hexbin() local1011 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 31 milliseconds