Home
last modified time | relevance | path

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

/PHP-7.2/ext/standard/
H A Dstring.c167 int is_letter = ((unsigned int) ((l - 'A') ^ (l - 'F' - 1))) >> (8 * sizeof(unsigned int) - 1); in php_hex2bin() local
171 if (EXPECTED((((c ^ '0') - 10) >> (8 * sizeof(unsigned int) - 1)) | is_letter)) { in php_hex2bin()
172 d = (l - 0x10 - 0x27 * is_letter) << 4; in php_hex2bin()
179 is_letter = ((unsigned int) ((l - 'A') ^ (l - 'F' - 1))) >> (8 * sizeof(unsigned int) - 1); in php_hex2bin()
180 if (EXPECTED((((c ^ '0') - 10) >> (8 * sizeof(unsigned int) - 1)) | is_letter)) { in php_hex2bin()
181 d |= l - 0x10 - 0x27 * is_letter; in php_hex2bin()

Completed in 15 milliseconds