• Home
  • Raw
  • Download

Lines Matching refs:new_val

1121 	char *new_val = NULL;  in cond_expr_to_cil()  local
1140 new_val = malloc(len); in cond_expr_to_cil()
1141 if (new_val == NULL) { in cond_expr_to_cil()
1146 rlen = snprintf(new_val, len, "(%s)", val1); in cond_expr_to_cil()
1195 new_val = malloc(len); in cond_expr_to_cil()
1196 if (new_val == NULL) { in cond_expr_to_cil()
1205 rlen = snprintf(new_val, len, fmt_str, op, val1, val2); in cond_expr_to_cil()
1218 rc = stack_push(stack, new_val); in cond_expr_to_cil()
1223 new_val = NULL; in cond_expr_to_cil()
1246 free(new_val); in cond_expr_to_cil()
1625 char *new_val = NULL; in constraint_expr_to_string() local
1682 new_val = malloc(len); in constraint_expr_to_string()
1683 if (new_val == NULL) { in constraint_expr_to_string()
1688 rlen = snprintf(new_val, len, "(%s %s %s)", op, attr1, attr2); in constraint_expr_to_string()
1719 new_val = malloc(len); in constraint_expr_to_string()
1720 if (new_val == NULL) { in constraint_expr_to_string()
1725 rlen = snprintf(new_val, len, "(%s %s %s)", op, attr1, names); in constraint_expr_to_string()
1777 new_val = malloc(len); in constraint_expr_to_string()
1778 if (new_val == NULL) { in constraint_expr_to_string()
1787 rlen = snprintf(new_val, len, fmt_str, op, val1, val2); in constraint_expr_to_string()
1800 rc = stack_push(stack, new_val); in constraint_expr_to_string()
1806 new_val = NULL; in constraint_expr_to_string()
1809 new_val = stack_pop(stack); in constraint_expr_to_string()
1810 if (new_val == NULL || stack_peek(stack) != NULL) { in constraint_expr_to_string()
1816 *expr_string = new_val; in constraint_expr_to_string()
1817 new_val = NULL; in constraint_expr_to_string()
1824 free(new_val); in constraint_expr_to_string()