BufferGetAndValidate */
| 12256 | |
| 12257 | /* BufferGetAndValidate */ |
| 12258 | static CYTHON_INLINE void __Pyx_SafeReleaseBuffer(Py_buffer* info) { |
| 12259 | if (unlikely(info->buf == NULL)) return; |
| 12260 | if (info->suboffsets == __Pyx_minusones) info->suboffsets = NULL; |
| 12261 | __Pyx_ReleaseBuffer(info); |
| 12262 | } |
| 12263 | static void __Pyx_ZeroBuffer(Py_buffer* buf) { |
| 12264 | buf->buf = NULL; |
| 12265 | buf->obj = NULL; |
no test coverage detected