| 109 | }; |
| 110 | |
| 111 | inline ByteStreamOutArray::ByteStreamOutArray(I64 alloc) |
| 112 | { |
| 113 | this->data = (U8*)malloc_las((size_t)alloc); |
| 114 | this->alloc = alloc; |
| 115 | this->size = 0; |
| 116 | this->curr = 0; |
| 117 | } |
| 118 | |
| 119 | inline BOOL ByteStreamOutArray::putByte(U8 byte) |
| 120 | { |
nothing calls this directly
no test coverage detected