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