Lines Matching defs:DEFINED
167 #define DEFINED(L) (-1 != L->size || -1 != L->assoc || -1 != L->line_size)
169 // Count how many were defined on the command line.
171 (DEFINED(clo_I1c) &&
172 DEFINED(clo_D1c) &&
173 DEFINED(clo_LLc));
182 check_cache_or_override ("I1", I1c, DEFINED(clo_I1c));
183 check_cache_or_override ("D1", D1c, DEFINED(clo_D1c));
184 check_cache_or_override ("LL", LLc, DEFINED(clo_LLc));
186 // Then replace with any defined on the command line. (Already checked in
188 if (DEFINED(clo_I1c)) { *I1c = *clo_I1c; }
189 if (DEFINED(clo_D1c)) { *D1c = *clo_D1c; }
190 if (DEFINED(clo_LLc)) { *LLc = *clo_LLc; }
198 #undef DEFINED