HomeSort by relevance Sort by last modified time
    Searched refs:SInt (Results 1 - 7 of 7) sorted by null

  /external/compiler-rt/lib/ubsan/
ubsan_diag.h 157 Arg(SIntMax SInt) : Kind(AK_SInt), SInt(SInt) {}
165 SIntMax SInt;
ubsan_diag.cc 169 if (A.SInt >= INT64_MIN && A.SInt <= INT64_MAX)
170 Printf("%lld", (long long)A.SInt);
172 PrintHex(A.SInt);
  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
mp4def.h 61 typedef short int SInt;
  /external/lldb/include/lldb/Core/
Scalar.h 44 Scalar(int v) : m_type(e_sint), m_data() { m_data.sint = v; }
183 SInt(int fail_value = 0) const;
270 int sint; member in union:lldb_private::Scalar::ValueData
  /external/lldb/source/Symbol/
ClangASTType.cpp     [all...]
  /external/lldb/source/Core/
Scalar.cpp 112 // case 1: m_type = e_sint; m_data.sint = reg.value.sint8; break;
113 // case 2: m_type = e_sint; m_data.sint = reg.value.sint16; break;
114 // case 4: m_type = e_sint; m_data.sint = reg.value.sint32; break;
174 case e_sint: return sizeof(m_data.sint);
194 case e_sint: return m_data.sint == 0;
217 case e_sint: s->Printf("%i", m_data.sint); break;
268 m_data.sint = v;
358 case e_uint: m_data.uint = m_data.sint; success = true; break;
359 case e_slong: m_data.slong = m_data.sint; success = true; break;
360 case e_ulong: m_data.ulong = m_data.sint; success = true; break
    [all...]
  /external/lldb/source/Plugins/Instruction/ARM/
EmulateInstructionARM.cpp 919 operand1 = SInt(R[n]); // operand1 = UInt(R[n]) produces the same final results
920 operand2 = SInt(R[m]); // operand2 = UInt(R[m]) produces the same final results
991 // operand1 = SInt(R[n]); // operand1 = UInt(R[n]) produces the same final results
    [all...]

Completed in 1171 milliseconds