Lines Matching refs:sect

152     char const *expected = __kmp_i18n_default_table.sect[section].str[number];  in __kmp_i18n_do_catopen()
194 if (1 <= number && number <= __kmp_i18n_default_table.sect[section].size) { in __kmp_i18n_catgets()
200 __kmp_i18n_default_table.sect[section].str[number]); in __kmp_i18n_catgets()
203 message = __kmp_i18n_default_table.sect[section].str[number]; in __kmp_i18n_catgets()
266 for (m = 0; m < table->sect[s].size; ++m) { in kmp_i18n_table_free()
268 KMP_INTERNAL_FREE((void *)table->sect[s].str[m]); in kmp_i18n_table_free()
269 table->sect[s].str[m] = NULL; in kmp_i18n_table_free()
271 table->sect[s].size = 0; in kmp_i18n_table_free()
273 KMP_INTERNAL_FREE((void *)table->sect[s].str); in kmp_i18n_table_free()
274 table->sect[s].str = NULL; in kmp_i18n_table_free()
277 KMP_INTERNAL_FREE((void *)table->sect); in kmp_i18n_table_free()
278 table->sect = NULL; in kmp_i18n_table_free()
381 char const *expected = __kmp_i18n_default_table.sect[section].str[number]; in __kmp_i18n_do_catopen()
547 if (1 <= number && number <= __kmp_i18n_default_table.sect[section].size) { in __kmp_i18n_catgets()
553 table.sect = (kmp_i18n_section_t *)KMP_INTERNAL_CALLOC( in __kmp_i18n_catgets()
557 if (table.sect[section].size == 0) { in __kmp_i18n_catgets()
558 table.sect[section].str = (const char **)KMP_INTERNAL_CALLOC( in __kmp_i18n_catgets()
559 __kmp_i18n_default_table.sect[section].size + 2, in __kmp_i18n_catgets()
561 table.sect[section].size = in __kmp_i18n_catgets()
562 __kmp_i18n_default_table.sect[section].size; in __kmp_i18n_catgets()
564 if (table.sect[section].str[number] == NULL) { in __kmp_i18n_catgets()
565 table.sect[section].str[number] = ___catgets(id); in __kmp_i18n_catgets()
567 message = table.sect[section].str[number]; in __kmp_i18n_catgets()
572 message = __kmp_i18n_default_table.sect[section].str[number]; in __kmp_i18n_catgets()