Home
last modified time | relevance | path

Searched refs:real_value (Results 1 – 5 of 5) sorted by relevance

/llvm-project-15.0.7/llvm/test/CodeGen/X86/
H A D2010-02-15-ImplicitDefBug.ll10 %"struct real_value" = type { i32, [5 x i32] }
12 %"union u" = type { %"struct real_value" }
H A D2006-09-01-CycleInDAG.ll50 %struct.real_value = type opaque
H A D2007-10-15-CoalescerCrash.ll42 %struct.real_value = type opaque
/llvm-project-15.0.7/lldb/source/Commands/
H A DCommandObjectProcess.cpp1652 bool VerifyCommandOptionValue(const std::string &option, int &real_value) { in VerifyCommandOptionValue() argument
1658 real_value = 1; in VerifyCommandOptionValue()
1660 real_value = 0; in VerifyCommandOptionValue()
1663 if (!llvm::to_integer(option, real_value)) in VerifyCommandOptionValue()
1664 real_value = 3; in VerifyCommandOptionValue()
1665 if (real_value != 0 && real_value != 1) in VerifyCommandOptionValue()
/llvm-project-15.0.7/llvm/lib/Target/ARM/MCTargetDesc/
H A DARMAsmBackend.cpp870 uint64_t real_value = Value - 4; in adjustFixupValue() local
873 real_value = -real_value; in adjustFixupValue()
874 out |= ((real_value >> 1) & 0x1) << 11; in adjustFixupValue()
875 out |= ((real_value >> 1) & 0x7fe); in adjustFixupValue()