Lines Matching full: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()
380 char const *expected = __kmp_i18n_default_table.sect[section].str[number]; in __kmp_i18n_do_catopen()
546 if (1 <= number && number <= __kmp_i18n_default_table.sect[section].size) { in __kmp_i18n_catgets()
552 table.sect = (kmp_i18n_section_t *)KMP_INTERNAL_CALLOC( in __kmp_i18n_catgets()
556 if (table.sect[section].size == 0) { in __kmp_i18n_catgets()
557 table.sect[section].str = (const char **)KMP_INTERNAL_CALLOC( in __kmp_i18n_catgets()
558 __kmp_i18n_default_table.sect[section].size + 2, in __kmp_i18n_catgets()
560 table.sect[section].size = in __kmp_i18n_catgets()
561 __kmp_i18n_default_table.sect[section].size; in __kmp_i18n_catgets()
563 if (table.sect[section].str[number] == NULL) { in __kmp_i18n_catgets()
564 table.sect[section].str[number] = ___catgets(id); in __kmp_i18n_catgets()
566 message = table.sect[section].str[number]; in __kmp_i18n_catgets()
571 message = __kmp_i18n_default_table.sect[section].str[number]; in __kmp_i18n_catgets()