Searched refs:cbArea (Results 1 - 7 of 7) sorted by relevance

/vbox/src/VBox/GuestHost/HGSMI/
H A DHGSMICommon.cpp145 int HGSMIAreaInitialize (HGSMIAREA *pArea, void *pvBase, HGSMISIZE cbArea, HGSMIOFFSET offBase) argument
150 || cbArea < HGSMIBufferMinimumSize () /* Large enough. */
151 || pu8Base + cbArea < pu8Base /* No address space wrap. */
152 || offBase > UINT32_C(0xFFFFFFFF) - cbArea /* Area within the 32 bit space: offBase + cbMem <= 0xFFFFFFFF */
160 pArea->offLast = cbArea - HGSMIBufferMinimumSize () + offBase;
161 pArea->cbArea = cbArea;
202 HGSMISIZE cbArea,
211 int rc = HGSMIAreaInitialize (&pHeap->area, pvBase, cbArea, offBase);
246 HGSMISIZE cbArea,
197 HGSMIHeapRelocate(HGSMIHEAP *pHeap, uint32_t u32HeapType, void *pvBase, uint32_t offHeapHandle, uintptr_t offDelta, HGSMISIZE cbArea, HGSMIOFFSET offBase) argument
244 HGSMIHeapRestoreMA(HGSMIHEAP *pHeap, void *pvBase, HGSMISIZE cbArea, HGSMIOFFSET offBase, uint32_t cBlocks, HGSMIOFFSET *paDescriptors, HGSMISIZE cbMaxBlock, HGSMIENV *pEnv) argument
273 HGSMIHeapSetup(HGSMIHEAP *pHeap, uint32_t u32HeapType, void *pvBase, HGSMISIZE cbArea, HGSMIOFFSET offBase, const HGSMIENV *pEnv) argument
[all...]
H A DHGSMIMemAlloc.cpp102 HGSMISIZE cbRemaining = pMA->area.cbArea;
173 HGSMISIZE cbRemaining = pMA->area.cbArea;
512 AssertReturn(pArea->cbArea < UINT32_C(0x80000000), VERR_INVALID_PARAMETER);
513 AssertReturn(pArea->cbArea >= HGSMI_MA_BLOCK_SIZE_MIN, VERR_INVALID_PARAMETER);
517 HGSMISIZE cb = (pArea->cbArea / HGSMI_MA_BLOCK_SIZE_MIN) * HGSMI_MA_BLOCK_SIZE_MIN;
/vbox/include/VBox/HGSMI/
H A DHGSMI.h209 HGSMISIZE cbArea,
216 return off >= pArea->offBase && off - pArea->offBase < pArea->cbArea;
221 return (uintptr_t)pv >= (uintptr_t)pArea->pu8Base && (uintptr_t)pv - (uintptr_t)pArea->pu8Base < pArea->cbArea;
233 HGSMISIZE cbArea,
242 HGSMISIZE cbArea,
247 HGSMISIZE cbArea,
303 return pHeap->area.cbArea;
H A DHGSMIDefs.h49 * offBase + cbArea - 1 - (sizeof(header) + sizeof(tail)).
51 HGSMISIZE cbArea; /* Size of the area. */ member in struct:HGSMIAREA
/vbox/src/VBox/Additions/WINNT/Graphics/Video/mp/wddm/
H A DVBoxMPShgsmi.h62 int VBoxSHGSMIInit(PVBOXSHGSMI pHeap, uint32_t u32HeapType, void *pvBase, HGSMISIZE cbArea, HGSMIOFFSET offBase, const HGSMIENV *pEnv);
H A DVBoxMPShgsmi.cpp188 int VBoxSHGSMIInit(PVBOXSHGSMI pHeap, uint32_t u32HeapType, void *pvBase, HGSMISIZE cbArea, HGSMIOFFSET offBase, argument
192 return HGSMIHeapSetup(&pHeap->Heap, u32HeapType, pvBase, cbArea, offBase, pEnv);
/vbox/src/VBox/Devices/Graphics/HGSMI/
H A DHGSMIHost.cpp1466 uintptr_t pEnd = (uintptr_t)pArea->pu8Base + (pArea->cbArea - 1);

Completed in 61 milliseconds