Searched refs:const_val (Results 1 - 6 of 6) sorted by relevance

/freebsd-12-stable/contrib/gcc/
H A Dipa-cp.c464 tree const_val = NULL; local
467 const_val = fold_convert (tree_type, cvalue->value);
468 return const_val;
478 tree const_val; local
485 const_val = build_const_val (cvalue, type, TREE_TYPE (parm_tree));
486 constant_val_insert (fndecl, parm_tree, const_val);
854 tree const_val; local
860 const_val =
863 replace_map->new_tree = const_val;
869 const_val
[all...]
H A Dtree-ssa-ccp.c231 static prop_value_t *const_val; variable
402 prop_value_t *val = &const_val[SSA_NAME_VERSION (var)];
540 const_val = XNEWVEC (prop_value_t, num_ssa_names);
541 memset (const_val, 0, num_ssa_names * sizeof (*const_val));
612 substitute_and_fold (const_val, false);
614 free (const_val);
858 prop_value_t *val = get_value_loaded_by (stmt, const_val);
950 replace_uses_in (stmt, NULL, const_val);
1201 prop_value_t *nval = get_value_loaded_by (stmt, const_val);
[all...]
H A Dloop-iv.c1538 HOST_WIDE_INT const_val = INTVAL (op1); local
1539 unsigned HOST_WIDE_INT uconst_val = const_val;
1546 if ((unsigned HOST_WIDE_INT) const_val != max_val >> 1)
1547 code = LT, op1 = gen_int_mode (const_val + 1, GET_MODE (op0));
1550 /* When cross-compiling, const_val might be sign-extended from
1553 if ((HOST_WIDE_INT) (const_val & max_val)
1556 code = GT, op1 = gen_int_mode (const_val - 1, mode);
H A Drtlanal.c4563 HOST_WIDE_INT const_val = INTVAL (op1);
4564 unsigned HOST_WIDE_INT uconst_val = const_val;
4571 if ((unsigned HOST_WIDE_INT) const_val != max_val >> 1)
4572 code = LT, op1 = gen_int_mode (const_val + 1, GET_MODE (op0));
4575 /* When cross-compiling, const_val might be sign-extended from
4578 if ((HOST_WIDE_INT) (const_val & max_val)
4581 code = GT, op1 = gen_int_mode (const_val - 1, GET_MODE (op0));
4537 HOST_WIDE_INT const_val = INTVAL (op1); local
/freebsd-12-stable/contrib/libpcap/
H A Doptimize.c226 bpf_int32 const_val; member in struct:vmapinfo
697 opt_state->vmap[val].const_val = v0;
729 a = opt_state->vmap[v0].const_val;
730 b = opt_state->vmap[v1].const_val;
984 b->s.k += opt_state->vmap[val].const_val;
1046 bpf_int32 v = opt_state->vmap[val].const_val;
1056 bpf_int32 v = opt_state->vmap[val].const_val;
1114 s->k += opt_state->vmap[v].const_val;
1162 s->k = 0U - (bpf_u_int32)(opt_state->vmap[val[A_ATOM]].const_val);
1238 s->k = opt_state->vmap[val[X_ATOM]].const_val;
[all...]
/freebsd-12-stable/sys/dev/qat/
H A Dqatreg.h795 #define INSERT_IMMED_GPRA_CONST(inst, const_val) \
797 ((((const_val) << 12) & 0x0FF00000ull) | \
798 (((const_val) << 10) & 0x0003FC00ull))
799 #define INSERT_IMMED_GPRB_CONST(inst, const_val) \
801 ((((const_val) << 12) & 0x0FF00000ull) | \
802 (((const_val) << 0) & 0x000000FFull))

Completed in 196 milliseconds