Searched refs:RTHeapSimpleAlloc (Results 1 - 10 of 10) sorted by relevance

/vbox/include/iprt/
H A Dheap.h95 RTDECL(void *) RTHeapSimpleAlloc(RTHEAPSIMPLE Heap, size_t cb, size_t cbAlignment);
114 * @param pv The heap block returned by RTHeapSimple. If NULL it behaves like RTHeapSimpleAlloc().
H A Dmangling.h655 # define RTHeapSimpleAlloc RT_MANGLER(RTHeapSimpleAlloc) macro
/vbox/src/VBox/Runtime/testcase/
H A DtstRTHeapSimple.cpp104 s_aOps[i].pvAlloc = RTHeapSimpleAlloc(Heap, s_aOps[i].cb, s_aOps[i].uAlignment);
105 RTTESTI_CHECK_MSG(s_aOps[i].pvAlloc, ("RTHeapSimpleAlloc(%p, %#x, %#x,) -> NULL i=%d\n", (void *)Heap, s_aOps[i].cb, s_aOps[i].uAlignment, i));
111 ("RTHeapSimpleAlloc(%p, %#x, %#x,) -> %p\n", (void *)Heap, s_aOps[i].cb, s_aOps[i].uAlignment, i));
128 pv = RTHeapSimpleAlloc(Heap, s_aOps[i].cb, s_aOps[i].uAlignment);
129 RTTESTI_CHECK_MSG(pv, ("RTHeapSimpleAlloc(%p, %#x, %#x,) -> NULL i=%d\n", (void *)Heap, s_aOps[i].cb, s_aOps[i].uAlignment, i));
/vbox/src/VBox/HostDrivers/Support/win/
H A DSUPR3HardenedNoCrt-win.cpp160 pv = RTHeapSimpleAlloc(g_aSupR3HardenedEarlyHeaps[iHeap].hHeap, cb, 0);
195 pv = RTHeapSimpleAlloc(hHeap, cb, 0);
197 supR3HardenedFatal("RTHeapSimpleAlloc[Z] failed allocating %#zx bytes on a %#zu heap.\n", cb, cbBlock);
/vbox/src/VBox/VMM/VMMR3/
H A DMMUkHeap.cpp317 pv = RTHeapSimpleAlloc(pSubHeap->hSimple, cb, MMUKHEAP_SIZE_ALIGNMENT);
343 pv = RTHeapSimpleAlloc(pSubHeap->hSimple, cb, MMUKHEAP_SIZE_ALIGNMENT);
/vbox/src/VBox/Additions/common/VBoxGuest/
H A DVBoxGuest-haiku.c203 RTHeapSimpleAlloc,
H A DVBoxGuest-haiku-stubs.c432 void* RTHeapSimpleAlloc(RTHEAPSIMPLE Heap, size_t cb, size_t cbAlignment) function
/vbox/src/VBox/Runtime/r0drv/linux/
H A Dalloc-r0drv-linux.c251 pHdr = (PRTMEMHDR)RTHeapSimpleAlloc(g_HeapExec, cb + sizeof(*pHdr), 0);
/vbox/src/VBox/GuestHost/HGSMI/
H A DHGSMICommon.cpp381 pvBuf = RTHeapSimpleAlloc (pHeap->u.hPtr, cbBuffer, 0);
/vbox/src/VBox/Runtime/common/alloc/
H A Dheapsimple.cpp389 RTDECL(void *) RTHeapSimpleAlloc(RTHEAPSIMPLE hHeap, size_t cb, size_t cbAlignment) function
423 RT_EXPORT_SYMBOL(RTHeapSimpleAlloc); variable

Completed in 659 milliseconds