HomeSort by: relevance | last modified time | path
    Searched refs:nit (Results 1 - 23 of 23) sorted by relevancy

  /src/usr.sbin/bootp/bootptest/
getether.c 87 int nit;
92 nit = open("/dev/nit", 0);
93 if (nit < 0) {
94 report(LOG_ERR, "getether: open /dev/nit: %s",
99 if (ioctl(nit, NIOCBIND, &ifrnit) < 0) {
100 report(LOG_ERR, "getether: NIOCBIND on nit");
103 if (ioctl(nit, SIOCGIFADDR, &ifrnit) < 0) {
104 report(LOG_ERR, "getether: SIOCGIFADDR on nit");
110 close(nit);
86 int nit; local
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/
cfgloop.cc 145 gcov_type nit = expected_loop_iterations_unbounded (loop, &read_profile_p);
148 (uint64_t) nit);
1956 widest_int nit;
1959 if (!get_estimated_loop_iterations (loop, &nit))
1962 if (!wi::fits_shwi_p (nit))
1964 hwi_nit = nit.to_shwi ();
1976 HOST_WIDE_INT nit = get_max_loop_iterations_int (loop);
1979 if (nit == -1)
1982 snit = (HOST_WIDE_INT) ((unsigned HOST_WIDE_INT) nit + 1);
1995 HOST_WIDE_INT nit = get_likely_max_loop_iterations_int (loop)
144 gcov_type nit = expected_loop_iterations_unbounded (loop, &read_profile_p); local
1955 widest_int nit; local
1975 HOST_WIDE_INT nit = get_max_loop_iterations_int (loop); local
1994 HOST_WIDE_INT nit = get_likely_max_loop_iterations_int (loop); local
2051 widest_int nit; local
2085 widest_int nit; local
    [all...]
tree-ssa-loop-niter.cc 2925 widest_int nit; local
2938 || max_loop_iterations (loop, &nit))
4380 gcov_type nit = expected_loop_iterations_unbounded (loop); local
4381 bound = gcov_type_to_wide_int (nit);
4447 /* Sets NIT to the estimated number of executions of the latch of the
4448 LOOP. If CONSERVATIVE is true, we must be sure that NIT is at least as
4453 estimated_loop_iterations (class loop *loop, widest_int *nit)
4460 return (get_estimated_loop_iterations (loop, nit));
4470 widest_int nit; local
4473 if (!estimated_loop_iterations (loop, &nit))
4506 widest_int nit; local
4541 widest_int nit; local
4561 HOST_WIDE_INT nit = estimated_loop_iterations_int (loop); local
    [all...]
tree-ssa-loop-manip.cc 1594 (with base 0 and step 1), whose final value is compared with *NIT. When the
1595 IV type precision has to be larger than *NIT type precision, *NIT is
1597 loop, and *NIT is updated to the new definition. When BUMP_IN_LATCH is true,
1603 canonicalize_loop_ivs (class loop *loop, tree *nit, bool bump_in_latch)
1605 unsigned precision = TYPE_PRECISION (TREE_TYPE (*nit));
1644 || TYPE_UNSIGNED (TREE_TYPE (*nit)) != unsigned_p)
1646 *nit = fold_convert (type, *nit);
1647 *nit = force_gimple_operand (*nit, &stmts, true, NULL_TREE)
    [all...]
cfgloop.h 915 extern bool get_estimated_loop_iterations (class loop *loop, widest_int *nit);
916 extern bool get_max_loop_iterations (const class loop *loop, widest_int *nit);
917 extern bool get_likely_max_loop_iterations (class loop *loop, widest_int *nit);
tree-parloops.cc 2498 without duplication of the loop body. NIT is the number of iterations of the
2505 tree nit)
2531 tree nit_type = TREE_TYPE (nit);
2533 /* Figure out whether nit + 1 overflows. */
2534 if (TREE_CODE (nit) == INTEGER_CST)
2536 if (!tree_int_cst_equal (nit, TYPE_MAX_VALUE (nit_type)))
2539 nit, build_one_cst (nit_type));
2553 gcc_assert (TREE_CODE (nit) == SSA_NAME);
2555 /* Variable nit is the loop bound as returned by canonicalize_loop_ivs, for an
2561 if (iv_1 < nit)
2975 tree many_iterations_cond, type, nit; local
    [all...]
graphite-sese-to-poly.cc 804 widest_int nit; local
805 if (!max_stmt_executions (loop, &nit))
812 /* NIT is an upper bound to NB_ITERS: "NIT >= NB_ITERS", although we
814 --nit;
816 isl_pw_aff *approx = extract_affine_wi (nit, isl_space_copy (space));
825 isl_val *v = isl_val_int_from_wi (scop->isl_context, nit);
tree-scalar-evolution.cc 3038 widest_int nit;
3062 if (!get_max_loop_iterations (loop, &nit))
3075 nit = wi::add (nit, 1, SIGNED, &overflow);
3079 /* NIT is typeless and can exceed the precision of the type. In this case
3081 if (wi::min_precision (nit, UNSIGNED) > TYPE_PRECISION (type))
3083 wide_int nit2 = wide_int::from (nit, TYPE_PRECISION (type), UNSIGNED);
3085 /* If step can be positive, check that nit*step <= type_max-base.
3097 /* If step can be negative, check that nit*(-step) <= base_min-type_min. */
3031 widest_int nit; local
predict.cc 1998 widest_int nit; local
2043 && estimated_stmt_executions (loop, &nit))
2045 if (wi::gtu_p (nit, max))
2048 nitercst = nit.to_shwi ();
2055 && likely_max_stmt_executions (loop, &nit)
2056 && wi::ltu_p (nit,
2064 nitercst = nit.to_shwi ();
profile.cc 1553 gcov_type nit = expected_loop_iterations_unbounded (loop);
1554 widest_int bound = gcov_type_to_wide_int (nit);
1552 gcov_type nit = expected_loop_iterations_unbounded (loop); local
tree-ssa-loop-ivopts.cc 5080 aff_tree step, delta, nit; local
5120 tree_to_aff_combination (niter, TREE_TYPE (niter), &nit);
5121 aff_combination_convert (&nit, steptype);
5122 aff_combination_mult (&nit, &step, &delta);
5292 class aff_tree nit, tmpa, tmpb; local
5349 tree_to_aff_combination (niter->niter, nit_type, &nit);
5352 aff_combination_scale (&nit, -1);
5355 aff_combination_add (&tmpb, &nit);
tree-data-ref.cc 3701 widest_int nit;
3703 if (!max_stmt_executions (loop, &nit))
3706 if (!wi::fits_to_tree_p (nit, unsigned_type_node))
3709 return wide_int_to_tree (unsigned_type_node, nit);
vr-values.cc 1704 widest_int nit; local
1708 if (max_loop_iterations (loop, &nit))
1713 widest_int wtmp = wi::mul (wi::to_widest (step), nit, sgn,
1749 /* Check if init + nit * step overflows. Though we checked
tree-vect-loop.cc 1529 widest_int nit; local
1530 if (estimated_stmt_executions (loop->inner, &nit))
1532 = wi::smin (nit, param_vect_inner_loop_cost_factor).to_uhwi ();
  /src/usr.sbin/iopctl/
iopctl.c 426 int hc, lc, i, nit; local
438 nit = (le16toh(status.orgid) != I2O_ORG_DPT);
441 if (nit && *src == '\0')
  /src/external/bsd/mdocml/dist/
mdoc_validate.c 1712 struct roff_node *nbl, *nit, *nch; local
1718 nit = mdoc->last;
1719 if (nit->type != ROFFT_BLOCK)
1722 nbl = nit->parent->parent;
1731 if (nit->head->child == NULL)
1733 nit->line, nit->pos, "Bl -%s It",
1740 if (nit->body == NULL || nit->body->child == NULL)
1742 nit->line, nit->pos, "Bl -%s It"
    [all...]
  /src/external/bsd/ipf/dist/ipsend/
snit.c 21 #include <net/nit.h>
69 if ((fd = open("/dev/nit", O_RDWR)) < 0)
71 perror("/dev/nit");
76 * arrange to get messages from the NIT STREAM and use NIT_BUF option
93 perror("ioctl: NIT timeout");
115 * output an IP packet onto a fd opened for /dev/nit
138 * construct NIT STREAMS messages, first control then data.
  /src/external/bsd/ipf/dist/ipsd/
snit.c 21 #include <net/nit.h>
101 * get past NIT buffer
128 if ((fd = open("/dev/nit", O_RDWR)) < 0)
130 perror("/dev/nit");
167 * arrange to get messages from the NIT STREAM and use NIT_BUF option
183 perror("ioctl: NIT timeout");
193 perror("ioctl: NIT chunksize");
196 perror("ioctl: NIT chunksize");
199 printf("NIT buffer size: %d\n", chunksize);
223 perror("ioctl: NIT snaplen")
    [all...]
  /src/external/bsd/libpcap/dist/
pcap-nit.c 1 /* $NetBSD: pcap-nit.c,v 1.7 2024/09/02 15:33:37 christos Exp $ */
25 __RCSID("$NetBSD: pcap-nit.c,v 1.7 2024/09/02 15:33:37 christos Exp $");
37 #include <net/nit.h>
59 * The chunk size for NIT. This is the amount of buffering
65 * The total buffer space used by NIT.
73 * Private data for capturing on NIT devices.
177 "bad nit state %d", nh->nh_state);
292 * NIT requires a snapshot length of at least 96.
310 * error that means "that device doesn't support NIT";
312 * meaning "NIT doesn't know about that device"
    [all...]
pcap-snit.c 23 * Modifications made to accommodate the new SunOS4.0 NIT facility by
25 * This module now handles the STREAMS based NIT.
44 #include <net/nit.h>
71 * The chunk size for NIT. This is the amount of buffering
77 * The total buffer space used by NIT.
85 * Private data for capturing on STREAMS NIT devices.
102 * "ps_drop" counts packets dropped inside the "/dev/nit"
175 /* get past NIT buffer */
179 /* get past NIT timer */
294 static const char dev[] = "/dev/nit";
    [all...]
configure 6854 ac_fn_c_check_header_compile "$LINENO" "net/nit.h" "ac_cv_header_net_nit_h" "$ac_includes_default"
6860 ac_fn_c_check_header_compile "$LINENO" "sys/net/nit.h" "ac_cv_header_sys_net_nit_h" "$ac_includes_default"
6931 # SunOS 4.x STREAMS NIT.
6936 # Pre-SunOS 4.x non-STREAMS NIT.
6938 V_PCAP=nit
  /src/sys/dev/i2o/
iop.c 2308 int hc, lc, i, nit; local
2320 nit = (le16toh(sc->sc_status.orgid) != I2O_ORG_DPT);
2323 if (nit && *src == '\0')
  /src/external/gpl3/gcc.old/dist/libphobos/src/std/
typecons.d 7407 NewIntType nit = 0;
7408 nit++;
7409 assert(nit == 1);

Completed in 151 milliseconds