Lines Matching refs:allocator_data

221 …tack* SLJIT_FUNC sljit_allocate_stack(sljit_uw start_size, sljit_uw max_size, void *allocator_data)  in sljit_allocate_stack()  argument
226 SLJIT_UNUSED_ARG(allocator_data); in sljit_allocate_stack()
231 stack = (struct sljit_stack*)SLJIT_MALLOC(sizeof(struct sljit_stack), allocator_data); in sljit_allocate_stack()
235 ptr = SLJIT_MALLOC(max_size, allocator_data); in sljit_allocate_stack()
237 SLJIT_FREE(stack, allocator_data); in sljit_allocate_stack()
248 …PI_FUNC_ATTRIBUTE void SLJIT_FUNC sljit_free_stack(struct sljit_stack *stack, void *allocator_data) in sljit_free_stack() argument
250 SLJIT_UNUSED_ARG(allocator_data); in sljit_free_stack()
251 SLJIT_FREE((void*)stack->min_start, allocator_data); in sljit_free_stack()
252 SLJIT_FREE(stack, allocator_data); in sljit_free_stack()
277 …PI_FUNC_ATTRIBUTE void SLJIT_FUNC sljit_free_stack(struct sljit_stack *stack, void *allocator_data) in sljit_free_stack() argument
279 SLJIT_UNUSED_ARG(allocator_data); in sljit_free_stack()
281 SLJIT_FREE(stack, allocator_data); in sljit_free_stack()
298 …PI_FUNC_ATTRIBUTE void SLJIT_FUNC sljit_free_stack(struct sljit_stack *stack, void *allocator_data) in sljit_free_stack() argument
300 SLJIT_UNUSED_ARG(allocator_data); in sljit_free_stack()
302 SLJIT_FREE(stack, allocator_data); in sljit_free_stack()
307 …tack* SLJIT_FUNC sljit_allocate_stack(sljit_uw start_size, sljit_uw max_size, void *allocator_data) in sljit_allocate_stack() argument
313 SLJIT_UNUSED_ARG(allocator_data); in sljit_allocate_stack()
318 stack = (struct sljit_stack*)SLJIT_MALLOC(sizeof(struct sljit_stack), allocator_data); in sljit_allocate_stack()
329 SLJIT_FREE(stack, allocator_data); in sljit_allocate_stack()
338 sljit_free_stack(stack, allocator_data); in sljit_allocate_stack()
347 SLJIT_FREE(stack, allocator_data); in sljit_allocate_stack()
354 SLJIT_FREE(stack, allocator_data); in sljit_allocate_stack()