Lines Matching defs:plural

104 const char *__kmp_hw_get_catalog_string(kmp_hw_t type, bool plural) {
107 return ((plural) ? KMP_I18N_STR(Sockets) : KMP_I18N_STR(Socket));
109 return ((plural) ? KMP_I18N_STR(Dice) : KMP_I18N_STR(Die));
111 return ((plural) ? KMP_I18N_STR(Modules) : KMP_I18N_STR(Module));
113 return ((plural) ? KMP_I18N_STR(Tiles) : KMP_I18N_STR(Tile));
115 return ((plural) ? KMP_I18N_STR(NumaDomains) : KMP_I18N_STR(NumaDomain));
117 return ((plural) ? KMP_I18N_STR(L3Caches) : KMP_I18N_STR(L3Cache));
119 return ((plural) ? KMP_I18N_STR(L2Caches) : KMP_I18N_STR(L2Cache));
121 return ((plural) ? KMP_I18N_STR(L1Caches) : KMP_I18N_STR(L1Cache));
123 return ((plural) ? KMP_I18N_STR(LLCaches) : KMP_I18N_STR(LLCache));
125 return ((plural) ? KMP_I18N_STR(Cores) : KMP_I18N_STR(Core));
127 return ((plural) ? KMP_I18N_STR(Threads) : KMP_I18N_STR(Thread));
129 return ((plural) ? KMP_I18N_STR(ProcGroups) : KMP_I18N_STR(ProcGroup));
138 const char *__kmp_hw_get_keyword(kmp_hw_t type, bool plural) {
141 return ((plural) ? "sockets" : "socket");
143 return ((plural) ? "dice" : "die");
145 return ((plural) ? "modules" : "module");
147 return ((plural) ? "tiles" : "tile");
149 return ((plural) ? "numa_domains" : "numa_domain");
151 return ((plural) ? "l3_caches" : "l3_cache");
153 return ((plural) ? "l2_caches" : "l2_cache");
155 return ((plural) ? "l1_caches" : "l1_cache");
157 return ((plural) ? "ll_caches" : "ll_cache");
159 return ((plural) ? "cores" : "core");
161 return ((plural) ? "threads" : "thread");
163 return ((plural) ? "proc_groups" : "proc_group");
166 return ((plural) ? "unknowns" : "unknown");
805 bool plural;
812 plural = (c > 1);
815 __kmp_hw_get_catalog_string(numerator_type, plural));
818 __kmp_hw_get_catalog_string(numerator_type, plural),
886 __kmp_hw_get_catalog_string(KMP_HW_CORE, /*plural=*/true));
897 __kmp_hw_get_catalog_string(KMP_HW_CORE, /*plural=*/true));
1017 bool plural) {
1022 __kmp_hw_get_catalog_string(KMP_HW_CORE, plural));
1025 __kmp_hw_get_catalog_string(KMP_HW_CORE, plural),
1122 bool plural = (num > 1);
1124 __kmp_hw_get_catalog_string(type, plural));
5053 __kmp_hw_get_catalog_string(KMP_HW_CORE, /*plural=*/true))