Lines Matching defs:self
108 void BrotliInitBlockSplit(BlockSplit* self) {
109 self->num_types = 0;
110 self->num_blocks = 0;
111 self->types = 0;
112 self->lengths = 0;
113 self->types_alloc_size = 0;
114 self->lengths_alloc_size = 0;
117 void BrotliDestroyBlockSplit(MemoryManager* m, BlockSplit* self) {
118 BROTLI_FREE(m, self->types);
119 BROTLI_FREE(m, self->lengths);