Searched refs:exec_allocator_data (Results 1 – 11 of 11) sorted by relevance
/external/pcre/dist2/src/sljit/ |
D | sljitConfigInternal.h | 618 #define SLJIT_BUILTIN_MALLOC_EXEC(size, exec_allocator_data) sljit_malloc_exec(size) argument 619 #define SLJIT_BUILTIN_FREE_EXEC(ptr, exec_allocator_data) sljit_free_exec(ptr) argument 622 #define SLJIT_MALLOC_EXEC(size, exec_allocator_data) SLJIT_BUILTIN_MALLOC_EXEC((size), (exec_alloca… argument 626 #define SLJIT_FREE_EXEC(ptr, exec_allocator_data) SLJIT_BUILTIN_FREE_EXEC((ptr), (exec_allocator_da… argument
|
D | sljitLir.c | 366 …IBUTE struct sljit_compiler* sljit_create_compiler(void *allocator_data, void *exec_allocator_data) in sljit_create_compiler() argument 393 compiler->exec_allocator_data = exec_allocator_data; in sljit_create_compiler() 486 SLJIT_API_FUNC_ATTRIBUTE void sljit_free_code(void* code, void *exec_allocator_data) in sljit_free_code() argument 488 SLJIT_UNUSED_ARG(exec_allocator_data); in sljit_free_code() 491 SLJIT_FREE_EXEC((void*)((sljit_uw)code & ~0x1), exec_allocator_data); in sljit_free_code() 494 SLJIT_API_FUNC_ATTRIBUTE void sljit_free_code(void* code, void *exec_allocator_data) in sljit_free_code() argument 496 SLJIT_UNUSED_ARG(exec_allocator_data); in sljit_free_code() 500 SLJIT_FREE_EXEC(code, 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() [all …]
|
D | sljitLir.h | 394 void *exec_allocator_data; member 500 …BUTE struct sljit_compiler* sljit_create_compiler(void *allocator_data, void *exec_allocator_data); 547 SLJIT_API_FUNC_ATTRIBUTE void sljit_free_code(void* code, void *exec_allocator_data);
|
D | sljitNativeARM_32.c | 688 code = (sljit_uw*)SLJIT_MALLOC_EXEC(size * sizeof(sljit_uw), compiler->exec_allocator_data); in sljit_generate_code() 729 SLJIT_FREE_EXEC(code, compiler->exec_allocator_data); in sljit_generate_code() 832 SLJIT_FREE_EXEC(code, compiler->exec_allocator_data); in sljit_generate_code()
|
D | sljitNativeSPARC_common.c | 314 …= (sljit_ins*)SLJIT_MALLOC_EXEC(compiler->size * sizeof(sljit_ins), compiler->exec_allocator_data); in sljit_generate_code()
|
D | sljitNativeARM_64.c | 246 …= (sljit_ins*)SLJIT_MALLOC_EXEC(compiler->size * sizeof(sljit_ins), compiler->exec_allocator_data); in sljit_generate_code()
|
D | sljitNativeS390X.c | 1224 compiler->exec_allocator_data); in sljit_generate_code()
|
D | sljitNativePPC_common.c | 407 …= (sljit_ins*)SLJIT_MALLOC_EXEC(compiler->size * sizeof(sljit_ins), compiler->exec_allocator_data); in sljit_generate_code()
|
D | sljitNativeARM_T2_32.c | 380 …= (sljit_u16*)SLJIT_MALLOC_EXEC(compiler->size * sizeof(sljit_u16), compiler->exec_allocator_data); in sljit_generate_code()
|
D | sljitNativeMIPS_common.c | 523 …= (sljit_ins*)SLJIT_MALLOC_EXEC(compiler->size * sizeof(sljit_ins), compiler->exec_allocator_data); in sljit_generate_code()
|
D | sljitNativeX86_common.c | 509 code = (sljit_u8*)SLJIT_MALLOC_EXEC(compiler->size, compiler->exec_allocator_data); in sljit_generate_code()
|