• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/common/

Lines Matching refs:wxLongLongWx

83 wxLongLongNative::wxLongLongNative(wxLongLongWx ll)
91 wxLongLongNative& wxLongLongNative::operator=(wxLongLongWx ll)
117 wxULongLongNative& wxULongLongNative::operator=(wxLongLongWx ll)
139 // wxLongLongWx: emulation of 'long long' using 2 longs
145 wxLongLongWx &wxLongLongWx::operator=(const class wxULongLongWx &ll)
153 wxLongLongWx& wxLongLongWx::Assign(double d)
180 double wxLongLongWx::ToDouble() const
206 wxLongLongWx wxLongLongWx::operator<<(int shift) const
208 wxLongLongWx ll(*this);
222 wxLongLongWx& wxLongLongWx::operator<<=(int shift)
274 wxLongLongWx wxLongLongWx::operator>>(int shift) const
276 wxLongLongWx ll(*this);
290 wxLongLongWx& wxLongLongWx::operator>>=(int shift)
342 wxLongLongWx wxLongLongWx::operator+(const wxLongLongWx& ll) const
344 wxLongLongWx res(*this);
358 wxLongLongWx wxLongLongWx::operator+(long l) const
360 wxLongLongWx res(*this);
374 wxLongLongWx& wxLongLongWx::operator+=(const wxLongLongWx& ll)
412 wxLongLongWx& wxLongLongWx::operator+=(long l)
451 wxLongLongWx& wxLongLongWx::operator++()
482 wxLongLongWx wxLongLongWx::operator-() const
484 wxLongLongWx res(*this);
490 wxLongLongWx& wxLongLongWx::Negate()
510 wxLongLongWx wxLongLongWx::operator-(const wxLongLongWx& ll) const
512 wxLongLongWx res(*this);
518 wxLongLongWx wxULongLongWx::operator-(const wxULongLongWx& ll) const
523 wxLongLongWx res( (long)m_hi , m_lo );
524 wxLongLongWx op( (long)ll.m_hi , ll.m_lo );
530 wxLongLongWx& wxLongLongWx::operator-=(const wxLongLongWx& ll)
569 wxLongLongWx& wxLongLongWx::operator--()
601 bool wxLongLongWx::operator<(const wxLongLongWx& ll) const
621 bool wxLongLongWx::operator>(const wxLongLongWx& ll) const
643 wxLongLongWx wxLongLongWx::operator&(const wxLongLongWx& ll) const
645 return wxLongLongWx(m_hi & ll.m_hi, m_lo & ll.m_lo);
653 wxLongLongWx wxLongLongWx::operator|(const wxLongLongWx& ll) const
655 return wxLongLongWx(m_hi | ll.m_hi, m_lo | ll.m_lo);
663 wxLongLongWx wxLongLongWx::operator^(const wxLongLongWx& ll) const
665 return wxLongLongWx(m_hi ^ ll.m_hi, m_lo ^ ll.m_lo);
673 wxLongLongWx& wxLongLongWx::operator&=(const wxLongLongWx& ll)
701 wxLongLongWx& wxLongLongWx::operator|=(const wxLongLongWx& ll)
729 wxLongLongWx& wxLongLongWx::operator^=(const wxLongLongWx& ll)
757 wxLongLongWx wxLongLongWx::operator~() const
759 return wxLongLongWx(~m_hi, ~m_lo);
769 wxLongLongWx wxLongLongWx::operator*(const wxLongLongWx& ll) const
771 wxLongLongWx res(*this);
785 wxLongLongWx& wxLongLongWx::operator*=(const wxLongLongWx& ll)
787 wxLongLongWx t(m_hi, m_lo);
788 wxLongLongWx q(ll.m_hi, ll.m_lo);
853 void wxLongLongWx::Divide(const wxLongLongWx& divisorIn,
854 wxLongLongWx& quotient,
855 wxLongLongWx& remainderIO) const
922 wxLongLongWx d;
951 wxLongLongWx t = remainder - divisor;
1064 wxLongLongWx wxLongLongWx::operator/(const wxLongLongWx& ll) const
1066 wxLongLongWx quotient, remainder;
1082 wxLongLongWx& wxLongLongWx::operator/=(const wxLongLongWx& ll)
1084 wxLongLongWx quotient, remainder;
1104 wxLongLongWx wxLongLongWx::operator%(const wxLongLongWx& ll) const
1106 wxLongLongWx quotient, remainder;
1127 void *wxLongLongWx::asArray(void) const
1223 LL_TO_STRING(wxLongLongWx)