Home
last modified time | relevance | path

Searched defs:allocator_data (Results 1 – 5 of 5) sorted by relevance

/external/pcre/dist2/src/sljit/
DsljitUtils.c206 …it_stack* SLJIT_CALL sljit_allocate_stack(sljit_uw limit, sljit_uw max_limit, void *allocator_data) in sljit_allocate_stack()
282 …PI_FUNC_ATTRIBUTE void SLJIT_CALL sljit_free_stack(struct sljit_stack* stack, void *allocator_data) in sljit_free_stack()
DsljitConfigInternal.h206 #define SLJIT_MALLOC(size, allocator_data) malloc(size) argument
210 #define SLJIT_FREE(ptr, allocator_data) free(ptr) argument
DsljitLir.c328 SLJIT_API_FUNC_ATTRIBUTE struct sljit_compiler* sljit_create_compiler(void *allocator_data) in sljit_create_compiler()
415 void *allocator_data = compiler->allocator_data; in sljit_free_compiler() local
DsljitLir.h310 void *allocator_data; member
/external/pcre/dist2/src/
Dpcre2_jit_compile.c63 #define SLJIT_MALLOC(size, allocator_data) pcre2_jit_malloc(size, allocator_data) argument
64 #define SLJIT_FREE(ptr, allocator_data) pcre2_jit_free(ptr, allocator_data) argument
66 static void * pcre2_jit_malloc(size_t size, void *allocator_data) in pcre2_jit_malloc()
72 static void pcre2_jit_free(void *ptr, void *allocator_data) in pcre2_jit_free()
10839 void *allocator_data = &re->memctl; in jit_compile() local