Home
last modified time | relevance | path

Searched refs:ByteSize (Results 1 – 25 of 25) sorted by relevance

/reactos/drivers/storage/class/classpnp/
H A Dsrblib.c29 _In_ CLONG ByteSize in DefaultStorageRequestBlockAllocateRoutine() argument
55 _In_ ULONG ByteSize, in pInitializeStorageRequestBlock() argument
98 RtlZeroMemory(Srb, ByteSize); in pInitializeStorageRequestBlock()
104 Srb->SrbLength = ByteSize; in pInitializeStorageRequestBlock()
120 if ((ByteSize < offset) || in pInitializeStorageRequestBlock()
135 if (ByteSize <= offset) { in pInitializeStorageRequestBlock()
188 if (ByteSize < (offset + length)) { in pInitializeStorageRequestBlock()
209 _In_ ULONG ByteSize, in InitializeStorageRequestBlock() argument
253 _Inout_opt_ ULONG *ByteSize, in CreateStorageRequestBlock() argument
354 if (ByteSize != NULL) in CreateStorageRequestBlock()
[all …]
H A Dlock.c479 CLONG ByteSize in RemoveTrackingAllocateRoutine() argument
484 return ExAllocatePoolWithTag(NonPagedPoolNx, ByteSize, CLASS_TAG_LOCK_TRACKING); in RemoveTrackingAllocateRoutine()
H A Dclassp.h2410 _In_ CLONG ByteSize
2415 _In_ CLONG ByteSize
2424 _Inout_opt_ ULONG *ByteSize,
2431 _Inout_bytecount_(ByteSize) PSTORAGE_REQUEST_BLOCK Srb,
2433 _In_ ULONG ByteSize,
H A Dxferpkt.c229 ULONG ByteSize = 0; in InitializeTransferPackets() local
238 &ByteSize, in InitializeTransferPackets()
247 &ByteSize, in InitializeTransferPackets()
256 &ByteSize, in InitializeTransferPackets()
/reactos/boot/freeldr/freeldr/lib/mm/
H A Dheap.c323 SIZE_T ByteSize, in FrLdrHeapAllocateEx() argument
338 ByteSize += REDZONE_ALLOCATION; in FrLdrHeapAllocateEx()
342 if ((ByteSize + sizeof(HEAP_BLOCK)) > MAXUSHORT * sizeof(HEAP_BLOCK)) in FrLdrHeapAllocateEx()
344 ERR("HEAP: Allocation of 0x%lx bytes too large\n", ByteSize); in FrLdrHeapAllocateEx()
352 BlockSize = (USHORT)((ByteSize + sizeof(HEAP_BLOCK) - 1) / sizeof(HEAP_BLOCK)); in FrLdrHeapAllocateEx()
415 HeapHandle, ByteSize, &Tag, Block->Data); in FrLdrHeapAllocateEx()
422 *REDZONE_SIZE(Block) = ByteSize - REDZONE_ALLOCATION; in FrLdrHeapAllocateEx()
434 WARN("HEAP: nothing suitable found for 0x%lx bytes\n", ByteSize); in FrLdrHeapAllocateEx()
/reactos/ntoskrnl/mm/ARM3/
H A Dspecial.c657 ULONG ByteSize; in MiTestSpecialPool() local
663 ByteSize = (100 * (i+1)) % (PAGE_SIZE - sizeof(POOL_HEADER)); in MiTestSpecialPool()
664 p1 = MmAllocateSpecialPool(ByteSize, 'TEST', PoolType, 0); in MiTestSpecialPool()
665 DPRINT1("p1 %p size %lu\n", p1, ByteSize); in MiTestSpecialPool()
672 ByteSize = (100 * (i+1)) % (PAGE_SIZE - sizeof(POOL_HEADER)); in MiTestSpecialPool()
673 p2[i] = MmAllocateSpecialPool(ByteSize, 'TEST', PoolType, 0); in MiTestSpecialPool()
674 DPRINT1("p2[%lu] %p size %lu\n", i, p1, ByteSize); in MiTestSpecialPool()
/reactos/modules/rostests/kmtests/rtl/
H A DRtlSplayTree.c26 AllocRoutine(PRTL_GENERIC_TABLE Table, CLONG ByteSize) in AllocRoutine() argument
29 (NonPagedPool, sizeof(LIST_ENTRY) + ByteSize); in AllocRoutine()
/reactos/base/applications/cmdutils/mode/
H A Dmode.c615 ConResPrintf(StdOut, IDS_COM_STATUS_DATA_BITS, dcb.ByteSize); in ShowSerialStatus()
731 ParseByteSize(PCWSTR argStr, PBYTE ByteSize) in ParseByteSize() argument
738 *ByteSize = (BYTE)value; in ParseByteSize()
739 if (*ByteSize < 5 || *ByteSize > 8) in ParseByteSize()
816 pDCB->ByteSize = 7; in BuildOldCommDCB()
819 argStr = ParseByteSize(argStr, &pDCB->ByteSize); in BuildOldCommDCB()
934 argStr = ParseByteSize(argStr+5, &pDCB->ByteSize); in BuildNewCommDCB()
/reactos/dll/appcompat/apphelp/
H A Ddbgheap.c43 static PVOID NTAPI ShimAllocAllocateRoutine(_In_ PRTL_AVL_TABLE Table, _In_ CLONG ByteSize) in ShimAllocAllocateRoutine() argument
45 return RtlAllocateHeap(g_PrivAllocationHeap, HEAP_ZERO_MEMORY, ByteSize); in ShimAllocAllocateRoutine()
/reactos/ntoskrnl/ps/
H A Dapphelp.c102 _In_ ULONG ByteSize) in ApphelpAlloc() argument
104 return ExAllocatePoolWithTag(PagedPool, ByteSize, TAG_SHIM); in ApphelpAlloc()
236 _In_ CLONG ByteSize) in ApphelpShimCacheAllocateRoutine() argument
238 return ApphelpAlloc(ByteSize); in ApphelpShimCacheAllocateRoutine()
/reactos/dll/win32/kernel32/wine/
H A Dcomm.c233 if(!(device = COMM_ParseByteSize(device, &lpdcb->ByteSize))) in COMM_BuildOldCommDCB()
331 if(!(device = COMM_ParseByteSize(device + 5, &lpdcb->ByteSize))) in COMM_BuildNewCommDCB()
779 lpdcb->ByteSize, lpdcb->BaudRate, lpdcb->fParity, lpdcb->Parity, in dump_dcb()
828 slc.WordLength = lpdcb->ByteSize; in SetCommState()
941 lpdcb->ByteSize = slc.WordLength; in GetCommState()
/reactos/modules/rostests/tests/sertest/
H A Dsertest.c85 dcb.ByteSize = 8; in main()
/reactos/dll/win32/serialui/
H A Dserialui.c254 if(ByteSizes[i] == lpDlgInfo->lpCC->dcb.ByteSize) in CommDlgProc()
375 lpDlgInfo->lpCC->dcb.ByteSize = ByteSizes[Index]; in OkButton()
/reactos/boot/freeldr/fdebug/
H A Drs232.c112 dcb.ByteSize = DataBits; in Rs232ConfigurePortWin32()
/reactos/boot/freeldr/freeldr/include/
H A Dmm.h163 SIZE_T ByteSize,
/reactos/modules/rostests/winetests/kernel32/
H A Dcomm.c521 check_dcb_member(ByteSize, "%u"); in check_dcb()
765 dcb.ByteSize = 8; in test_ReadTimeOut()
809 dcb.ByteSize = 8; in test_waittxempty()
1015 dcb.ByteSize = 255; /* likely bogus */ in test_non_pending_errors()
1041 dcb.ByteSize = 8; in test_LoopbackRead()
1078 dcb.ByteSize = 8; in test_LoopbackRead()
2045 dcb.ByteSize = 8; in test_read_write()
H A Dgenerated.c731 TEST_FIELD_SIZE (DCB, ByteSize, 1) in test_pack_DCB()
732 TEST_FIELD_ALIGN (DCB, ByteSize, 1) in test_pack_DCB()
733 TEST_FIELD_OFFSET(DCB, ByteSize, 18) in test_pack_DCB()
2588 TEST_FIELD_SIZE (DCB, ByteSize, 1) in test_pack_DCB()
2589 TEST_FIELD_ALIGN (DCB, ByteSize, 1) in test_pack_DCB()
2590 TEST_FIELD_OFFSET(DCB, ByteSize, 18) in test_pack_DCB()
/reactos/sdk/include/xdk/
H A Drtltypes.h412 _In_ CLONG ByteSize);
479 _In_ CLONG ByteSize);
/reactos/drivers/filesystems/cdfs/
H A Dstrucsup.c184 _In_ CLONG ByteSize
2708 _In_ CLONG ByteSize argument
2734 return( FsRtlAllocatePoolWithTag( CdPagedPool, ByteSize, TAG_FCB_TABLE ));
/reactos/drivers/filesystems/npfs/
H A Dstrucsup.c36 IN CLONG ByteSize) in NpEventTableAllocate() argument
/reactos/sdk/lib/rtl/
H A Dheap.c3356 SIZE_T ByteSize, Size, Result; in RtlpValidateHeapSegment() local
3431 ByteSize = Size - sizeof(HEAP_FREE_ENTRY); in RtlpValidateHeapSegment()
3434 (ByteSize > sizeof(HEAP_FREE_ENTRY_EXTRA))) in RtlpValidateHeapSegment()
3436 ByteSize -= sizeof(HEAP_FREE_ENTRY_EXTRA); in RtlpValidateHeapSegment()
3440 ByteSize, in RtlpValidateHeapSegment()
3443 if (Result != ByteSize) in RtlpValidateHeapSegment()
H A Dheappage.c1203 IN CLONG ByteSize) in RtlpDphAllocateNodeForTable() argument
1209 ASSERT((ULONG_PTR)(((PRTL_BALANCED_LINKS)0)+1) + sizeof(PUCHAR) == ByteSize); in RtlpDphAllocateNodeForTable()
/reactos/sdk/include/ndk/
H A Drtltypes.h630 CLONG ByteSize
637 CLONG ByteSize
/reactos/ntoskrnl/io/pnpmgr/
H A Dpnpmgr.c1098 IN CLONG ByteSize) in PiAllocateGenericTableEntry() argument
/reactos/sdk/include/psdk/
H A Dwinbase.h690 BYTE ByteSize; member