Searched refs:allocator_data (Results 1 – 6 of 6) sorted by relevance
/PHP-5.4/ext/pcre/pcrelib/sljit/ |
H A D | sljitUtils.c | 203 …it_stack* SLJIT_CALL sljit_allocate_stack(sljit_uw limit, sljit_uw max_limit, void *allocator_data) in sljit_allocate_stack() argument 214 SLJIT_UNUSED_ARG(allocator_data); in sljit_allocate_stack() 236 stack = (struct sljit_stack*)SLJIT_MALLOC(sizeof(struct sljit_stack), allocator_data); in sljit_allocate_stack() 243 SLJIT_FREE(stack, allocator_data); in sljit_allocate_stack() 250 sljit_free_stack(stack, allocator_data); in sljit_allocate_stack() 259 SLJIT_FREE(stack, allocator_data); in sljit_allocate_stack() 266 SLJIT_FREE(stack, allocator_data); in sljit_allocate_stack() 279 …PI_FUNC_ATTRIBUTE void SLJIT_CALL sljit_free_stack(struct sljit_stack* stack, void *allocator_data) in sljit_free_stack() argument 281 SLJIT_UNUSED_ARG(allocator_data); in sljit_free_stack() 287 SLJIT_FREE(stack, allocator_data); in sljit_free_stack()
|
H A D | sljitLir.c | 352 compiler->allocator_data = allocator_data; in sljit_create_compiler() 358 SLJIT_FREE(compiler->buf, allocator_data); in sljit_create_compiler() 361 SLJIT_FREE(compiler, allocator_data); in sljit_create_compiler() 384 SLJIT_FREE(compiler->buf, allocator_data); in sljit_create_compiler() 385 SLJIT_FREE(compiler->abuf, allocator_data); in sljit_create_compiler() 386 SLJIT_FREE(compiler, allocator_data); in sljit_create_compiler() 415 void *allocator_data = compiler->allocator_data; in sljit_free_compiler() local 416 SLJIT_UNUSED_ARG(allocator_data); in sljit_free_compiler() 422 SLJIT_FREE(curr, allocator_data); in sljit_free_compiler() 429 SLJIT_FREE(curr, allocator_data); in sljit_free_compiler() [all …]
|
H A D | sljitLir.h | 310 void *allocator_data; member 420 SLJIT_API_FUNC_ATTRIBUTE struct sljit_compiler* sljit_create_compiler(void *allocator_data); 1161 …t_stack* SLJIT_CALL sljit_allocate_stack(sljit_uw limit, sljit_uw max_limit, void *allocator_data); 1162 …I_FUNC_ATTRIBUTE void SLJIT_CALL sljit_free_stack(struct sljit_stack *stack, void *allocator_data);
|
H A D | sljitConfigInternal.h | 206 #define SLJIT_MALLOC(size, allocator_data) malloc(size) argument 210 #define SLJIT_FREE(ptr, allocator_data) free(ptr) argument
|
H A D | sljitNativeARM_32.c | 342 SLJIT_FREE(curr_patch, compiler->allocator_data); in resolve_const_pool_index() 352 …_patch = (struct future_patch*)SLJIT_MALLOC(sizeof(struct future_patch), compiler->allocator_data); in resolve_const_pool_index() 357 SLJIT_FREE(curr_patch, compiler->allocator_data); in resolve_const_pool_index()
|
/PHP-5.4/ext/pcre/pcrelib/ |
H A D | pcre_jit_compile.c | 55 #define SLJIT_MALLOC(size, allocator_data) (PUBL(malloc))(size) argument 56 #define SLJIT_FREE(ptr, allocator_data) (PUBL(free))(ptr) argument 2130 static void free_read_only_data(void *current, void *allocator_data) in free_read_only_data() argument 2134 SLJIT_UNUSED_ARG(allocator_data); in free_read_only_data() 2139 SLJIT_FREE(current, allocator_data); in free_read_only_data() 9958 SLJIT_FREE(common->private_data_ptrs, compiler->allocator_data); in PRIV() 9974 SLJIT_FREE(common->private_data_ptrs, compiler->allocator_data); in PRIV() 10065 SLJIT_FREE(common->private_data_ptrs, compiler->allocator_data); in PRIV() 10296 SLJIT_FREE(common->optimized_cbracket, compiler->allocator_data); in PRIV() 10297 SLJIT_FREE(common->private_data_ptrs, compiler->allocator_data); in PRIV() [all …]
|
Completed in 52 milliseconds