| /src/external/gpl3/gcc.old/dist/libgomp/ |
| allocator.c | 213 struct omp_allocator_data *allocator_data; local 232 allocator_data = (struct omp_allocator_data *) allocator; 233 if (new_alignment < allocator_data->alignment) 234 new_alignment = allocator_data->alignment; 238 allocator_data = NULL; 249 if (__builtin_expect (allocator_data 250 && allocator_data->pool_size < ~(uintptr_t) 0, 0)) 253 if (new_size > allocator_data->pool_size) 256 used_pool_size = __atomic_load_n (&allocator_data->used_pool_size, 263 || new_pool_size > allocator_data->pool_size 383 struct omp_allocator_data *allocator_data local 412 struct omp_allocator_data *allocator_data; local 561 struct omp_allocator_data *allocator_data, *free_allocator_data; local [all...] |
| /src/external/gpl3/gcc/dist/libgomp/ |
| allocator.c | 539 struct omp_allocator_data *allocator_data; local 561 allocator_data = (struct omp_allocator_data *) allocator; 562 if (new_alignment < allocator_data->alignment) 563 new_alignment = allocator_data->alignment; 565 memkind = allocator_data->memkind; 570 allocator_data = NULL; 600 if (__builtin_expect (allocator_data 601 && allocator_data->pool_size < ~(uintptr_t) 0, 0)) 604 if (new_size > allocator_data->pool_size) 607 used_pool_size = __atomic_load_n (&allocator_data->used_pool_size 769 struct omp_allocator_data *allocator_data local 843 struct omp_allocator_data *allocator_data; local 1054 struct omp_allocator_data *allocator_data, *free_allocator_data; local [all...] |
| /src/sys/external/bsd/sljit/dist/sljit_src/ |
| sljitConfig.h | 63 #define SLJIT_MALLOC(size, allocator_data) malloc((size), M_TEMP, M_WAITOK) 67 #define SLJIT_FREE(ptr, allocator_data) free((ptr), M_TEMP)
|
| sljitUtils.c | 249 SLJIT_API_FUNC_ATTRIBUTE struct sljit_stack* SLJIT_CALL sljit_allocate_stack(sljit_uw limit, sljit_uw max_limit, void *allocator_data) 257 SLJIT_UNUSED_ARG(allocator_data); 280 stack = (struct sljit_stack*)SLJIT_MALLOC(sizeof(struct sljit_stack), allocator_data); 290 SLJIT_FREE(stack, allocator_data); 297 sljit_free_stack(stack, allocator_data); 303 SLJIT_FREE(stack, allocator_data); 315 SLJIT_FREE(stack, allocator_data); 322 SLJIT_FREE(stack, allocator_data); 335 SLJIT_API_FUNC_ATTRIBUTE void SLJIT_CALL sljit_free_stack(struct sljit_stack *stack, void *allocator_data) 337 SLJIT_UNUSED_ARG(allocator_data); [all...] |
| sljitLir.c | 356 SLJIT_API_FUNC_ATTRIBUTE struct sljit_compiler* sljit_create_compiler(void *allocator_data) 358 struct sljit_compiler *compiler = (struct sljit_compiler*)SLJIT_MALLOC(sizeof(struct sljit_compiler), allocator_data); 382 compiler->allocator_data = allocator_data; 383 compiler->buf = (struct sljit_memory_fragment*)SLJIT_MALLOC(BUF_SIZE, allocator_data); 384 compiler->abuf = (struct sljit_memory_fragment*)SLJIT_MALLOC(ABUF_SIZE, allocator_data); 388 SLJIT_FREE(compiler->buf, allocator_data); 390 SLJIT_FREE(compiler->abuf, allocator_data); 391 SLJIT_FREE(compiler, allocator_data); 412 + CPOOL_SIZE * sizeof(sljit_u8), allocator_data); 445 void *allocator_data = compiler->allocator_data; local [all...] |
| sljitLir.h | 314 void *allocator_data; member in struct:sljit_compiler 417 /* Creates an sljit compiler. The allocator_data is required by some 421 as a dummy value for allocator_data. 424 SLJIT_API_FUNC_ATTRIBUTE struct sljit_compiler* sljit_create_compiler(void *allocator_data); 1273 Note: see sljit_create_compiler for the explanation of allocator_data. */ 1274 SLJIT_API_FUNC_ATTRIBUTE struct sljit_stack* SLJIT_CALL sljit_allocate_stack(sljit_uw limit, sljit_uw max_limit, void *allocator_data); 1275 SLJIT_API_FUNC_ATTRIBUTE void SLJIT_CALL sljit_free_stack(struct sljit_stack *stack, void *allocator_data);
|
| sljitConfigInternal.h | 200 #define SLJIT_MALLOC(size, allocator_data) malloc(size) 204 #define SLJIT_FREE(ptr, allocator_data) free(ptr)
|
| sljitNativeARM_32.c | 343 SLJIT_FREE(curr_patch, compiler->allocator_data); 353 curr_patch = (struct future_patch*)SLJIT_MALLOC(sizeof(struct future_patch), compiler->allocator_data); 358 SLJIT_FREE(curr_patch, compiler->allocator_data);
|