Searched refs:exec_allocator_data (Results 1 – 11 of 11) sorted by relevance
/third_party/pcre2/pcre2/src/sljit/ |
D | sljitConfigInternal.h | 620 #define SLJIT_BUILTIN_MALLOC_EXEC(size, exec_allocator_data) sljit_malloc_exec(size) argument 621 #define SLJIT_BUILTIN_FREE_EXEC(ptr, exec_allocator_data) sljit_free_exec(ptr) argument 624 #define SLJIT_MALLOC_EXEC(size, exec_allocator_data) SLJIT_BUILTIN_MALLOC_EXEC((size), (exec_alloca… argument 628 #define SLJIT_FREE_EXEC(ptr, exec_allocator_data) SLJIT_BUILTIN_FREE_EXEC((ptr), (exec_allocator_da… argument
|
D | sljitLir.c | 374 …IBUTE struct sljit_compiler* sljit_create_compiler(void *allocator_data, void *exec_allocator_data) in sljit_create_compiler() argument 399 compiler->exec_allocator_data = exec_allocator_data; in sljit_create_compiler() 495 SLJIT_API_FUNC_ATTRIBUTE void sljit_free_code(void* code, void *exec_allocator_data) in sljit_free_code() argument 497 SLJIT_UNUSED_ARG(exec_allocator_data); in sljit_free_code() 500 SLJIT_FREE_EXEC((void*)((sljit_uw)code & ~(sljit_uw)0x1), exec_allocator_data); in sljit_free_code() 503 SLJIT_API_FUNC_ATTRIBUTE void sljit_free_code(void* code, void *exec_allocator_data) in sljit_free_code() argument 505 SLJIT_UNUSED_ARG(exec_allocator_data); in sljit_free_code() 509 SLJIT_FREE_EXEC(code, exec_allocator_data); in sljit_free_code() 512 SLJIT_API_FUNC_ATTRIBUTE void sljit_free_code(void* code, void *exec_allocator_data) in sljit_free_code() argument 514 SLJIT_UNUSED_ARG(exec_allocator_data); in sljit_free_code() [all …]
|
D | sljitLir.h | 427 void *exec_allocator_data; member 541 …BUTE struct sljit_compiler* sljit_create_compiler(void *allocator_data, void *exec_allocator_data); 588 SLJIT_API_FUNC_ATTRIBUTE void sljit_free_code(void* code, void *exec_allocator_data);
|
D | sljitNativeARM_32.c | 703 code = (sljit_uw*)SLJIT_MALLOC_EXEC(size * sizeof(sljit_uw), compiler->exec_allocator_data); in sljit_generate_code() 744 SLJIT_FREE_EXEC(code, compiler->exec_allocator_data); in sljit_generate_code() 847 SLJIT_FREE_EXEC(code, compiler->exec_allocator_data); in sljit_generate_code()
|
D | sljitNativeARM_64.c | 253 …= (sljit_ins*)SLJIT_MALLOC_EXEC(compiler->size * sizeof(sljit_ins), compiler->exec_allocator_data); in sljit_generate_code()
|
D | sljitNativeX86_common.c | 604 code = (sljit_u8*)SLJIT_MALLOC_EXEC(compiler->size, compiler->exec_allocator_data); in sljit_generate_code()
|
D | sljitNativePPC_common.c | 432 …= (sljit_ins*)SLJIT_MALLOC_EXEC(compiler->size * sizeof(sljit_ins), compiler->exec_allocator_data); in sljit_generate_code()
|
D | sljitNativeRISCV_common.c | 394 …= (sljit_ins*)SLJIT_MALLOC_EXEC(compiler->size * sizeof(sljit_ins), compiler->exec_allocator_data); in sljit_generate_code()
|
D | sljitNativeARM_T2_32.c | 395 …= (sljit_u16*)SLJIT_MALLOC_EXEC(compiler->size * sizeof(sljit_u16), compiler->exec_allocator_data); in sljit_generate_code()
|
D | sljitNativeS390X.c | 1511 compiler->exec_allocator_data); in sljit_generate_code()
|
D | sljitNativeMIPS_common.c | 591 …= (sljit_ins*)SLJIT_MALLOC_EXEC(compiler->size * sizeof(sljit_ins), compiler->exec_allocator_data); in sljit_generate_code()
|