Searched refs:slong (Results 1 – 2 of 2) sorted by relevance
176 case e_slong: return sizeof(m_data.slong); in GetByteSize()196 case e_slong: return m_data.slong == 0; in IsZero()219 case e_slong: s->Printf("%li", m_data.slong); break; in GetValue()285 m_data.slong = v; in operator =()359 case e_slong: m_data.slong = m_data.sint; success = true; break; in Promote()375 case e_slong: m_data.slong = m_data.uint; success = true; break; in Promote()392 case e_ulong: m_data.ulong = m_data.slong; success = true; break; in Promote()393 case e_slonglong: m_data.slonglong = m_data.slong; success = true; break; in Promote()394 case e_ulonglong: m_data.ulonglong = m_data.slong; success = true; break; in Promote()395 case e_float: m_data.flt = m_data.slong; success = true; break; in Promote()[all …]
46 Scalar(long v) : m_type(e_slong), m_data() { m_data.slong = v; } in Scalar()272 long slong; member