Searched refs:hex_value (Results 1 – 4 of 4) sorted by relevance
527 unsigned long hex_value = strtoul(hex_str, nullptr, 16); in EncodeEscapeSequences() local528 if (hex_value <= UINT8_MAX) in EncodeEscapeSequences()529 dst.append(1, static_cast<char>(hex_value)); in EncodeEscapeSequences()
96 directive `LLVM-EXEGESIS-DEFREG <reg name> <hex_value>`, where `<hex_value>`97 is a bit pattern used to fill `<reg_name>`. If `<hex_value>` is smaller than
2562 integerPart hex_value; in convertFromHexadecimalString() local2571 hex_value = hexDigitValue(*p); in convertFromHexadecimalString()2572 if (hex_value == -1U) in convertFromHexadecimalString()2580 hex_value <<= bitPos % integerPartWidth; in convertFromHexadecimalString()2581 significand[bitPos / integerPartWidth] |= hex_value; in convertFromHexadecimalString()2583 auto FractOrErr = trailingHexadecimalFraction(p, end, hex_value); in convertFromHexadecimalString()
2148 unsigned long hex_value = strtoul(hex_str, nullptr, 16); in ParseInternal() local2149 if (hex_value <= UINT8_MAX) { in ParseInternal()2150 parent_entry.AppendChar((char)hex_value); in ParseInternal()