Home
last modified time | relevance | path

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

/php-src/ext/random/
H A Drandom.c327 ZEND_SET_ALIGNED(16, static const char hexconvtab[]) = "0123456789abcdef";
345 ZSTR_VAL(str)[i++] = hexconvtab[((unsigned char *) ptr)[j] >> 4];
346 ZSTR_VAL(str)[i++] = hexconvtab[((unsigned char *) ptr)[j] & 15];
/php-src/ext/session/
H A Dsession.c289 static const char hexconvtab[] = "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ,-"; variable
318 *out++ = hexconvtab[w & mask]; in bin_to_readable()
/php-src/ext/soap/
H A Dphp_encoding.c947 static const char hexconvtab[] = "0123456789ABCDEF"; in to_xml_hexbin() local
964 str[j++] = hexconvtab[((unsigned char)Z_STRVAL_P(data)[i]) >> 4]; in to_xml_hexbin()
965 str[j++] = hexconvtab[((unsigned char)Z_STRVAL_P(data)[i]) & 15]; in to_xml_hexbin()
/php-src/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()

Completed in 33 milliseconds