HomeSort by: relevance | last modified time | path
    Searched defs:allocator_data (Results 1 - 4 of 4) sorted by relevancy

  /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/
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);

Completed in 17 milliseconds