Lines Matching refs:plural
104 const char *__kmp_hw_get_catalog_string(kmp_hw_t type, bool plural) { in __kmp_hw_get_catalog_string() argument
107 return ((plural) ? KMP_I18N_STR(Sockets) : KMP_I18N_STR(Socket)); in __kmp_hw_get_catalog_string()
109 return ((plural) ? KMP_I18N_STR(Dice) : KMP_I18N_STR(Die)); in __kmp_hw_get_catalog_string()
111 return ((plural) ? KMP_I18N_STR(Modules) : KMP_I18N_STR(Module)); in __kmp_hw_get_catalog_string()
113 return ((plural) ? KMP_I18N_STR(Tiles) : KMP_I18N_STR(Tile)); in __kmp_hw_get_catalog_string()
115 return ((plural) ? KMP_I18N_STR(NumaDomains) : KMP_I18N_STR(NumaDomain)); in __kmp_hw_get_catalog_string()
117 return ((plural) ? KMP_I18N_STR(L3Caches) : KMP_I18N_STR(L3Cache)); in __kmp_hw_get_catalog_string()
119 return ((plural) ? KMP_I18N_STR(L2Caches) : KMP_I18N_STR(L2Cache)); in __kmp_hw_get_catalog_string()
121 return ((plural) ? KMP_I18N_STR(L1Caches) : KMP_I18N_STR(L1Cache)); in __kmp_hw_get_catalog_string()
123 return ((plural) ? KMP_I18N_STR(LLCaches) : KMP_I18N_STR(LLCache)); in __kmp_hw_get_catalog_string()
125 return ((plural) ? KMP_I18N_STR(Cores) : KMP_I18N_STR(Core)); in __kmp_hw_get_catalog_string()
127 return ((plural) ? KMP_I18N_STR(Threads) : KMP_I18N_STR(Thread)); in __kmp_hw_get_catalog_string()
129 return ((plural) ? KMP_I18N_STR(ProcGroups) : KMP_I18N_STR(ProcGroup)); in __kmp_hw_get_catalog_string()
138 const char *__kmp_hw_get_keyword(kmp_hw_t type, bool plural) { in __kmp_hw_get_keyword() argument
141 return ((plural) ? "sockets" : "socket"); in __kmp_hw_get_keyword()
143 return ((plural) ? "dice" : "die"); in __kmp_hw_get_keyword()
145 return ((plural) ? "modules" : "module"); in __kmp_hw_get_keyword()
147 return ((plural) ? "tiles" : "tile"); in __kmp_hw_get_keyword()
149 return ((plural) ? "numa_domains" : "numa_domain"); in __kmp_hw_get_keyword()
151 return ((plural) ? "l3_caches" : "l3_cache"); in __kmp_hw_get_keyword()
153 return ((plural) ? "l2_caches" : "l2_cache"); in __kmp_hw_get_keyword()
155 return ((plural) ? "l1_caches" : "l1_cache"); in __kmp_hw_get_keyword()
157 return ((plural) ? "ll_caches" : "ll_cache"); in __kmp_hw_get_keyword()
159 return ((plural) ? "cores" : "core"); in __kmp_hw_get_keyword()
161 return ((plural) ? "threads" : "thread"); in __kmp_hw_get_keyword()
163 return ((plural) ? "proc_groups" : "proc_group"); in __kmp_hw_get_keyword()
166 return ((plural) ? "unknowns" : "unknown"); in __kmp_hw_get_keyword()
783 bool plural; in print() local
790 plural = (c > 1); in print()
793 __kmp_hw_get_catalog_string(numerator_type, plural)); in print()
796 __kmp_hw_get_catalog_string(numerator_type, plural), in print()
993 bool plural) { in __kmp_hw_get_catalog_core_string() argument
998 __kmp_hw_get_catalog_string(KMP_HW_CORE, plural)); in __kmp_hw_get_catalog_core_string()
1001 __kmp_hw_get_catalog_string(KMP_HW_CORE, plural), in __kmp_hw_get_catalog_core_string()
1098 bool plural = (num > 1); in filter_hw_subset() local
1100 __kmp_hw_get_catalog_string(type, plural)); in filter_hw_subset()