Home | History | Annotate | Download | only in Commands

Lines Matching defs:sval64

1058     SIntValueIsValidForSize (int64_t sval64, size_t total_byte_size)
1068 return min <= sval64 && sval64 <= max;
1167 int64_t sval64;
1281 sval64 = Args::StringToSInt64(value_str, INT64_MAX, 0, &success);
1288 else if (!SIntValueIsValidForSize (sval64, item_byte_size))
1290 result.AppendErrorWithFormat ("Value %" PRIi64 " is too large or small to fit in a %lu byte signed integer value.\n", sval64, item_byte_size);
1294 buffer.PutMaxHex64 (sval64, item_byte_size);