Lines Matching refs:abuf
354 compiler->abuf = (struct sljit_memory_fragment*)SLJIT_MALLOC(ABUF_SIZE, allocator_data); in sljit_create_compiler()
356 if (!compiler->buf || !compiler->abuf) { in sljit_create_compiler()
359 if (compiler->abuf) in sljit_create_compiler()
360 SLJIT_FREE(compiler->abuf, allocator_data); in sljit_create_compiler()
367 compiler->abuf->next = NULL; in sljit_create_compiler()
368 compiler->abuf->used_size = 0; in sljit_create_compiler()
385 SLJIT_FREE(compiler->abuf, allocator_data); in sljit_create_compiler()
425 buf = compiler->abuf; in sljit_free_compiler()
511 …if (compiler->abuf->used_size + size <= (ABUF_SIZE - (sljit_uw)SLJIT_OFFSETOF(struct sljit_memory_… in ensure_abuf()
512 ret = compiler->abuf->memory + compiler->abuf->used_size; in ensure_abuf()
513 compiler->abuf->used_size += size; in ensure_abuf()
518 new_frag->next = compiler->abuf; in ensure_abuf()
519 compiler->abuf = new_frag; in ensure_abuf()