| 19 | namespace IDSTDecoder { |
| 20 | |
| 21 | static inline void *MNNMemoryAllocAlignZeroAlign(size_t size) { |
| 22 | return MNNMemoryCallocAlign(size, MNN_MEMORY_ALIGN_DEFAULT); |
| 23 | } |
| 24 | |
| 25 | static int ReadBlobDim(BaseLoader* myfile, unsigned int* shape, int shapeBufCnt, bool useInt32) { |
| 26 | uint8_t uSize = 0; |
no test coverage detected