- Timestamp:
- Aug 16, 2016 9:59:33 AM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/alloc/heapoffset.cpp
r62564 r63531 336 336 337 337 /** Checked version of RTHEAPOFF_TO_PTR and RTHEAPOFF_TO_PTR_N. */ 338 DECLINLINE(void *)rtHeapOffCheckedOffToPtr(PRTHEAPOFFSETINTERNAL pHeapInt, uint32_t off, bool fNull)338 static void *rtHeapOffCheckedOffToPtr(PRTHEAPOFFSETINTERNAL pHeapInt, uint32_t off, bool fNull) 339 339 { 340 340 Assert(off || fNull); … … 347 347 348 348 /** Checked version of RTHEAPOFF_TO_OFF. */ 349 DECLINLINE(uint32_t)rtHeapOffCheckedPtrToOff(PRTHEAPOFFSETINTERNAL pHeapInt, void *pv)349 static uint32_t rtHeapOffCheckedPtrToOff(PRTHEAPOFFSETINTERNAL pHeapInt, void *pv) 350 350 { 351 351 if (!pv)
Note:
See TracChangeset
for help on using the changeset viewer.