Home | History | Annotate | Download | only in Commands

Lines Matching refs:uval64

1045     UIntValueIsValidForSize (uint64_t uval64, size_t total_byte_size)
1054 return uval64 <= max;
1166 uint64_t uval64;
1213 uval64 = Args::StringToUInt64(value_str, UINT64_MAX, 16, &success);
1220 else if (!UIntValueIsValidForSize (uval64, item_byte_size))
1222 result.AppendErrorWithFormat ("Value 0x%" PRIx64 " is too large to fit in a %lu byte unsigned integer value.\n", uval64, item_byte_size);
1226 buffer.PutMaxHex64 (uval64, item_byte_size);
1230 uval64 = Args::StringToBoolean(value_str, false, &success);
1237 buffer.PutMaxHex64 (uval64, item_byte_size);
1241 uval64 = Args::StringToUInt64(value_str, UINT64_MAX, 2, &success);
1248 else if (!UIntValueIsValidForSize (uval64, item_byte_size))
1250 result.AppendErrorWithFormat ("Value 0x%" PRIx64 " is too large to fit in a %lu byte unsigned integer value.\n", uval64, item_byte_size);
1254 buffer.PutMaxHex64 (uval64, item_byte_size);
1298 uval64 = Args::StringToUInt64(value_str, UINT64_MAX, 0, &success);
1305 else if (!UIntValueIsValidForSize (uval64, item_byte_size))
1307 result.AppendErrorWithFormat ("Value %" PRIu64 " is too large to fit in a %lu byte unsigned integer value.\n", uval64, item_byte_size);
1311 buffer.PutMaxHex64 (uval64, item_byte_size);
1315 uval64 = Args::StringToUInt64(value_str, UINT64_MAX, 8, &success);
1322 else if (!UIntValueIsValidForSize (uval64, item_byte_size))
1324 result.AppendErrorWithFormat ("Value %" PRIo64 " is too large to fit in a %lu byte unsigned integer value.\n", uval64, item_byte_size);
1328 buffer.PutMaxHex64 (uval64, item_byte_size);