Home
last modified time | relevance | path

Searched refs:UsedSize (Results 1 – 4 of 4) sorted by relevance

/reactos/sdk/lib/rtl/
H A Ddbgbuffer.c138 ULONG UsedSize = sizeof(ULONG); in RtlpQueryRemoteProcessModules() local
240 if (UsedSize > Size) in RtlpQueryRemoteProcessModules()
271 UsedSize += sizeof(RTL_PROCESS_MODULE_INFORMATION); in RtlpQueryRemoteProcessModules()
278 *ReturnedSize = UsedSize; in RtlpQueryRemoteProcessModules()
/reactos/dll/ntdll/ldr/
H A Dldrapi.c959 ULONG UsedSize = FIELD_OFFSET(RTL_PROCESS_MODULES, Modules); in LdrQueryProcessModuleInformationEx() local
971 if (Size < UsedSize) in LdrQueryProcessModuleInformationEx()
993 UsedSize += sizeof(RTL_PROCESS_MODULE_INFORMATION); in LdrQueryProcessModuleInformationEx()
995 if (UsedSize > Size) in LdrQueryProcessModuleInformationEx()
1056 *ReturnedSize = UsedSize; in LdrQueryProcessModuleInformationEx()
/reactos/drivers/filesystems/ext2/src/
H A Dfsctl.c936 ULONG UsedSize = 0; in Ext2GetRetrievalPointers() local
1032 UsedSize = FIELD_OFFSET(RETRIEVAL_POINTERS_BUFFER, Extents[0]); in Ext2GetRetrievalPointers()
1083 if (UsedSize + sizeof(RETRIEVAL_POINTERS_BUFFER) > OutputSize) { in Ext2GetRetrievalPointers()
1087 UsedSize += sizeof(LARGE_INTEGER) * 2; in Ext2GetRetrievalPointers()
1088 Irp->IoStatus.Information = (ULONG_PTR)UsedSize; in Ext2GetRetrievalPointers()
/reactos/ntoskrnl/mm/
H A Dsection.c2627 ULONG UsedSize; in ExeFmtpReadFile() local
2668 UsedSize = (ULONG)Iosb.Information; in ExeFmtpReadFile()
2670 if(NT_SUCCESS(Status) && UsedSize < OffsetAdjustment) in ExeFmtpReadFile()
2680 *ReadSize = UsedSize - OffsetAdjustment; in ExeFmtpReadFile()