Searched refs:iv (Results 1 - 25 of 281) sorted by path

1234567891011>>

/freebsd-11-stable/contrib/bsnmp/lib/
H A Dsnmpcrypto.c177 uint8_t iv[SNMP_PRIV_AES_IV_SIZ]; local
181 err = snmp_pdu_cipher_init(pdu, pdu->scoped_len, &ctype, iv);
187 if (EVP_EncryptInit(&ctx, ctype, pdu->user.priv_key, iv) != 1)
205 uint8_t iv[SNMP_PRIV_AES_IV_SIZ]; local
209 err = snmp_pdu_cipher_init(pdu, pdu->scoped_len, &ctype, iv);
215 if (EVP_DecryptInit(&ctx, ctype, pdu->user.priv_key, iv) != 1 ||
/freebsd-11-stable/contrib/gcc/
H A DMakefile.in1005 dwarf2asm.o dwarf2out.o emit-rtl.o except.o explow.o loop-iv.o \
2466 loop-iv.o : loop-iv.c $(CONFIG_H) $(SYSTEM_H) $(RTL_H) $(BASIC_BLOCK_H) \
H A Dgenattrtab.c2768 struct attr_value_list *iv; local
2782 iv = ivbuf = XNEWVEC (struct attr_value_list, num_insn_ents);
2789 iv->attr = attr;
2790 iv->av = av;
2791 iv->ie = ie;
2792 iv->next = insn_code_values[ie->def->insn_code];
2793 insn_code_values[ie->def->insn_code] = iv;
2794 iv++;
2798 gcc_assert (iv == ivbuf + num_insn_ents);
2805 for (iv
[all...]
H A Dlambda-code.c1133 tree iv, invar; local
1135 for (i = 0; VEC_iterate (tree, outerinductionvars, i, iv); i++)
1136 if (iv != NULL)
1138 if (SSA_NAME_VAR (iv) == SSA_NAME_VAR (expr))
1535 tree iv; local
1551 for (i = 0; VEC_iterate (tree, induction_vars, i, iv); i++)
1561 fold_build2 (MULT_EXPR, type, iv, coeffmult));
1621 tree iv, invar; local
1646 for (i = 0; VEC_iterate (tree, induction_vars, i, iv); i++)
1663 mult = fold_build2 (MULT_EXPR, type, iv, coef
[all...]
H A Dloop-iv.c23 doloop optimization and branch prediction. The iv information is computed
33 iv_analysis_loop_init for it. When you no longer need iv analysis, call
38 iv_analyze (insn, reg, iv): Stores the description of the induction variable
43 iv_analyze_result (insn, def, iv): Stores to IV the description of the iv
45 iv_analyze_expr (insn, rhs, mode, iv): Stores to IV the description of iv
49 by iv analysis. */
92 struct rtx_iv iv; /* Value of the biv. */ member in struct:biv_entry
124 dump_iv_info (FILE *file, struct rtx_iv *iv) argument
208 struct rtx_iv *iv; local
361 iv_constant(struct rtx_iv *iv, rtx cst, enum machine_mode mode) argument
381 iv_subreg(struct rtx_iv *iv, enum machine_mode mode) argument
421 iv_extend(struct rtx_iv *iv, enum rtx_code extend, enum machine_mode mode) argument
453 iv_neg(struct rtx_iv *iv) argument
545 iv_mult(struct rtx_iv *iv, rtx mby) argument
570 iv_shift(struct rtx_iv *iv, rtx mby) argument
784 record_iv(struct df_ref *def, struct rtx_iv *iv) argument
796 analyzed_for_bivness_p(rtx def, struct rtx_iv *iv) argument
808 record_biv(rtx def, struct rtx_iv *iv) argument
823 iv_analyze_biv(rtx def, struct rtx_iv *iv) argument
900 iv_analyze_expr(rtx insn, rtx rhs, enum machine_mode mode, struct rtx_iv *iv) argument
1021 iv_analyze_def(struct df_ref *def, struct rtx_iv *iv) argument
1076 iv_analyze_op(rtx insn, rtx op, struct rtx_iv *iv) argument
1134 iv_analyze(rtx insn, rtx val, struct rtx_iv *iv) argument
1159 iv_analyze_result(rtx insn, rtx def, struct rtx_iv *iv) argument
1177 struct rtx_iv iv; local
1199 get_iv_value(struct rtx_iv *iv, rtx iteration) argument
1815 shorten_into_mode(struct rtx_iv *iv, enum machine_mode mode, enum rtx_code cond, bool signed_p, struct niter_desc *desc) argument
[all...]
H A Dloop-unroll.c1647 struct rtx_iv iv; local
1664 ok = iv_analyze_result (insn, dest, &iv);
1677 if (iv.step == const0_rtx
1678 || iv.mode != iv.extend_mode)
1685 ivts->step = iv.step;
2115 /* Apply splitting iv optimization. */
H A Dloop-unswitch.c176 struct rtx_iv iv; local
208 if (!iv_analyze (at, op[i], &iv))
210 if (iv.step != const0_rtx
211 || iv.first_special)
214 op[i] = get_iv_value (&iv, const0_rtx);
H A Dtree-scalar-evolution.c905 nb_iter computations in loop-iv. This also allows the
2792 /* Checks whether OP behaves as a simple affine iv of LOOP in STMT and returns argument
2795 integer constant. IV->no_overflow is set to true if we are sure the iv cannot
2799 simple_iv (struct loop *loop, tree stmt, tree op, affine_iv *iv,
2806 iv->base = NULL_TREE;
2807 iv->step = NULL_TREE;
2808 iv->no_overflow = false;
2823 iv->base = ev;
2824 iv->no_overflow = true;
2832 iv
[all...]
H A Dtree-ssa-loop-ivopts.c102 struct iv struct
104 tree base; /* Initial value of the iv. */
106 tree step; /* Step of the iv (constant only). */
117 struct iv *iv; /* Induction variable description. */ member in struct:version_info
140 the final value of the iv. For iv elimination,
149 struct iv *iv; /* The induction variable it is based on. */ member in struct:iv_use
152 bitmap related_cands; /* The set of "related" iv candidate
182 struct iv *iv; /* The value of the candidate. NULL for member in struct:iv_cand
367 dump_iv(FILE *file, struct iv *iv) argument
476 struct iv *iv = cand->iv; local
892 struct iv *iv = XCNEW (struct iv); local
911 set_iv(struct ivopts_data *data, tree iv, tree base, tree step) argument
949 affine_iv iv; local
1002 struct iv *iv, *incr_iv; local
1032 find_givs_in_stmt_scev(struct ivopts_data *data, tree stmt, affine_iv *iv) argument
1063 affine_iv iv; local
1137 record_use(struct ivopts_data *data, tree *use_p, struct iv *iv, tree stmt, enum use_type use_type) argument
1193 struct iv *iv; local
1343 struct iv *iv; local
1626 struct iv *iv; local
2145 add_old_iv_candidates(struct ivopts_data *data, struct iv *iv) argument
2177 struct iv *iv; local
2191 add_iv_value_candidates(struct ivopts_data *data, struct iv *iv, struct iv_use *use) argument
4063 iv_value(struct iv *iv, tree niter) argument
4091 iv_period(struct iv *iv) argument
[all...]
H A Dtree-ssa-loop-niter.c130 is IV <> FINAL. TYPE is the type of the iv. The number of
137 number_of_iterations_ne (tree type, affine_iv *iv, tree final, argument
143 niter->control = *iv;
149 if (tree_int_cst_sign_bit (iv->step))
152 fold_build1 (NEGATE_EXPR, type, iv->step));
154 fold_convert (niter_type, iv->base),
159 s = fold_convert (niter_type, iv->step);
162 fold_convert (niter_type, iv->base));
228 /* The final value of the iv is iv1->base + MOD, assuming that this
247 /* The final value of the iv i
[all...]
H A Dtree-ssa-loop-prefetch.c340 affine_iv iv; local
346 if (!simple_iv (ar_data->loop, ar_data->stmt, *index, &iv, false))
348 ibase = iv.base;
349 step = iv.step;
/freebsd-11-stable/contrib/libucl/include/
H A Ducl++.h280 obj->value.iv = value;
284 obj->value.iv = static_cast<int64_t>(value);
H A Ducl.h222 int64_t iv; /**< Int value of an object */ member in union:ucl_object_s::__anon639
358 * @param iv number
361 UCL_EXTERN ucl_object_t* ucl_object_fromint (int64_t iv) UCL_WARN_UNUSED_RESULT;
/freebsd-11-stable/contrib/libucl/src/
H A Ducl_emitter_utils.c455 ucl_utstring_append_int (obj->value.iv, buf);
465 if (obj->value.iv) {
H A Ducl_internal.h378 obj->value.iv = val;
H A Ducl_msgpack.c1439 obj->value.iv = (*pos & 0x7f);
1443 obj->value.iv = - (*pos & 0x1f);
1447 obj->value.iv = (unsigned char)*pos;
1452 obj->value.iv = iv8;
1458 obj->value.iv = iv16;
1464 obj->value.iv = uiv16;
1470 obj->value.iv = iv32;
1476 obj->value.iv = uiv32;
1482 obj->value.iv = iv64;
1488 obj->value.iv
[all...]
H A Ducl_parser.c923 obj->value.iv = is_neg ? (-lv) : lv;
H A Ducl_util.c1575 int64_t iv; local
1692 iv = strtoll (tmp, NULL, 10);
1693 obj = ucl_object_fromint (iv);
2729 ucl_object_fromint (int64_t iv) argument
2736 obj->value.iv = iv;
2764 obj->value.iv = bv;
3011 *target = obj->value.iv; /* Probaly could cause overflow */
3041 *target = obj->value.iv;
3071 *target = (obj->value.iv
[all...]
/freebsd-11-stable/contrib/libucl/tests/
H A Dtest_generate.c304 ref->value.iv = 100500;
/freebsd-11-stable/contrib/mdocml/
H A Ddba_read.c43 int32_t im, ip, iv, npages; local
65 for (iv = 0; iv < dbm_macro_count(im); iv++) {
66 mdata = dbm_macro_get(im, iv);
H A Ddbm.c354 static int32_t im, iv; local
368 iv = -1;
377 if (++iv == nvals[im]) {
381 if (iv)
384 pp = dbm_get(macros[im][iv].pages);
405 dbm_macro_get(int32_t im, int32_t iv) argument
411 assert(iv >= 0);
412 assert(iv < nvals[im]);
413 macro.value = dbm_get(macros[im][iv].value);
414 macro.pp = dbm_get(macros[im][iv]
440 static int32_t im, ip, iv; local
[all...]
H A Droff.c2651 int iv; local
2667 if (roff_evalnum(r, ln, val, NULL, &iv, ROFFNUM_SCALE))
2668 roff_setreg(r, key, iv, sign);
2725 int iv; local
2729 if ( ! roff_evalnum(r, ln, buf->buf, &pos, &iv, 0)) {
2744 roffit_lines = iv;
2745 roffit_macro = mandoc_strdup(iv != 1 ||
/freebsd-11-stable/contrib/netbsd-tests/crypto/opencrypto/
H A Dh_aesctr1.c51 unsigned char iv[8]; member in struct:__anon4679
234 co.iv = __UNCONST(&tests[i].iv);
H A Dh_aesctr2.c42 unsigned char iv[8] = {0}; variable
69 memcpy(ibuf, iv, 8);
H A Dh_camellia.c44 unsigned char iv[16] = {0}; variable
78 co.iv = iv;

Completed in 413 milliseconds

1234567891011>>