Lines Matching refs:abuf
396 compiler->abuf = (struct sljit_memory_fragment*)SLJIT_MALLOC(ABUF_SIZE, allocator_data); in sljit_create_compiler()
398 if (!compiler->buf || !compiler->abuf) { in sljit_create_compiler()
401 if (compiler->abuf) in sljit_create_compiler()
402 SLJIT_FREE(compiler->abuf, allocator_data); in sljit_create_compiler()
409 compiler->abuf->next = NULL; in sljit_create_compiler()
410 compiler->abuf->used_size = 0; in sljit_create_compiler()
427 SLJIT_FREE(compiler->abuf, allocator_data); in sljit_create_compiler()
467 buf = compiler->abuf; in sljit_free_compiler()
565 …if (compiler->abuf->used_size + size <= (ABUF_SIZE - (sljit_uw)SLJIT_OFFSETOF(struct sljit_memory_… in ensure_abuf()
566 ret = compiler->abuf->memory + compiler->abuf->used_size; in ensure_abuf()
567 compiler->abuf->used_size += size; in ensure_abuf()
572 new_frag->next = compiler->abuf; in ensure_abuf()
573 compiler->abuf = new_frag; in ensure_abuf()