Home | History | Annotate | Download | only in sljit

Lines Matching refs:new_frag

489 	struct sljit_memory_fragment *new_frag;
497 new_frag = (struct sljit_memory_fragment*)SLJIT_MALLOC(BUF_SIZE, compiler->allocator_data);
498 PTR_FAIL_IF_NULL(new_frag);
499 new_frag->next = compiler->buf;
500 compiler->buf = new_frag;
501 new_frag->used_size = size;
502 return new_frag->memory;
508 struct sljit_memory_fragment *new_frag;
516 new_frag = (struct sljit_memory_fragment*)SLJIT_MALLOC(ABUF_SIZE, compiler->allocator_data);
517 PTR_FAIL_IF_NULL(new_frag);
518 new_frag->next = compiler->abuf;
519 compiler->abuf = new_frag;
520 new_frag->used_size = size;
521 return new_frag->memory;