Searched refs:hex_value (Results 1 – 5 of 5) sorted by relevance
224 static int hex_value = 0; in getchr()242 hex_value = (hex_value << 4) | v; in getchr()248 c = hex_value; in getchr()
526 unsigned long hex_value = strtoul(hex_str, nullptr, 16); in EncodeEscapeSequences() local527 if (hex_value <= UINT8_MAX) in EncodeEscapeSequences()528 dst.append(1, static_cast<char>(hex_value)); in EncodeEscapeSequences()
43 static int hex_value(int x);1019 b = (hex_value(line[*len]) << 4) | hex_value(line[*len + 1]); in read_num()1052 hex_value(int x) in hex_value() function
2538 integerPart hex_value; in convertFromHexadecimalString() local2547 hex_value = hexDigitValue(*p); in convertFromHexadecimalString()2548 if (hex_value == -1U) in convertFromHexadecimalString()2556 hex_value <<= bitPos % integerPartWidth; in convertFromHexadecimalString()2557 significand[bitPos / integerPartWidth] |= hex_value; in convertFromHexadecimalString()2559 auto FractOrErr = trailingHexadecimalFraction(p, end, hex_value); in convertFromHexadecimalString()
2149 unsigned long hex_value = strtoul(hex_str, nullptr, 16); in ParseInternal() local2150 if (hex_value <= UINT8_MAX) { in ParseInternal()2151 parent_entry.AppendChar((char)hex_value); in ParseInternal()