| 245 | |
| 246 | |
| 247 | void* SubAllocator::AllocContext() |
| 248 | { |
| 249 | if (HiUnit != LoUnit) |
| 250 | return (HiUnit -= UNIT_SIZE); |
| 251 | if ( FreeList->next ) |
| 252 | return RemoveNode(0); |
| 253 | return AllocUnitsRare(0); |
| 254 | } |
| 255 | |
| 256 | |
| 257 | void* SubAllocator::ExpandUnits(void* OldPtr,int OldNU) |
no outgoing calls
no test coverage detected