Lines Matching defs:is_signed
383 bool is_signed = false;
384 if (!compiler_type.IsIntegerOrEnumerationType(is_signed) &&
438 static void SetInteger(Scalar &scalar, uint64_t raw_value, bool is_signed) {
440 if (is_signed)
447 uint8_t size_in_bytes, bool is_signed) {
453 SetInteger<uint64_t>(scalar, raw_value, is_signed);
457 SetInteger<uint32_t>(scalar, raw_value, is_signed);
461 SetInteger<uint16_t>(scalar, raw_value, is_signed);
465 SetInteger<uint8_t>(scalar, raw_value, is_signed);
549 const bool is_signed = (type_flags & eTypeIsSigned) != 0;
550 if (!SetSizedInteger(value.GetScalar(), raw_value, byte_size, is_signed))