Home
last modified time | relevance | path

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

/PHP-8.3/ext/random/
H A Drandom.c328 ZEND_SET_ALIGNED(16, static const char hexconvtab[]) = "0123456789abcdef";
346 ZSTR_VAL(str)[i++] = hexconvtab[((unsigned char *) ptr)[j] >> 4];
347 ZSTR_VAL(str)[i++] = hexconvtab[((unsigned char *) ptr)[j] & 15];
/PHP-8.3/ext/session/
H A Dsession.c294 static const char hexconvtab[] = "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ,-"; variable
323 *out++ = hexconvtab[w & mask]; in bin_to_readable()
/PHP-8.3/ext/standard/
H A Dstring.c55 ZEND_SET_ALIGNED(16, static const char hexconvtab[]) = "0123456789abcdef";
71 ZSTR_VAL(result)[j++] = hexconvtab[old[i] >> 4]; in php_bin2hex()
72 ZSTR_VAL(result)[j++] = hexconvtab[old[i] & 15]; in php_bin2hex()
/PHP-8.3/ext/soap/
H A Dphp_encoding.c975 static const char hexconvtab[] = "0123456789ABCDEF"; in to_xml_hexbin() local
992 str[j++] = hexconvtab[((unsigned char)Z_STRVAL_P(data)[i]) >> 4]; in to_xml_hexbin()
993 str[j++] = hexconvtab[((unsigned char)Z_STRVAL_P(data)[i]) & 15]; in to_xml_hexbin()

Completed in 37 milliseconds