Searched refs:cond (Results 1 – 6 of 6) sorted by relevance
21 %type cond { int }36 exprline(A) ::= expr(B) cond(C) expr(D). { in exprline()115 cond(A) ::= EQ. { A = SSI_COND_EQ; } in cond() function116 cond(A) ::= NE. { A = SSI_COND_NE; } in cond() function117 cond(A) ::= LE. { A = SSI_COND_LE; } in cond() function118 cond(A) ::= GE. { A = SSI_COND_GE; } in cond() function119 cond(A) ::= LT. { A = SSI_COND_LT; } in cond() function120 cond(A) ::= GT. { A = SSI_COND_GT; } in cond() function
296 switch(dc->cond) { in config_check_cond_nocache()337 if ((dc->cond == CONFIG_COND_EQ || in config_check_cond_nocache()338 dc->cond == CONFIG_COND_NE) && in config_check_cond_nocache()381 return (dc->cond == CONFIG_COND_EQ) ? COND_RESULT_TRUE : COND_RESULT_FALSE; in config_check_cond_nocache()383 return (dc->cond == CONFIG_COND_EQ) ? COND_RESULT_FALSE : COND_RESULT_TRUE; in config_check_cond_nocache()470 switch(dc->cond) { in config_check_cond_nocache()474 return (dc->cond == CONFIG_COND_EQ) ? COND_RESULT_TRUE : COND_RESULT_FALSE; in config_check_cond_nocache()476 return (dc->cond == CONFIG_COND_EQ) ? COND_RESULT_FALSE : COND_RESULT_TRUE; in config_check_cond_nocache()495 return (dc->cond == CONFIG_COND_MATCH) ? COND_RESULT_TRUE : COND_RESULT_FALSE; in config_check_cond_nocache()498 return (dc->cond == CONFIG_COND_MATCH) ? COND_RESULT_FALSE : COND_RESULT_TRUE; in config_check_cond_nocache()
133 %type cond {config_cond_t }380 context ::= DOLLAR SRVVARNAME(B) LBRACKET stringop(C) RBRACKET cond(E) expression(D). { in SRVVARNAME()450 dc->cond = E; in SRVVARNAME()478 dc->cond = CONFIG_COND_UNSET; in SRVVARNAME()529 cond(A) ::= EQ. { in cond() function532 cond(A) ::= MATCH. { in cond() function535 cond(A) ::= NE. { in cond() function538 cond(A) ::= NOMATCH. { in cond() function
117 config_cond_t cond; member
1236 dc->cond = yymsp[-1].minor.yy27; in yy_reduce()1264 dc->cond = CONFIG_COND_UNSET; in yy_reduce()
959 if (dc->cond != CONFIG_COND_EQ) continue;