Searched refs:allocator_data (Results 1 – 7 of 7) sorted by relevance
/PHP-8.3/ext/pcre/pcre2lib/sljit/ |
H A D | sljitUtils.c | 180 SLJIT_UNUSED_ARG(allocator_data); in sljit_allocate_stack() 191 SLJIT_FREE(stack, allocator_data); in sljit_allocate_stack() 204 SLJIT_UNUSED_ARG(allocator_data); in sljit_free_stack() 206 SLJIT_FREE(stack, allocator_data); in sljit_free_stack() 223 SLJIT_UNUSED_ARG(allocator_data); in sljit_free_stack() 225 SLJIT_FREE(stack, allocator_data); in sljit_free_stack() 232 SLJIT_UNUSED_ARG(allocator_data); in sljit_free_stack() 234 SLJIT_FREE(stack, allocator_data); in sljit_free_stack() 245 SLJIT_UNUSED_ARG(allocator_data); in sljit_allocate_stack() 261 SLJIT_FREE(stack, allocator_data); in sljit_allocate_stack() [all …]
|
H A D | sljitLir.c | 398 compiler->allocator_data = allocator_data; in sljit_create_compiler() 405 SLJIT_FREE(compiler->buf, allocator_data); in sljit_create_compiler() 408 SLJIT_FREE(compiler, allocator_data); in sljit_create_compiler() 431 SLJIT_FREE(compiler->buf, allocator_data); in sljit_create_compiler() 433 SLJIT_FREE(compiler, allocator_data); in sljit_create_compiler() 465 void *allocator_data = compiler->allocator_data; in sljit_free_compiler() local 466 SLJIT_UNUSED_ARG(allocator_data); in sljit_free_compiler() 472 SLJIT_FREE(curr, allocator_data); in sljit_free_compiler() 479 SLJIT_FREE(curr, allocator_data); in sljit_free_compiler() 485 SLJIT_FREE(compiler, allocator_data); in sljit_free_compiler() [all …]
|
H A D | sljitLir.h | 426 void *allocator_data; member 541 SLJIT_API_FUNC_ATTRIBUTE struct sljit_compiler* sljit_create_compiler(void *allocator_data, void *e… 1770 …ack* SLJIT_FUNC sljit_allocate_stack(sljit_uw start_size, sljit_uw max_size, void *allocator_data); 1771 …I_FUNC_ATTRIBUTE void SLJIT_FUNC sljit_free_stack(struct sljit_stack *stack, void *allocator_data);
|
H A D | sljitConfigInternal.h | 245 #define SLJIT_MALLOC(size, allocator_data) malloc(size) argument 249 #define SLJIT_FREE(ptr, allocator_data) free(ptr) argument
|
H A D | sljitNativeARM_32.c | 367 SLJIT_FREE(curr_patch, compiler->allocator_data); in resolve_const_pool_index() 377 …_patch = (struct future_patch*)SLJIT_MALLOC(sizeof(struct future_patch), compiler->allocator_data); in resolve_const_pool_index() 382 SLJIT_FREE(curr_patch, compiler->allocator_data); in resolve_const_pool_index()
|
/PHP-8.3/ext/pcre/pcre2lib/ |
H A D | pcre2_jit_misc.c | 53 PRIV(jit_free_rodata)(void *current, void *allocator_data) in PRIV() 57 (void)allocator_data; in PRIV() 61 SLJIT_UNUSED_ARG(allocator_data); in PRIV() 66 SLJIT_FREE(current, allocator_data); in PRIV() 86 void *allocator_data = memctl; in PRIV() 93 PRIV(jit_free_rodata)(functions->read_only_data_heads[i], allocator_data); in PRIV() 96 SLJIT_FREE(functions, allocator_data); in PRIV()
|
H A D | pcre2_jit_compile.c | 64 #define SLJIT_MALLOC(size, allocator_data) pcre2_jit_malloc(size, allocator_data) argument 65 #define SLJIT_FREE(ptr, allocator_data) pcre2_jit_free(ptr, allocator_data) argument 69 pcre2_memctl *allocator = ((pcre2_memctl*)allocator_data); in pcre2_jit_malloc() 73 static void pcre2_jit_free(void *ptr, void *allocator_data) in pcre2_jit_free() argument 75 pcre2_memctl *allocator = ((pcre2_memctl*)allocator_data); in pcre2_jit_free() 13699 void *allocator_data = &re->memctl; in jit_compile() local 13903 SLJIT_FREE(common->private_data_ptrs, allocator_data); in jit_compile() 13915 compiler = sljit_create_compiler(allocator_data, NULL); in jit_compile() 14168 SLJIT_FREE(common->recurse_bitset, allocator_data); in jit_compile() 14315 SLJIT_FREE(common->optimized_cbracket, allocator_data); in jit_compile() [all …]
|
Completed in 65 milliseconds