Home
last modified time | relevance | path

Searched refs:overlapped (Results 1 – 11 of 11) sorted by relevance

/external/deqp/execserver/
DxsWin32TestProcess.cpp133 OVERLAPPED overlapped; in run() local
136 deMemset(&overlapped, 0, sizeof(overlapped)); in run()
137 overlapped.hEvent = ioEvent.getHandle(); in run()
145 if (!WriteFile(m_dst, &m_caseList[curPos], (DWORD)numToWrite, NULL, &overlapped)) in run()
159 if (!GetOverlappedResult(m_dst, &overlapped, &numBytesWritten, FALSE)) in run()
228 OVERLAPPED overlapped; in run() local
232 deMemset(&overlapped, 0, sizeof(overlapped)); in run()
233 overlapped.hEvent = ioEvent.getHandle(); in run()
240 overlapped.Offset = (DWORD)(offset & 0xffffffffu); in run()
241 overlapped.OffsetHigh = (DWORD)(offset >> 32); in run()
[all …]
/external/wpa_supplicant_8/src/l2_packet/
Dl2_packet_ndis.c98 OVERLAPPED overlapped; in l2_packet_send() local
108 os_memset(&overlapped, 0, sizeof(overlapped)); in l2_packet_send()
109 o = &overlapped; in l2_packet_send()
137 driver_ndis_get_ndisuio_handle(), &overlapped, in l2_packet_send()
/external/lzma/CPP/Windows/
DFileIO.h69 LPVOID outBuffer, DWORD outSize, LPDWORD bytesReturned, LPOVERLAPPED overlapped) const in DeviceIoControl() argument
72 outBuffer, outSize, bytesReturned, overlapped)); in DeviceIoControl()
/external/libvorbis/doc/
D01-introduction.tex351 requirements, overlapped 50\% with the output of the previous frame and
493 Windowed MDCT output is overlapped and added with the right hand data
509 The overlapped portion produced from overlapping the previous and
514 overlapped portions. When overlapping a short and long window, much of
D04-codec.tex578 Windowed MDCT output is overlapped and added with the right hand data
581 \xref{vorbis:spec:window}). The overlapped portion
586 one-half block consisting of and only of the overlapped portions. When
/external/vboot_reference/tests/
Dcgptlib_test.c745 int overlapped; in OverlappedPartitionTest() member
808 EXPECT(cases[i].overlapped == CheckEntries(e, h)); in OverlappedPartitionTest()
/external/libcxx/include/
Dstring602 _LIBCPP_ASSERT(__s2 < __s1 || __s2 >= __s1+__n, "char_traits::copy overlapped range");
647 _LIBCPP_ASSERT(__s2 < __s1 || __s2 >= __s1+__n, "char_traits::copy overlapped range");
693 _LIBCPP_ASSERT(__s2 < __s1 || __s2 >= __s1+__n, "char_traits::copy overlapped range");
809 _LIBCPP_ASSERT(__s2 < __s1 || __s2 >= __s1+__n, "char_traits::copy overlapped range");
922 _LIBCPP_ASSERT(__s2 < __s1 || __s2 >= __s1+__n, "char_traits::copy overlapped range");
/external/llvm/lib/Target/
DREADME.txt2120 We don't fold this because we don't want to introduce an overlapped live range
/external/sqlite/dist/
Dsqlite3.c35739 OVERLAPPED overlapped; /* The offset for ReadFile. */
35780 memset(&overlapped, 0, sizeof(OVERLAPPED));
35781 overlapped.Offset = (LONG)(offset & 0xffffffff);
35782 overlapped.OffsetHigh = (LONG)((offset>>32) & 0x7fffffff);
35783 while( !osReadFile(pFile->h, pBuf, amt, &nRead, &overlapped) &&
35857 OVERLAPPED overlapped; /* The offset for WriteFile. */
35865 memset(&overlapped, 0, sizeof(OVERLAPPED));
35866 overlapped.Offset = (LONG)(offset & 0xffffffff);
35867 overlapped.OffsetHigh = (LONG)((offset>>32) & 0x7fffffff);
35874 if( !osWriteFile(pFile->h, aRem, nRem, &nWrite, &overlapped) ){
[all …]
/external/sqlite/dist/orig/
Dsqlite3.c35721 OVERLAPPED overlapped; /* The offset for ReadFile. */
35762 memset(&overlapped, 0, sizeof(OVERLAPPED));
35763 overlapped.Offset = (LONG)(offset & 0xffffffff);
35764 overlapped.OffsetHigh = (LONG)((offset>>32) & 0x7fffffff);
35765 while( !osReadFile(pFile->h, pBuf, amt, &nRead, &overlapped) &&
35839 OVERLAPPED overlapped; /* The offset for WriteFile. */
35847 memset(&overlapped, 0, sizeof(OVERLAPPED));
35848 overlapped.Offset = (LONG)(offset & 0xffffffff);
35849 overlapped.OffsetHigh = (LONG)((offset>>32) & 0x7fffffff);
35856 if( !osWriteFile(pFile->h, aRem, nRem, &nWrite, &overlapped) ){
[all …]
/external/libxml2/
DChangeLog9657 valgrind pointed out the strings overlapped. cleanup .