Lines Matching defs:max_ec
1445 const sym_t *max_ec = ec;
1448 if (ec->u.s_enum_constant > max_ec->u.s_enum_constant)
1449 max_ec = ec;
1451 int64_t max_enum_value = max_ec->u.s_enum_constant;
1464 (strstr(max_ec->s_name, "MAX") != NULL ||
1465 strstr(max_ec->s_name, "max") != NULL ||
1466 strstr(max_ec->s_name, "NUM") != NULL ||
1467 strstr(max_ec->s_name, "num") != NULL ||
1468 strncmp(max_ec->s_name, "N_", 2) == 0))
1472 warning(348, (int)max_enum_value, max_ec->s_name, type_name(rtp),
1474 print_previous_declaration(max_ec);