Home
last modified time | relevance | path

Searched refs:KMP_INTERNAL_MALLOC (Results 1 – 9 of 9) sorted by relevance

/freebsd/contrib/llvm-project/openmp/runtime/src/
H A Dkmp_environment.cpp77 void *ptr = KMP_INTERNAL_MALLOC(size); in allocate()
92 result = (char *)KMP_INTERNAL_MALLOC(len); in __kmp_env_get()
114 result = (char *)KMP_INTERNAL_MALLOC(len); in __kmp_env_get()
H A Dkmp_i18n.cpp498 msg = (char *)KMP_INTERNAL_MALLOC(len + 1); in ___catgets()
726 char *buffer = (char *)KMP_INTERNAL_MALLOC(size); in sys_error()
738 buffer = (char *)KMP_INTERNAL_MALLOC(size); in sys_error()
H A Dkmp_str.cpp92 buffer->str = (char *)KMP_INTERNAL_MALLOC(buffer->size); in __kmp_str_buf_reserve()
115 buffer->str = (char *)KMP_INTERNAL_MALLOC(buffer->size); in __kmp_str_buf_detach()
458 buffer = (char *)KMP_INTERNAL_MALLOC(size); in __kmp_str_format()
H A Dkmp_barrier.h46 #define KMP_ALIGNED_ALLOCATE(size, alignment) KMP_INTERNAL_MALLOC(size)
H A Dz_Linux_util.cpp178 buf = (unsigned char *)KMP_INTERNAL_MALLOC(KMP_CPU_SET_SIZE_LIMIT); in __kmp_affinity_determine_capable()
259 buf = (unsigned char *)KMP_INTERNAL_MALLOC(KMP_CPU_SET_SIZE_LIMIT); in __kmp_affinity_determine_capable()
2132 buf = reinterpret_cast<char *>(KMP_INTERNAL_MALLOC(lstsz)); in __kmp_is_address_mapped()
2195 struct kinfo_vmentry *kiv = (struct kinfo_vmentry *)KMP_INTERNAL_MALLOC(size); in __kmp_is_address_mapped()
H A Dkmp_barrier.cpp140 flags[i] = (flags_s *)KMP_INTERNAL_MALLOC(max_threads * sizeof(flags_s)); in resize()
146 go = (go_s *)KMP_INTERNAL_MALLOC(max_threads * sizeof(go_s)); in resize()
151 iter = (iter_s *)KMP_INTERNAL_MALLOC(max_threads * sizeof(iter_s)); in resize()
157 sleep = (sleep_s *)KMP_INTERNAL_MALLOC(max_threads * sizeof(sleep_s)); in resize()
H A Dkmp_settings.cpp396 par_range_to_print = (char *)KMP_INTERNAL_MALLOC(len + 1); in __kmp_stg_parse_par_range()
1170 nth_array->nth = (int *)KMP_INTERNAL_MALLOC(sizeof(int) * total * 2); in __kmp_parse_nested_num_threads()
1251 __kmp_nested_nth.nth = (int *)KMP_INTERNAL_MALLOC(sizeof(int)); in __kmp_stg_parse_num_threads()
6239 (kmp_proc_bind_t *)KMP_INTERNAL_MALLOC(sizeof(kmp_proc_bind_t)); in __kmp_env_initialize()
6261 (char *)KMP_INTERNAL_MALLOC(sizeof(char) * KMP_AFFINITY_FORMAT_SIZE); in __kmp_env_initialize()
H A Dkmp_runtime.cpp3477 kmp_team_list_item_t *item = (kmp_team_list_item_t *)KMP_INTERNAL_MALLOC( in __kmp_print_structure_team_accum()
3512 (kmp_team_list_item_t *)KMP_INTERNAL_MALLOC(sizeof(kmp_team_list_item_t)); in __kmp_print_structure()
9270 __kmp_nesting_nth_level = (int *)KMP_INTERNAL_MALLOC(levels * sizeof(int)); in __kmp_init_nesting_mode()
H A Dkmp.h121 #define KMP_INTERNAL_MALLOC(sz) malloc(sz) macro