Searched refs:readBuffer (Results 1 – 9 of 9) sorted by relevance
/reactos/sdk/lib/drivers/wdf/shared/inc/private/um/ |
H A D | fxdeviceum.hpp | 84 PUCHAR readBuffer = y; \ 87 for (readCount = z; readCount--; readBuffer++, registerBuffer++) { \ 88 *readBuffer = *(volatile UCHAR * const)(registerBuffer); \ 94 PUSHORT readBuffer = y; \ 97 for (readCount = z; readCount--; readBuffer++, registerBuffer++) { \ 98 *readBuffer = *(volatile USHORT * const)(registerBuffer); \ 104 PULONG readBuffer = y; \ 107 for (readCount = z; readCount--; readBuffer++, registerBuffer++) { \ 108 *readBuffer = *(volatile ULONG * const)(registerBuffer); \ 114 PULONG64 readBuffer = y; \ [all …]
|
/reactos/base/services/tcpsvcs/ |
H A D | echo.c | 17 CHAR readBuffer[RECV_BUF]; in EchoIncomingPackets() local 25 readBytes = recv(sock, readBuffer, RECV_BUF, 0); in EchoIncomingPackets() 34 retVal = send(sock, readBuffer + totalSentBytes, readBytes - totalSentBytes, 0); in EchoIncomingPackets()
|
H A D | discard.c | 17 CHAR readBuffer[BUFSIZE]; in ReceiveIncomingPackets() local 22 readBytes = recv(sock, readBuffer, BUFSIZE, 0); in ReceiveIncomingPackets()
|
H A D | skelserver.c | 144 CHAR readBuffer[BUF]; in ShutdownConnection() local 149 ret = recv(sock, readBuffer, BUF, 0); in ShutdownConnection()
|
/reactos/drivers/storage/class/disk/ |
H A D | geometry.c | 1140 PUSHORT readBuffer = NULL; in DiskIsNT4Geometry() local 1145 …readBuffer = ExAllocatePoolWithTag(NonPagedPoolNx, FdoExtension->DiskGeometry.BytesPerSector, DISK… in DiskIsNT4Geometry() 1147 if (readBuffer) in DiskIsNT4Geometry() 1162 …irp = IoBuildSynchronousFsdRequest(IRP_MJ_READ, FdoExtension->DeviceObject, readBuffer, FdoExtensi… in DiskIsNT4Geometry() 1185 if (readBuffer[BOOT_SIGNATURE_OFFSET] == BOOT_RECORD_SIGNATURE) in DiskIsNT4Geometry() 1187 …PPARTITION_DESCRIPTOR partitionTableEntry = (PPARTITION_DESCRIPTOR)&readBuffer[PARTITION_TABLE_OFF… in DiskIsNT4Geometry() 1235 FREE_POOL(readBuffer); in DiskIsNT4Geometry()
|
H A D | disk.c | 4333 PUCHAR readBuffer; in DiskIoctlPredictFailure() local 4353 readBuffer = ExAllocatePoolWithTag(NonPagedPoolNx, in DiskIoctlPredictFailure() 4357 if (readBuffer != NULL) { in DiskIoctlPredictFailure() 4363 readBuffer, in DiskIoctlPredictFailure() 4382 FREE_POOL(readBuffer); in DiskIoctlPredictFailure()
|
/reactos/dll/win32/oleaut32/ |
H A D | olefont.c | 1627 char readBuffer[0x100]; in OLEFontImpl_Load() local 1661 IStream_Read(pLoadStream, readBuffer, string_size, &cbRead); in OLEFontImpl_Load() 1666 len = MultiByteToWideChar( CP_ACP, 0, readBuffer, string_size, NULL, 0 ); in OLEFontImpl_Load() 1668 MultiByteToWideChar( CP_ACP, 0, readBuffer, string_size, this->description.lpstrName, len ); in OLEFontImpl_Load()
|
/reactos/sdk/include/reactos/wine/ |
H A D | wgl_driver.h | 657 …void (WINE_GLAPI *p_glCopyNamedBufferSubData)( GLuint readBuffer, GLuint writeBuffer, GLintp… 1758 …tCopyBufferSubDataNV)( GLuint readGpu, GLbitfield writeGpuMask, GLuint readBuffer, GLuint writeBuf… 1776 …void (WINE_GLAPI *p_glNamedCopyBufferSubDataEXT)( GLuint readBuffer, GLuint writeBuffer, GLi…
|
/reactos/sdk/include/GL/ |
H A D | glext.h | 10801 GLAPI void APIENTRY glNamedCopyBufferSubDataEXT (GLuint readBuffer, GLuint writeBuffer, GLintptr re… 11008 typedef void (APIENTRYP PFNGLNAMEDCOPYBUFFERSUBDATAEXTPROC) (GLuint readBuffer, GLuint writeBuffer,…
|