Searched refs:uval64 (Results 1 - 11 of 11) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectMemory.cpp1284 bool UIntValueIsValidForSize(uint64_t uval64, size_t total_byte_size) { argument
1292 return uval64 <= max;
1397 uint64_t uval64; variable
1444 success = !entry.ref().getAsInteger(0, uval64);
1446 success = !entry.ref().getAsInteger(16, uval64);
1452 } else if (!UIntValueIsValidForSize(uval64, item_byte_size)) {
1456 uval64, (uint64_t)item_byte_size);
1460 buffer.PutMaxHex64(uval64, item_byte_size);
1464 uval64 = OptionArgParser::ToBoolean(entry.ref(), false, &success);
1471 buffer.PutMaxHex64(uval64, item_byte_siz
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/
H A DRegisterValue.cpp332 static bool UInt64ValueIsValidForByteSize(uint64_t uval64, argument
343 return uval64 <= max;
376 uint64_t uval64; local
392 if (value_str.getAsInteger(0, uval64)) {
399 if (!UInt64ValueIsValidForByteSize(uval64, byte_size)) {
403 uval64, byte_size);
407 if (!SetUInt(uval64, reg_info->byte_size)) {
H A DDataExtractor.cpp580 uint64_t uval64 = GetMaxU64(offset_ptr, size); local
583 return uval64;
590 uval64 >>= lsbcount;
597 return uval64;
599 uval64 &= bitfield_mask;
601 return uval64;
H A DScalar.cpp2411 uint64_t uval64; local
2412 if (!llvm::to_integer(value_str, uval64))
2415 else if (!UIntValueIsValidForSize(uval64, byte_size))
2419 uval64, static_cast<uint64_t>(byte_size));
2424 m_integer = llvm::APInt(sizeof(uint_t) * 8, uval64, false);
2427 m_integer = llvm::APInt(sizeof(ulong_t) * 8, uval64, false);
2430 m_integer = llvm::APInt(sizeof(ulonglong_t) * 8, uval64, false);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/
H A DEmulateInstruction.cpp170 uint64_t uval64 = 0; local
179 uval64 = data.GetMaxU64(&offset, byte_size);
188 uval64 = fail_value;
189 return uval64;
H A DDumpDataExtractor.cpp239 uint64_t uval64 = DE.GetMaxU64Bitfield(&offset, item_byte_size, local
244 std::bitset<64> bits(uval64);
373 uint64_t uval64 = DE.GetMaxU64Bitfield(&offset, item_byte_size, local
377 uint8_t ch = (uint8_t)(uval64 >> ((item_byte_size - i - 1) * 8));
H A DAddress.cpp103 uint64_t uval64 = 0; local
117 uval64 = data.GetU64(&offset);
121 return uval64;
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/
H A DCompilerType.cpp803 uint64_t uval64 = data.GetMaxU64(&offset, *byte_size); local
805 value = (unsigned int)uval64;
808 value = (unsigned long)uval64;
811 value = (unsigned long long)uval64;
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/
H A DScalar.h239 static bool UIntValueIsValidForSize(uint64_t uval64, size_t total_byte_size) { argument
249 return uval64 <= max;
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Disassembler/llvm/
H A DDisassemblerLLVMC.cpp350 const uint64_t uval64 = data.GetU64(&offset); variable
351 m_opcode.SetOpcode64(uval64, byte_order);
353 mnemonic_strm.Printf("0x%16.16" PRIx64, uval64);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFASTParserClang.cpp1847 uint64_t uval64 = 0; local
1876 uval64 = form_value.Unsigned();
1902 llvm::APInt apint(*size, uval64, is_signed);

Completed in 226 milliseconds