Home | History | Annotate | Download | only in sljit_src

Lines Matching refs:abuf

384 	compiler->abuf = (struct sljit_memory_fragment*)SLJIT_MALLOC(ABUF_SIZE, allocator_data);
386 if (!compiler->buf || !compiler->abuf) {
389 if (compiler->abuf)
390 SLJIT_FREE(compiler->abuf, allocator_data);
397 compiler->abuf->next = NULL;
398 compiler->abuf->used_size = 0;
415 SLJIT_FREE(compiler->abuf, allocator_data);
455 buf = compiler->abuf;
553 if (compiler->abuf->used_size + size <= (ABUF_SIZE - (sljit_uw)SLJIT_OFFSETOF(struct sljit_memory_fragment, memory))) {
554 ret = compiler->abuf->memory + compiler->abuf->used_size;
555 compiler->abuf->used_size += size;
560 new_frag->next = compiler->abuf;
561 compiler->abuf = new_frag;