Lines Matching refs:sljit_memory_fragment
394 compiler->buf = (struct sljit_memory_fragment*)SLJIT_MALLOC(BUF_SIZE, allocator_data); in sljit_create_compiler()
395 compiler->abuf = (struct sljit_memory_fragment*)SLJIT_MALLOC(ABUF_SIZE, allocator_data); in sljit_create_compiler()
454 struct sljit_memory_fragment *buf; in sljit_free_compiler()
455 struct sljit_memory_fragment *curr; in sljit_free_compiler()
554 struct sljit_memory_fragment *new_frag; in ensure_buf()
557 …->used_size + size <= (BUF_SIZE - (sljit_uw)SLJIT_OFFSETOF(struct sljit_memory_fragment, memory)))… in ensure_buf()
562 new_frag = (struct sljit_memory_fragment*)SLJIT_MALLOC(BUF_SIZE, compiler->allocator_data); in ensure_buf()
573 struct sljit_memory_fragment *new_frag; in ensure_abuf()
576 …>used_size + size <= (ABUF_SIZE - (sljit_uw)SLJIT_OFFSETOF(struct sljit_memory_fragment, memory)))… in ensure_abuf()
581 new_frag = (struct sljit_memory_fragment*)SLJIT_MALLOC(ABUF_SIZE, compiler->allocator_data); in ensure_abuf()
607 struct sljit_memory_fragment *buf = compiler->buf; in reverse_buf()
608 struct sljit_memory_fragment *prev = NULL; in reverse_buf()
609 struct sljit_memory_fragment *tmp; in reverse_buf()