| 155 | } |
| 156 | |
| 157 | void* WelsMallocz (const uint32_t kuiSize, const char* kpTag) { |
| 158 | void* pPointer = WelsMalloc (kuiSize, kpTag, 16); |
| 159 | if (NULL == pPointer) { |
| 160 | return NULL; |
| 161 | } |
| 162 | memset (pPointer, 0, kuiSize); |
| 163 | return pPointer; |
| 164 | } |
| 165 | |
| 166 | const uint32_t CMemoryAlign::WelsGetCacheLineSize() const { |
| 167 | return m_nCacheLineSize; |
no test coverage detected