Searched refs:wxLongLong (Results 1 - 25 of 47) sorted by relevance

12

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/docs/latex/wx/
H A Dlonglong.tex3 %% Purpose: wxLongLong documentation
12 \section{\class{wxLongLong}}\label{wxlonglong}
20 wxLongLong defines all usual arithmetic operations such as addition,
27 (built-in) arithmetic type. Note that wxLongLong is a signed type, if you
29 wxLongLong except when explicitly mentioned otherwise.
32 found to exist, {\it wxLongLong\_t} macro will be defined to correspond to it.
50 \membersection{wxLongLong::wxLongLong}\label{wxlonglongwxlonglongdef}
52 \func{}{wxLongLong}{\void}
57 \membersection{wxLongLong
[all...]
H A Dactivexcontainer.tex146 virtual bool SetPosition(wxLongLong where)
151 virtual wxLongLong GetPosition()
155 virtual wxLongLong GetDuration()
H A Dtimespan.tex177 \constfunc{wxLongLong}{GetMilliseconds}{\void}
191 \constfunc{wxLongLong}{GetSeconds}{\void}
198 \constfunc{wxLongLong}{GetValue}{\void}
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/
H A Dstopwatch.h58 wxLongLong m_t0;
92 typedef wxLongLong wxMilliClock_t;
H A Ddatstrm.h37 wxLongLong ReadLL();
51 void Read64(wxLongLong *buffer, size_t size);
55 void ReadLL(wxLongLong *buffer, size_t size);
75 wxDataInputStream& operator>>(wxLongLong& i);
109 void WriteLL(const wxLongLong &ll);
124 void Write64(const wxLongLong *buffer, size_t size);
128 void WriteLL(const wxLongLong *buffer, size_t size);
149 wxDataOutputStream& operator<<(const wxLongLong &i);
H A Dlonglong.h3 // Purpose: declaration of wxLongLong class - best implementation of a 64
73 #define wxLongLong wxLongLongWx macro
76 typedef wxLongLongWx wxLongLong; typedef
91 typedef wxLongLongNative wxLongLong; typedef
96 // typedef wxLongLong as it wants, we don't do it
102 // we use iostream for wxLongLong output
180 wxT("wxLongLong to long conversion loss of precision") );
686 wxT("wxLongLong to long conversion loss of precision") );
1040 inline bool operator<(long l, const wxLongLong& ll) { return ll > l; }
1041 inline bool operator>(long l, const wxLongLong
[all...]
H A Dmediactrl.h284 virtual bool SetPosition(wxLongLong WXUNUSED(where))
286 virtual wxLongLong GetPosition()
288 virtual wxLongLong GetDuration()
320 virtual wxLongLong GetDownloadProgress()
322 virtual wxLongLong GetDownloadTotal()
H A Ddatetime.h580 wxDateTime() { m_time = wxLongLong((wxInt32)UINT_MAX, UINT_MAX); }
1092 wxDateTime(const wxLongLong& time) { m_time = time; }
1095 inline wxLongLong GetValue() const;
1128 wxLongLong m_time;
1144 static wxTimeSpan Milliseconds(wxLongLong ms) { return wxTimeSpan(0, 0, 0, ms); }
1148 static wxTimeSpan Seconds(wxLongLong sec) { return wxTimeSpan(0, 0, sec); }
1175 wxLongLong seconds = 0,
1176 wxLongLong milliseconds = 0);
1299 inline wxLongLong GetSeconds() const;
1301 wxLongLong GetMillisecond
[all...]
H A Ddefs.h987 #define wxLL(x) wxLongLong(x)
990 #define wxInt64 wxLongLong
1173 ((wxLongLong(val) & wxLongLong(0L, 0x000000ffU)) << 56) | \
1174 ((wxLongLong(val) & wxLongLong(0L, 0x0000ff00U)) << 40) | \
1175 ((wxLongLong(val) & wxLongLong(0L, 0x00ff0000U)) << 24) | \
1176 ((wxLongLong(val) & wxLongLong(
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/tests/longlong/
H A Dlonglongtest.cpp3 // Purpose: wxLongLong unit test
37 #define MAKE_LL(x1, x2, x3, x4) wxLongLong((x1 << 16) | x2, (x3 << 16) | x3)
99 wxLongLong a = RAND_LL();
101 wxLongLong b(a.GetHi(), a.GetLo());
124 wxLongLong lls[2];
146 wxLongLong a = RAND_LL();
147 wxLongLong b = RAND_LL();
148 wxLongLong c = a + b;
170 wxLongLong a = RAND_LL();
171 wxLongLong
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/tests/streams/
H A Ddatastreamtest.cpp201 TestMultiRW<wxLongLong>::ValueArray ValuesLL;
204 ValuesLL.push_back(wxLongLong(0l));
205 ValuesLL.push_back(wxLongLong(1l));
206 ValuesLL.push_back(wxLongLong(-1l));
207 ValuesLL.push_back(wxLongLong(0x12345678l));
208 ValuesLL.push_back(wxLongLong(0x12345678l, 0xabcdef01l));
215 CPPUNIT_ASSERT( TestRW(wxLongLong(0x12345678l)) == wxLongLong(0x12345678l) );
216 CPPUNIT_ASSERT( TestRW(wxLongLong(0x12345678l, 0xabcdef01l)) == wxLongLong(
[all...]
H A Dtextstreamtest.cpp157 static const wxLongLong llvalues[] =
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/common/
H A Dstopwatch.cpp134 wxLongLong counter = counter_li.QuadPart;
156 wxLongLong counter = counter_li.QuadPart;
157 wxLongLong res = (counter * 10000 / m_frequency) - m_t0;
178 static wxLongLong wxStartTime = 0l;
189 wxLongLong oldTime = wxStartTime;
190 wxLongLong newTime = wxGetLocalTimeMillis();
244 wxLongLong wxGetLocalTimeMillis()
246 wxLongLong val = 1000l;
270 wxLongLong then( thenft.dwHighDateTime, thenft.dwLowDateTime ); // time in 100 nanoseconds
276 wxLongLong no
[all...]
H A Ddatstrm.cpp291 void wxDataInputStream::Read64(wxLongLong *buffer, size_t size)
303 void wxDataInputStream::ReadLL(wxLongLong *buffer, size_t size)
308 wxLongLong wxDataInputStream::ReadLL(void)
310 wxLongLong ll;
436 wxDataInputStream& wxDataInputStream::operator>>(wxLongLong& i)
570 void wxDataOutputStream::Write64(const wxLongLong *buffer, size_t size)
582 void wxDataOutputStream::WriteLL(const wxLongLong *buffer, size_t size)
587 void wxDataOutputStream::WriteLL(const wxLongLong &ll)
725 wxDataOutputStream& wxDataOutputStream::operator<<(const wxLongLong &i)
H A Dlonglong.cpp1231 wxSTD ostream& operator<< (wxSTD ostream& o, const wxLongLong& ll)
1244 WXDLLIMPEXP_BASE wxString& operator<< (wxString& s, const wxLongLong& ll)
1261 WXDLLIMPEXP_BASE wxTextOutputStream& operator<< (wxTextOutputStream& o, const wxLongLong& ll)
1293 WXDLLIMPEXP_BASE class wxTextInputStream &operator>>(class wxTextInputStream &o, wxLongLong &ll)
1297 ll = wxLongLong(0l, 0l);
1315 wxLongLong multiplier(0l, 10l);
1318 ll = ll * multiplier + wxLongLong(0l, lValue);
1323 ll = ll * wxLongLong((wxLongLong_t) iSign);
1325 ll = ll * wxLongLong((long) iSign);
1340 return o << wxLongLong(valu
[all...]
H A Dtarstrm.cpp883 wxLongLong ll;
889 return wxLongLong(m_hdr->GetOctal(TAR_MTIME)) * 1000L;
1401 SetExtendedHeader(m_hdr->Name(id), wxLongLong(n).ToString());
1416 wxLongLong ll = datetime.IsValid() ? datetime.GetValue() : wxLongLong(0);
1417 wxLongLong secs = ll / 1000L;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/mac/carbon/
H A Dmediactrl.cpp105 virtual bool SetPosition(wxLongLong where);
106 virtual wxLongLong GetPosition();
107 virtual wxLongLong GetDuration();
123 virtual wxLongLong GetDownloadProgress();
124 virtual wxLongLong GetDownloadTotal();
137 wxLongLong GetDataSizeFromStart(TimeValue end);
772 bool wxQTMediaBackend::SetPosition(wxLongLong where)
792 wxLongLong wxQTMediaBackend::GetPosition()
848 wxLongLong wxQTMediaBackend::GetDuration()
1035 wxLongLong wxQTMediaBacken
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/msw/
H A Dcombo.h97 wxLongLong m_animStart;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/msw/
H A Dmediactrl_wmp10.cpp648 virtual bool SetPosition(wxLongLong where);
649 virtual wxLongLong GetPosition();
650 virtual wxLongLong GetDuration();
663 virtual wxLongLong GetDownloadProgress();
664 virtual wxLongLong GetDownloadTotal();
1139 bool wxWMP10MediaBackend::SetPosition(wxLongLong where)
1159 wxLongLong wxWMP10MediaBackend::GetPosition()
1171 wxLongLong ll;
1221 wxLongLong wxWMP10MediaBackend::GetDuration()
1238 wxLongLong l
[all...]
H A Dmediactrl.cpp1435 virtual bool SetPosition(wxLongLong where);
1436 virtual wxLongLong GetPosition();
1437 virtual wxLongLong GetDuration();
1451 void DoGetDownloadProgress(wxLongLong*, wxLongLong*);
1453 virtual wxLongLong GetDownloadProgress()
1455 wxLongLong progress, total;
1460 virtual wxLongLong GetDownloadTotal()
1462 wxLongLong progress, total;
1533 virtual bool SetPosition(wxLongLong wher
[all...]
H A Dmediactrl_am.cpp1437 virtual bool SetPosition(wxLongLong where);
1438 virtual wxLongLong GetPosition();
1439 virtual wxLongLong GetDuration();
1452 void DoGetDownloadProgress(wxLongLong*, wxLongLong*);
1453 virtual wxLongLong GetDownloadProgress()
1455 wxLongLong progress, total;
1459 virtual wxLongLong GetDownloadTotal()
1461 wxLongLong progress, total;
1913 bool wxAMMediaBackend::SetPosition(wxLongLong wher
[all...]
H A Dmediactrl_qt.cpp399 virtual bool SetPosition(wxLongLong where);
400 virtual wxLongLong GetPosition();
401 virtual wxLongLong GetDuration();
974 bool wxQTMediaBackend::SetPosition(wxLongLong where)
1002 wxLongLong wxQTMediaBackend::GetPosition()
1059 wxLongLong wxQTMediaBackend::GetDuration()
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/unix/
H A Dmediactrl.cpp188 virtual bool SetPosition(wxLongLong where);
189 virtual wxLongLong GetPosition();
190 virtual wxLongLong GetDuration();
198 virtual wxLongLong GetDownloadProgress();
199 virtual wxLongLong GetDownloadTotal();
220 wxLongLong m_llPausedPos; // Paused position - see Pause()
1368 wxLongLong wxGStreamerMediaBackend::GetPosition()
1402 bool wxGStreamerMediaBackend::SetPosition(wxLongLong where)
1442 wxLongLong wxGStreamerMediaBackend::GetDuration()
1530 wxLongLong wxGStreamerMediaBacken
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/generic/
H A Dtimer.cpp73 typedef wxLongLong wxTimerTick_t;
78 #else // using native wxLongLong
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/samples/mediaplayer/
H A Dmediaplayer.cpp1426 wxLongLong llLength = currentpage->m_mediactrl->Length();
1436 wxLongLong llTell = currentpage->m_mediactrl->Tell();
1461 wxLongLong llDownloadProgress =
1463 wxLongLong llDownloadTotal =

Completed in 313 milliseconds

12