Default Allocation/Deallocation Function ***/
| 112 | |
| 113 | /*** Default Allocation/Deallocation Function ***/ |
| 114 | static void* ILAPIENTRY DefaultAllocFunc(const ILsizei Size) |
| 115 | { |
| 116 | #ifdef VECTORMEM |
| 117 | return (void*)vec_malloc(Size); |
| 118 | #else |
| 119 | return malloc(Size); |
| 120 | #endif //VECTORMEM |
| 121 | } |
| 122 | |
| 123 | static void ILAPIENTRY DefaultFreeFunc(const void * CONST_RESTRICT ptr) |
| 124 | { |
nothing calls this directly
no test coverage detected