HomeSort by relevance Sort by last modified time
    Searched refs:LowPart (Results 1 - 25 of 43) sorted by null

1 2

  /external/stlport/test/unit/cppunit/
cppunit_timer.h 28 m_start.LowPart = m_restart.LowPart = m_stop.LowPart = 0;
43 if (m_start.HighPart == 0 && m_start.LowPart == 0) {
53 if ((m_stop.HighPart != 0 || m_stop.LowPart != 0) &&
54 m_restart.HighPart != 0 && m_restart.LowPart != 0) {
56 if (stop.LowPart < m_restart.LowPart) {
57 if (m_restart.LowPart - stop.LowPart > m_stop.LowPart)
    [all...]
  /ndk/tests/device/test-gnustl-full/unit/cppunit/
cppunit_timer.h 28 m_start.LowPart = m_restart.LowPart = m_stop.LowPart = 0;
43 if (m_start.HighPart == 0 && m_start.LowPart == 0) {
53 if ((m_stop.HighPart != 0 || m_stop.LowPart != 0) &&
54 m_restart.HighPart != 0 && m_restart.LowPart != 0) {
56 if (stop.LowPart < m_restart.LowPart) {
57 if (m_restart.LowPart - stop.LowPart > m_stop.LowPart)
    [all...]
  /ndk/tests/device/test-stlport/unit/cppunit/
cppunit_timer.h 28 m_start.LowPart = m_restart.LowPart = m_stop.LowPart = 0;
43 if (m_start.HighPart == 0 && m_start.LowPart == 0) {
53 if ((m_stop.HighPart != 0 || m_stop.LowPart != 0) &&
54 m_restart.HighPart != 0 && m_restart.LowPart != 0) {
56 if (stop.LowPart < m_restart.LowPart) {
57 if (m_restart.LowPart - stop.LowPart > m_stop.LowPart)
    [all...]
  /external/webkit/Source/WebKit/win/
MemoryStream.cpp 136 proposedPos = dlibMove.LowPart;
142 if (dlibMove.LowPart > (m_buffer->size() - m_pos))
144 proposedPos += dlibMove.LowPart;
146 lowPartNeg = (~dlibMove.LowPart)+1;
156 lowPartNeg = (~dlibMove.LowPart)+1;
170 plibNewPosition->LowPart = (DWORD) m_pos;
192 cb.LowPart = (DWORD)-1;
196 ULONG read = min(cb.LowPart, (ULONG)(m_buffer->size()-m_pos));
200 pcbWritten->LowPart = written;
204 pcbRead->LowPart = read
    [all...]
WebHTMLRepresentation.cpp 288 if (stat.cbSize.HighPart || !stat.cbSize.LowPart)
291 Vector<char> dataBuffer(stat.cbSize.LowPart);
  /external/zlib/contrib/testzlib/
testzlib.c 11 if (A.LowPart >= B.LowPart)
12 R->LowPart = A.LowPart - B.LowPart;
15 R->LowPart = A.LowPart - B.LowPart;
48 pbeginTime64->LowPart=dwEax;
62 LIres.LowPart=LIres.HighPart=0;
    [all...]
  /external/skia/bench/
BenchSysTimer_windows.cpp 27 start_cpu_sys.LowPart = sysTime.dwLowDateTime;
29 start_cpu_usr.LowPart = usrTime.dwLowDateTime;
  /external/skia/src/ports/
SkTime_win.cpp 34 li.LowPart = ft.dwLowDateTime;
  /external/qemu/block/
raw-win32.c 55 li.LowPart = SetFilePointer (h, 0, &li.HighPart, FILE_CURRENT);
56 if (li.LowPart == 0xffffffffUL && GetLastError() != NO_ERROR)
65 SetFilePointer(h, li.LowPart, &li.HighPart, FILE_BEGIN);
187 l.LowPart = GetFileSize(s->hfile, (PDWORD)&l.HighPart);
188 if (l.LowPart == 0xffffffffUL && GetLastError() != NO_ERROR)
  /external/stlport/src/details/
fstream_win32io.cpp 85 li.LowPart = GetFileSize(fd, (unsigned long*) &li.HighPart);
86 if (li.LowPart != INVALID_FILE_SIZE || GetLastError() == NO_ERROR)
571 li.LowPart = SetFilePointer(_M_file_id, li.LowPart, &li.HighPart, whence);
572 if (li.LowPart != INVALID_SET_FILE_POINTER || GetLastError() == NO_ERROR)
601 base = MapViewOfFile(_M_view_id, FILE_MAP_READ, li.HighPart, li.LowPart,
  /ndk/sources/cxx-stl/stlport/src/details/
fstream_win32io.cpp 85 li.LowPart = GetFileSize(fd, (unsigned long*) &li.HighPart);
86 if (li.LowPart != INVALID_FILE_SIZE || GetLastError() == NO_ERROR)
571 li.LowPart = SetFilePointer(_M_file_id, li.LowPart, &li.HighPart, whence);
572 if (li.LowPart != INVALID_SET_FILE_POINTER || GetLastError() == NO_ERROR)
601 base = MapViewOfFile(_M_view_id, FILE_MAP_READ, li.HighPart, li.LowPart,
  /external/chromium/base/
platform_file_win.cc 121 overlapped.Offset = offset_li.LowPart;
143 overlapped.Offset = offset_li.LowPart;
207 size.LowPart = file_info.nFileSizeLow;
  /external/qemu/android/utils/
mapfile.c 137 if ((SetFilePointer(handle, convert.LowPart, &convert.HighPart,
211 converter.HighPart, converter.LowPart, NULL);
215 converter.LowPart, map_size);
  /ndk/sources/host-tools/ndk-stack/elff/
mapfile.c 137 if ((SetFilePointer(handle, convert.LowPart, &convert.HighPart,
211 converter.HighPart, converter.LowPart, NULL);
215 converter.LowPart, map_size);
  /external/webkit/Source/WebKit2/Shared/Plugins/Netscape/win/
NetscapePluginModuleWin.cpp 51 version.LowPart = leastSignificant;
  /external/zlib/contrib/minizip/
iowin32.c 223 li.u.LowPart = SetFilePointer(hFile, li.u.LowPart, &li.u.HighPart, FILE_CURRENT);
224 if ( (li.LowPart == 0xFFFFFFFF) && (GetLastError() != NO_ERROR))
300 DWORD dwSet = SetFilePointer(hFile, li->u.LowPart, &li->u.HighPart, dwMoveMethod);
  /external/wpa_supplicant_6/wpa_supplicant/src/drivers/
driver_ralink.h 105 ULONG LowPart;
109 ULONG LowPart;
  /external/wpa_supplicant_6/wpa_supplicant/src/utils/
os_win32.c 45 li.LowPart = ft.dwLowDateTime;
  /external/wpa_supplicant_8/src/utils/
os_win32.c 40 li.LowPart = ft.dwLowDateTime;
  /external/chromium/net/base/
file_stream_win.cc 24 overlapped->Offset = offset.LowPart;
30 offset.LowPart = overlapped->Offset;
  /external/llvm/utils/KillTheDoctor/
KillTheDoctor.cpp 391 a.LowPart = KernelTime.dwLowDateTime;
393 b.LowPart = UserTime.dwLowDateTime;
  /external/quake/quake/src/QW/client/
sys_win.c 158 unsigned int lowpart, highpart; local
190 lowpart = (unsigned int)PerformanceFreq.LowPart;
194 while (highpart || (lowpart > 2000000.0))
197 lowpart >>= 1;
198 lowpart |= (highpart & 1) << 31;
202 pfreq = 1.0 / (double)lowpart;
297 temp = ((unsigned int)PerformanceCount.LowPart >> lowshift) |
  /external/quake/quake/src/WinQuake/
sys_win.cpp 301 unsigned int lowpart, highpart; local
312 lowpart = (unsigned int)PerformanceFreq.LowPart;
316 while (highpart || (lowpart > 2000000.0))
319 lowpart >>= 1;
320 lowpart |= (highpart & 1) << 31;
324 pfreq = 1.0 / (double)lowpart;
480 temp = ((unsigned int)PerformanceCount.LowPart >> lowshift) |
  /external/chromium/net/disk_cache/
file_win.cc 254 return static_cast<size_t>(size.LowPart);
  /external/webkit/Source/WebCore/platform/wince/
FileSystemWinCE.cpp 78 fileSize.LowPart = fileInformation.nFileSizeLow;

Completed in 1037 milliseconds

1 2