Lines Matching refs:arity
3112 int arity = 0; /* Arity of this operator. */ in symbol_relc_make_expr() local
3141 arity = 2; in symbol_relc_make_expr()
3155 arity = 2; \ in symbol_relc_make_expr()
3163 arity = 1; \ in symbol_relc_make_expr()
3172 arity = 3; \ in symbol_relc_make_expr()
3180 arity = 2; \ in symbol_relc_make_expr()
3213 if (arity >= 1 && ((operands[0] == NULL) || (strlen (operands[0]) == 0))) in symbol_relc_make_expr()
3215 if (arity >= 2 && ((operands[1] == NULL) || (strlen (operands[1]) == 0))) in symbol_relc_make_expr()
3217 if (arity >= 3 && ((operands[2] == NULL) || (strlen (operands[2]) == 0))) in symbol_relc_make_expr()
3227 + (arity >= 1 ? (strlen (operands[0]) + 1 ) : 0) in symbol_relc_make_expr()
3228 + (arity >= 2 ? (strlen (operands[1]) + 1 ) : 0) in symbol_relc_make_expr()
3229 + (arity >= 3 ? (strlen (operands[2]) + 0 ) : 0) in symbol_relc_make_expr()
3235 (arity == 0 ? "%s" : in symbol_relc_make_expr()
3236 arity == 1 ? "%s:%s" : in symbol_relc_make_expr()
3237 arity == 2 ? "%s:%s:%s" : in symbol_relc_make_expr()
3243 if (arity >= 1) xfree (operands[0]); in symbol_relc_make_expr()
3244 if (arity >= 2) xfree (operands[1]); in symbol_relc_make_expr()
3245 if (arity >= 3) xfree (operands[2]); in symbol_relc_make_expr()