| 1577 | } |
| 1578 | |
| 1579 | static Y_FORCE_INLINE void* LFAlloc(size_t _nSize) { |
| 1580 | void* res = LFAllocImpl(_nSize); |
| 1581 | #ifdef DBG_FILL_MEMORY |
| 1582 | if (FillMemoryOnAllocation && res && (_nSize <= DBG_FILL_MAX_SIZE)) { |
| 1583 | memset(res, 0xcf, _nSize); |
| 1584 | } |
| 1585 | #endif |
| 1586 | return res; |
| 1587 | } |
| 1588 | |
| 1589 | static Y_FORCE_INLINE void LFFree(void* p) { |
| 1590 | #if defined(LFALLOC_DBG) |
no test coverage detected