Home
last modified time | relevance | path

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

/PHP-7.4/ext/standard/
H A Dstring.c145 int is_letter = ((unsigned int) ((l - 'A') ^ (l - 'F' - 1))) >> (8 * sizeof(unsigned int) - 1); in php_hex2bin() local
149 if (EXPECTED((((c ^ '0') - 10) >> (8 * sizeof(unsigned int) - 1)) | is_letter)) { in php_hex2bin()
150 d = (l - 0x10 - 0x27 * is_letter) << 4; in php_hex2bin()
157 is_letter = ((unsigned int) ((l - 'A') ^ (l - 'F' - 1))) >> (8 * sizeof(unsigned int) - 1); in php_hex2bin()
158 if (EXPECTED((((c ^ '0') - 10) >> (8 * sizeof(unsigned int) - 1)) | is_letter)) { in php_hex2bin()
159 d |= l - 0x10 - 0x27 * is_letter; in php_hex2bin()

Completed in 14 milliseconds