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()
562 struct sljit_memory_fragment *new_frag; in ensure_buf()
565 …->used_size + size <= (BUF_SIZE - (sljit_uw)SLJIT_OFFSETOF(struct sljit_memory_fragment, memory)))… in ensure_buf()
570 new_frag = (struct sljit_memory_fragment*)SLJIT_MALLOC(BUF_SIZE, compiler->allocator_data); in ensure_buf()
581 struct sljit_memory_fragment *new_frag; in ensure_abuf()
584 …>used_size + size <= (ABUF_SIZE - (sljit_uw)SLJIT_OFFSETOF(struct sljit_memory_fragment, memory)))… in ensure_abuf()
589 new_frag = (struct sljit_memory_fragment*)SLJIT_MALLOC(ABUF_SIZE, compiler->allocator_data); in ensure_abuf()
615 struct sljit_memory_fragment *buf = compiler->buf; in reverse_buf()
616 struct sljit_memory_fragment *prev = NULL; in reverse_buf()
617 struct sljit_memory_fragment *tmp; in reverse_buf()