Home
last modified time | relevance | path

Searched refs:SInt (Results 1 – 10 of 10) sorted by relevance

/freebsd-12.1/contrib/compiler-rt/lib/ubsan/
H A Dubsan_diag.h166 Arg(SIntMax SInt) : Kind(AK_SInt), SInt(SInt) {} in Arg()
174 SIntMax SInt; member
H A Dubsan_diag.cc196 if (A.SInt >= INT64_MIN && A.SInt <= INT64_MAX) in RenderText()
197 Buffer->append("%lld", (long long)A.SInt); in RenderText()
199 RenderHex(Buffer, A.SInt); in RenderText()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Instruction/ARM64/
H A DEmulateInstructionARM64.cpp69 #define SInt(x) ((int64_t)x) macro
93 int64_t signed_sum = SInt(x) + SInt(y) + UInt(carry_in); in AddWithCarry()
100 proc_state.V = SInt(result) == signed_sum; in AddWithCarry()
/freebsd-12.1/contrib/llvm/include/llvm/IR/
H A DInstruction.def188 HANDLE_CAST_INST(41, FPToSI , FPToSIInst ) // floating point -> SInt
190 HANDLE_CAST_INST(43, SIToFP , SIToFPInst ) // SInt -> floating point
/freebsd-12.1/contrib/llvm/tools/lldb/source/Symbol/
H A DCompilerType.cpp956 strm.PutHex8(value.SInt()); in SetValueFromScalar()
959 strm.PutHex16(value.SInt()); in SetValueFromScalar()
962 strm.PutHex32(value.SInt()); in SetValueFromScalar()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCClassDescriptorV2.cpp529 offset_scalar.SInt()); in fill()
531 {ConstString(name), ivar_type, size, offset_scalar.SInt()}); in fill()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Utility/
H A DScalar.h235 int SInt(int fail_value = 0) const;
/freebsd-12.1/contrib/llvm/tools/lldb/source/Target/
H A DRegisterContext.cpp94 expr_result = result.GetScalar().SInt(-1); in UpdateDynamicRegisterSize()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Utility/
H A DScalar.cpp1300 int Scalar::SInt(int fail_value) const { in SInt() function in Scalar
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Instruction/ARM/
H A DEmulateInstructionARM.cpp1484 operand1 = SInt(R[n]); // operand1 = UInt(R[n]) produces the same final results in EmulateMUL()
1485 operand2 = SInt(R[m]); // operand2 = UInt(R[m]) produces the same final results in EmulateMUL()