/reactos/sdk/lib/drivers/wdf/shared/inc/private/common/ |
H A D | fxpoolinlines.hpp | 115 Tracker->Pool = Pool; in FxPoolInsertNonPagedAllocateTracker() 126 if( Pool->NonPagedBytes > Pool->PeakNonPagedBytes ) { in FxPoolInsertNonPagedAllocateTracker() 127 Pool->PeakNonPagedBytes = Pool->NonPagedBytes; in FxPoolInsertNonPagedAllocateTracker() 130 if( Pool->NonPagedAllocations > Pool->PeakNonPagedAllocations ) { in FxPoolInsertNonPagedAllocateTracker() 131 Pool->PeakNonPagedAllocations = Pool->NonPagedAllocations; in FxPoolInsertNonPagedAllocateTracker() 205 Tracker->Pool = Pool; in FxPoolInsertPagedAllocateTracker() 213 Pool->PagedBytes += Size; in FxPoolInsertPagedAllocateTracker() 216 if( Pool->PagedBytes > Pool->PeakPagedBytes ) { in FxPoolInsertPagedAllocateTracker() 217 Pool->PeakPagedBytes = Pool->PagedBytes; in FxPoolInsertPagedAllocateTracker() 220 if( Pool->PagedAllocations > Pool->PeakPagedAllocations ) { in FxPoolInsertPagedAllocateTracker() [all …]
|
H A D | fxpool.h | 102 PFX_POOL Pool; in DECLSPEC_ALIGN() local 130 __in PFX_POOL Pool 147 __in PFX_POOL Pool 196 __in PFX_POOL Pool, 241 __in PFX_POOL Pool
|
H A D | fxpagedlookasidelist.hpp | 65 __inout PVOID Pool in ReclaimPool() argument 74 pHeader = CONTAINING_RECORD(Pool, FX_POOL_HEADER, AllocationStart); in ReclaimPool() 95 FxFreeToPagedLookasideList(&m_PoolLookaside, Pool); in ReclaimPool()
|
H A D | fxdevicetext.hpp | 79 __in PVOID Pool in operator delete() 82 FxPoolFree(Pool); in operator delete()
|
H A D | fxnpagedlookasidelist.hpp | 98 __inout PVOID Pool in ReclaimPool() argument 101 FxFreeToNPagedLookasideList(&m_PoolLookaside, Pool); in ReclaimPool()
|
/reactos/sdk/lib/drivers/wdf/shared/object/ |
H A D | wdfpool.cpp | 78 __in PFX_POOL Pool, in FxPoolAllocator() argument 461 __in PFX_POOL Pool in FxPoolDump() argument 494 Pool->NonPagedBytes, Pool->PagedBytes, in FxPoolDump() 495 Pool->NonPagedAllocations, Pool->PagedAllocations, in FxPoolDump() 496 Pool->PeakNonPagedBytes, Pool->PeakPagedBytes, in FxPoolDump() 497 Pool->PeakNonPagedAllocations, Pool->PeakPagedAllocations in FxPoolDump() 507 for (ple = Pool->PagedHead.Flink; ple != &Pool->PagedHead; ple = ple->Flink) { in FxPoolDump() 556 __in PFX_POOL Pool in FxPoolInitialize() argument 593 Pool->NonPagedBytes = 0; in FxPoolInitialize() 594 Pool->PagedBytes = 0; in FxPoolInitialize() [all …]
|
/reactos/dll/opengl/glu32/src/libnurbs/internals/ |
H A D | bufpool.h | 46 friend class Pool; variable 50 class Pool { 52 Pool( int, int, const char * ); 53 ~Pool( void ); 81 Pool::free_buffer( void *b ) in free_buffer() 98 Pool::new_buffer( void ) in new_buffer() 120 inline void * operator new( size_t, Pool & ); 125 inline void operator delete( void *, Pool & ) { assert( 0 ); } in delete() argument 126 inline void deleteMe( Pool & ); 130 PooledObj::operator new( size_t, Pool& pool ) in new() [all …]
|
H A D | nurbstess.h | 136 Pool o_pwlcurvePool; 137 Pool o_nurbscurvePool; 138 Pool o_curvePool; 139 Pool o_trimPool; 140 Pool o_surfacePool; 141 Pool o_nurbssurfacePool; 142 Pool propertyPool; 144 Pool quiltPool;
|
H A D | bufpool.cc | 49 Pool::Pool( int _buffersize, int initpoolsize, const char *n ) in Pool() function in Pool 73 Pool::~Pool( void ) in ~Pool() 85 void Pool::grow( void ) in grow() 100 Pool::clear( void ) in clear()
|
H A D | monotonizer.h | 44 class Pool; variable 51 Pool& arcpool; 52 Pool& pwlarcpool; 60 Monotonizer( ArcTessellator& at, Pool& ap, Pool& p, jmp_buf& j ) in Monotonizer()
|
H A D | arctess.h | 44 class Pool; variable 49 ArcTessellator( TrimVertexPool&, Pool& ); 61 Pool& pwlarcpool;
|
H A D | subdivider.h | 48 class Pool; variable 114 Pool arcpool; 115 Pool bezierarcpool; 116 Pool pwlarcpool;
|
H A D | mesher.h | 43 class Pool; variable 58 Pool p;
|
H A D | trimvertpool.h | 52 Pool pool;
|
H A D | maplist.h | 58 Pool mapdescPool;
|
/reactos/drivers/network/ndis/ndis/ |
H A D | buffer.c | 408 KeAcquireSpinLock(&Pool->SpinLock.SpinLock, &Pool->SpinLock.OldIrql); in NdisAllocatePacket() 412 KeReleaseSpinLock(&Pool->SpinLock.SpinLock, Pool->SpinLock.OldIrql); in NdisAllocatePacket() 462 PNDISI_PACKET_POOL Pool; in NdisAllocatePacketPoolEx() local 491 if (Pool) in NdisAllocatePacketPoolEx() 703 if (Pool == NULL) in NdisDprAllocatePacketNonInterlocked() 710 if (Pool->FreeList) { in NdisDprAllocatePacketNonInterlocked() 715 Temp->Private.Pool = Pool; in NdisDprAllocatePacketNonInterlocked() 744 PNDISI_PACKET_POOL Pool = (PNDISI_PACKET_POOL)Packet->Private.Pool; in NdisDprFreePacket() local 836 PNDISI_PACKET_POOL Pool = (PNDISI_PACKET_POOL)Packet->Private.Pool; in NdisFreePacket() local 838 KeAcquireSpinLock(&Pool->SpinLock.SpinLock, &Pool->SpinLock.OldIrql); in NdisFreePacket() [all …]
|
/reactos/dll/directx/d3d9/ |
H A D | d3d9_resource.c | 11 void InitDirect3DResource9(Direct3DResource9_INT* pResource, D3DPOOL Pool, LPDIRECT3DDEVICE9_INT pB… in InitDirect3DResource9() argument 15 pResource->Pool = Pool; in InitDirect3DResource9()
|
H A D | d3d9_resource.h | 22 /* 0x0038 */ D3DPOOL Pool; member 27 void InitDirect3DResource9(Direct3DResource9_INT* pResource, D3DPOOL Pool, struct _Direct3DDevice9_…
|
H A D | d3d9_device.c | 789 …T Width, UINT Height, UINT Levels, DWORD Usage, D3DFORMAT Format, D3DPOOL Pool, IDirect3DTexture9*… in IDirect3DDevice9Base_CreateTexture() argument 812 hResult = CreateD3D9MipMap(This, Width, Height, Levels, Usage, Format, Pool, ppTexture); in IDirect3DDevice9Base_CreateTexture() 820 …T Height, UINT Depth, UINT Levels, DWORD Usage, D3DFORMAT Format, D3DPOOL Pool, IDirect3DVolumeTex… in IDirect3DDevice9Base_CreateVolumeTexture() argument 827 …ace, UINT EdgeLength, UINT Levels, DWORD Usage, D3DFORMAT Format, D3DPOOL Pool, IDirect3DCubeTextu… in IDirect3DDevice9Base_CreateCubeTexture() argument 834 …fer(LPDIRECT3DDEVICE9 iface, UINT Length, DWORD Usage, DWORD FVF, D3DPOOL Pool, IDirect3DVertexBuf… in IDirect3DDevice9Base_CreateVertexBuffer() argument 841 …IRECT3DDEVICE9 iface, UINT Length, DWORD Usage, D3DFORMAT Format, D3DPOOL Pool, IDirect3DIndexBuff… in IDirect3DDevice9Base_CreateIndexBuffer() argument 947 …DIRECT3DDEVICE9 iface, UINT Width, UINT Height, D3DFORMAT Format, D3DPOOL Pool, IDirect3DSurface9*… in IDirect3DDevice9Base_CreateOffscreenPlainSurface() argument
|
H A D | d3d9_texture.c | 27 D3DPOOL Pool, in InitDirect3DBaseTexture9() argument 31 InitDirect3DResource9(&pBaseTexture->BaseResource, Pool, pDevice, RefType); in InitDirect3DBaseTexture9()
|
H A D | d3d9_device.h | 217 …T Width, UINT Height, UINT Levels, DWORD Usage, D3DFORMAT Format, D3DPOOL Pool, IDirect3DTexture9*… 218 …T Height, UINT Depth, UINT Levels, DWORD Usage, D3DFORMAT Format, D3DPOOL Pool, IDirect3DVolumeTex… 219 …ace, UINT EdgeLength, UINT Levels, DWORD Usage, D3DFORMAT Format, D3DPOOL Pool, IDirect3DCubeTextu… 220 …fer(LPDIRECT3DDEVICE9 iface, UINT Length, DWORD Usage, DWORD FVF, D3DPOOL Pool, IDirect3DVertexBuf… 221 …IRECT3DDEVICE9 iface, UINT Length, DWORD Usage, D3DFORMAT Format, D3DPOOL Pool, IDirect3DIndexBuff… 230 …DIRECT3DDEVICE9 iface, UINT Width, UINT Height, D3DFORMAT Format, D3DPOOL Pool, IDirect3DSurface9*…
|
H A D | d3d9_texture.h | 21 D3DPOOL Pool,
|
/reactos/modules/rostests/winetests/ntdll/ |
H A D | threadpool.c | 495 environment.Pool = NULL; in test_tp_simple() 510 environment.Pool = pool; in test_tp_simple() 530 environment.Pool = pool; in test_tp_simple() 551 environment.Pool = pool; in test_tp_simple() 563 environment.Pool = pool; in test_tp_simple() 613 environment.Pool = pool; in test_tp_work() 664 environment.Pool = pool; in test_tp_work_scheduler() 673 environment.Pool = pool; in test_tp_work_scheduler() 776 environment.Pool = pool; in test_tp_group_wait() 790 environment.Pool = pool; in test_tp_group_wait() [all …]
|
/reactos/ntoskrnl/ex/ |
H A D | rundown.c | 670 PVOID Pool; in ExInitializeRundownProtectionCacheAware() local 677 Pool = (PVOID)((ULONG_PTR)RunRefCacheAware + sizeof(EX_RUNDOWN_REF_CACHE_AWARE)); in ExInitializeRundownProtectionCacheAware() 698 Pool = (PVOID)ALIGN_UP_BY(Pool, Align); in ExInitializeRundownProtectionCacheAware() 702 RunRefCacheAware->RunRefs = Pool; in ExInitializeRundownProtectionCacheAware()
|
/reactos/base/applications/taskmgr/lang/ |
H A D | bg-BG.rc | 298 AUTOCHECKBOX "Pa&ged Pool", IDC_PAGEDPOOL, 125, 50, 115, 10 299 AUTOCHECKBOX "N&on-paged Pool", IDC_NONPAGEDPOOL, 125, 61, 115, 10 393 IDS_TAB_PAGEDPOOL "Paged Pool" 394 IDS_TAB_NPPOOL "NP Pool"
|