reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
2997 if (!realloc || argc > team->t.t_max_argc) { 3003 if (realloc && team->t.t_argv != &team->t.t_inline_argv[0]) 3003 if (realloc && team->t.t_argv != &team->t.t_inline_argv[0]) 3004 __kmp_free((void *)team->t.t_argv); 3008 team->t.t_max_argc = KMP_INLINE_ARGV_ENTRIES; 3012 team->t.t_argv = &team->t.t_inline_argv[0]; 3012 team->t.t_argv = &team->t.t_inline_argv[0]; 3015 -1, &team->t.t_inline_argv[0], 3016 &team->t.t_inline_argv[KMP_INLINE_ARGV_ENTRIES], 3018 team->t.t_id); 3022 team->t.t_max_argc = (argc <= (KMP_MIN_MALLOC_ARGV_ENTRIES >> 1)) 3028 team->t.t_argv = 3029 (void **)__kmp_page_allocate(sizeof(void *) * team->t.t_max_argc); 3031 __kmp_print_storage_map_gtid(-1, &team->t.t_argv[0], 3032 &team->t.t_argv[team->t.t_max_argc], 3032 &team->t.t_argv[team->t.t_max_argc], 3033 sizeof(void *) * team->t.t_max_argc, 3034 "team_%d.t_argv", team->t.t_id);