Home | History | Annotate | Download | only in sljit

Lines Matching refs:sljit_memory_fragment

357 	compiler->buf = (struct sljit_memory_fragment*)SLJIT_MALLOC(BUF_SIZE);
358 compiler->abuf = (struct sljit_memory_fragment*)SLJIT_MALLOC(ABUF_SIZE);
415 struct sljit_memory_fragment *buf;
416 struct sljit_memory_fragment *curr;
483 struct sljit_memory_fragment *new_frag;
486 if (compiler->buf->used_size + size <= (BUF_SIZE - (sljit_uw)SLJIT_OFFSETOF(struct sljit_memory_fragment, memory))) {
491 new_frag = (struct sljit_memory_fragment*)SLJIT_MALLOC(BUF_SIZE);
502 struct sljit_memory_fragment *new_frag;
505 if (compiler->abuf->used_size + size <= (ABUF_SIZE - (sljit_uw)SLJIT_OFFSETOF(struct sljit_memory_fragment, memory))) {
510 new_frag = (struct sljit_memory_fragment*)SLJIT_MALLOC(ABUF_SIZE);
536 struct sljit_memory_fragment *buf = compiler->buf;
537 struct sljit_memory_fragment *prev = NULL;
538 struct sljit_memory_fragment *tmp;