Home
last modified time | relevance | path

Searched refs:new_expr (Results 1 – 9 of 9) sorted by relevance

/external/libcups/tools/
Dippfind.c175 static ippfind_expr_t *new_expr(ippfind_op_t op, int invert,
321 if ((temp = new_expr(IPPFIND_OP_DOMAIN_REGEX, invert, NULL, argv[i], in main()
335 if ((temp = new_expr(IPPFIND_OP_EXEC, invert, NULL, NULL, in main()
356 if ((temp = new_expr(IPPFIND_OP_FALSE, invert, NULL, NULL, in main()
375 if ((temp = new_expr(IPPFIND_OP_HOST_REGEX, invert, NULL, argv[i], in main()
381 if ((temp = new_expr(IPPFIND_OP_LIST, invert, NULL, NULL, in main()
389 if ((temp = new_expr(IPPFIND_OP_IS_LOCAL, invert, NULL, NULL, in main()
402 if ((temp = new_expr(IPPFIND_OP_NAME_LITERAL, invert, argv[i], NULL, NULL)) == NULL) in main()
416 if ((temp = new_expr(IPPFIND_OP_NAME_REGEX, invert, NULL, argv[i], in main()
458 if ((temp = new_expr(IPPFIND_OP_OR, 0, NULL, NULL, in main()
[all …]
/external/rust/android-crates-io/crates/googletest_macro/src/
Dverify_pred.rs53 let new_expr = match expr { in accumulate_parts() localVariable
100 #new_expr, in accumulate_parts()
103 new_expr in accumulate_parts()
/external/selinux/libsepol/src/
Dconditional.c272 cond_expr_t *cur, *head, *tail, *new_expr; in cond_copy_expr() local
276 new_expr = (cond_expr_t *) malloc(sizeof(cond_expr_t)); in cond_copy_expr()
277 if (!new_expr) in cond_copy_expr()
279 memset(new_expr, 0, sizeof(cond_expr_t)); in cond_copy_expr()
281 new_expr->expr_type = cur->expr_type; in cond_copy_expr()
282 new_expr->boolean = cur->boolean; in cond_copy_expr()
285 head = new_expr; in cond_copy_expr()
287 tail->next = new_expr; in cond_copy_expr()
288 tail = new_expr; in cond_copy_expr()
Dexpand.c320 constraint_expr_t *new_expr = NULL; in constraint_node_clone() local
332 if ((new_expr = calloc(1, sizeof(*new_expr))) == NULL) { in constraint_node_clone()
335 if (constraint_expr_init(new_expr) == -1) { in constraint_node_clone()
338 new_expr->expr_type = expr->expr_type; in constraint_node_clone()
339 new_expr->attr = expr->attr; in constraint_node_clone()
340 new_expr->op = expr->op; in constraint_node_clone()
341 if (new_expr->expr_type == CEXPR_NAMES) { in constraint_node_clone()
342 if (new_expr->attr & CEXPR_TYPE) { in constraint_node_clone()
349 &new_expr->type_names->types, in constraint_node_clone()
360 &new_expr-> in constraint_node_clone()
[all …]
/external/pytorch/torch/_inductor/
Dindex_propagation.py280 new_expr = getattr(SymPyOps, name)(*new_args, **new_kwargs)
281 is_valid_expr = new_expr is not NotImplemented and (
284 new_expr.is_constant()
285 or new_expr.expr.is_integer
289 return IndexPropVar.new_symbolic(new_expr)
/external/mesa3d/src/compiler/nir/
Dnir_opt_intrinsics.c365 nir_def *new_expr = nir_load_helper_invocation(b, 1); in opt_intrinsics_intrin() local
368 new_expr = nir_inot(b, new_expr); in opt_intrinsics_intrin()
370 nir_def_replace(&alu->def, new_expr); in opt_intrinsics_intrin()
/external/pytorch/torchgen/api/
Dautograd.py437 new_expr = ref_input.expr.replace(ref_input_jit_name, mapped_expr)
439 cast(str, ref_input.nctype.name), new_expr
530 new_expr = foreach_arg.name + suffix
531 modified_formula = modified_formula.replace(curr_expr, new_expr)
/external/pytorch/torch/fx/experimental/
Dsymbolic_shapes.py2079 new_expr = c["eq"].subs({symbol: new_root_expr}) # dy=(3*_dx+1)+1
2080 c["eq"] = new_expr
4534 new_expr = expr.xreplace(new_shape_env)
4543 new_expr = canonicalize_bool_expr(safe_expand(new_expr))
4544 if new_expr.is_number:
4545 return new_expr
4562 out = bound_sympy(new_expr, new_range_env)
4566 return new_expr if unbacked_only else None
4617 new_expr = expr.xreplace(div_replacements)
4618 new_expr = safe_expand(new_expr)
[all …]
/external/pytorch/torch/csrc/jit/tensorexpr/
Dloopnest.cpp1186 IfThenElseReplacer(IfThenElsePtr to_replace, ExprPtr new_expr) in IfThenElseReplacer() argument
1187 : to_replace_(std::move(to_replace)), new_expr_(std::move(new_expr)) {} in IfThenElseReplacer()