Lines Matching refs:abuf
395 compiler->abuf = (struct sljit_memory_fragment*)SLJIT_MALLOC(ABUF_SIZE, allocator_data); in sljit_create_compiler()
397 if (!compiler->buf || !compiler->abuf) { in sljit_create_compiler()
400 if (compiler->abuf) in sljit_create_compiler()
401 SLJIT_FREE(compiler->abuf, allocator_data); in sljit_create_compiler()
408 compiler->abuf->next = NULL; in sljit_create_compiler()
409 compiler->abuf->used_size = 0; in sljit_create_compiler()
426 SLJIT_FREE(compiler->abuf, allocator_data); in sljit_create_compiler()
466 buf = compiler->abuf; in sljit_free_compiler()
564 …if (compiler->abuf->used_size + size <= (ABUF_SIZE - (sljit_uw)SLJIT_OFFSETOF(struct sljit_memory_… in ensure_abuf()
565 ret = compiler->abuf->memory + compiler->abuf->used_size; in ensure_abuf()
566 compiler->abuf->used_size += size; in ensure_abuf()
571 new_frag->next = compiler->abuf; in ensure_abuf()
572 compiler->abuf = new_frag; in ensure_abuf()