Lines Matching refs:sljit_memory_fragment
353 compiler->buf = (struct sljit_memory_fragment*)SLJIT_MALLOC(BUF_SIZE, allocator_data); in sljit_create_compiler()
354 compiler->abuf = (struct sljit_memory_fragment*)SLJIT_MALLOC(ABUF_SIZE, allocator_data); in sljit_create_compiler()
413 struct sljit_memory_fragment *buf; in sljit_free_compiler()
414 struct sljit_memory_fragment *curr; in sljit_free_compiler()
489 struct sljit_memory_fragment *new_frag; in ensure_buf()
492 …->used_size + size <= (BUF_SIZE - (sljit_uw)SLJIT_OFFSETOF(struct sljit_memory_fragment, memory)))… in ensure_buf()
497 new_frag = (struct sljit_memory_fragment*)SLJIT_MALLOC(BUF_SIZE, compiler->allocator_data); in ensure_buf()
508 struct sljit_memory_fragment *new_frag; in ensure_abuf()
511 …>used_size + size <= (ABUF_SIZE - (sljit_uw)SLJIT_OFFSETOF(struct sljit_memory_fragment, memory)))… in ensure_abuf()
516 new_frag = (struct sljit_memory_fragment*)SLJIT_MALLOC(ABUF_SIZE, compiler->allocator_data); in ensure_abuf()
542 struct sljit_memory_fragment *buf = compiler->buf; in reverse_buf()
543 struct sljit_memory_fragment *prev = NULL; in reverse_buf()
544 struct sljit_memory_fragment *tmp; in reverse_buf()