Home
last modified time | relevance | path

Searched refs:ulp (Results 1 – 25 of 27) sorted by relevance

12

/trueos/sys/netpfil/ipfw/
HDip_fw2.c965 void *ulp = NULL; /* upper layer protocol pointer. */ in ipfw_chk() local
1021 while (ulp == NULL && offset == 0) { in ipfw_chk()
1024 PULLUP_TO(hlen, ulp, struct icmp6_hdr); in ipfw_chk()
1025 icmp6_type = ICMP6(ulp)->icmp6_type; in ipfw_chk()
1029 PULLUP_TO(hlen, ulp, struct tcphdr); in ipfw_chk()
1030 dst_port = TCP(ulp)->th_dport; in ipfw_chk()
1031 src_port = TCP(ulp)->th_sport; in ipfw_chk()
1033 args->f_id._flags = TCP(ulp)->th_flags; in ipfw_chk()
1037 PULLUP_TO(hlen, ulp, struct sctphdr); in ipfw_chk()
1038 src_port = SCTP(ulp)->src_port; in ipfw_chk()
[all …]
/trueos/sys/ofed/drivers/infiniband/
HDMakefile11 obj-$(CONFIG_INFINIBAND_IPOIB) += ulp/ipoib/
12 obj-$(CONFIG_INFINIBAND_SRP) += ulp/srp/
13 obj-$(CONFIG_INFINIBAND_SRPT) += ulp/srpt/
14 obj-$(CONFIG_INFINIBAND_ISER) += ulp/iser/
15 obj-$(CONFIG_INFINIBAND_SDP) += ulp/sdp/
16 obj-$(CONFIG_INFINIBAND_QLGC_VNIC) += ulp/qlgc_vnic/
HDKconfig52 source "drivers/infiniband/ulp/ipoib/Kconfig"
54 source "drivers/infiniband/ulp/srp/Kconfig"
56 source "drivers/infiniband/ulp/srpt/Kconfig"
58 source "drivers/infiniband/ulp/iser/Kconfig"
60 source "drivers/infiniband/ulp/sdp/Kconfig"
62 source "drivers/infiniband/ulp/qlgc_vnic/Kconfig"
/trueos/sys/net/
HDflowtable.c300 void *ulp; in flowtable_lookup_ipv6() local
319 ulp = NULL; in flowtable_lookup_ipv6()
320 while (ulp == NULL) { in flowtable_lookup_ipv6()
328 ulp = ip6; in flowtable_lookup_ipv6()
331 PULLUP_TO(hlen, ulp, struct tcphdr); in flowtable_lookup_ipv6()
332 dport = TCP(ulp)->th_dport; in flowtable_lookup_ipv6()
333 sport = TCP(ulp)->th_sport; in flowtable_lookup_ipv6()
334 if (TCP(ulp)->th_flags & (TH_RST|TH_FIN)) in flowtable_lookup_ipv6()
338 PULLUP_TO(hlen, ulp, struct sctphdr); in flowtable_lookup_ipv6()
339 dport = SCTP(ulp)->src_port; in flowtable_lookup_ipv6()
[all …]
/trueos/lib/libipsec/
HDpfkey_dump.c509 str_prefport(family, pref, port, ulp) in str_prefport() argument
510 u_int family, pref, port, ulp; in str_prefport()
533 if (ulp == IPPROTO_ICMPV6)
548 str_upperspec(ulp, p1, p2) in str_upperspec() argument
549 u_int ulp, p1, p2; in str_upperspec()
551 if (ulp == IPSEC_ULPROTO_ANY)
553 else if (ulp == IPPROTO_ICMPV6) {
560 switch (ulp) {
565 ent = getprotobynumber(ulp);
569 printf("%u", ulp);
/trueos/contrib/gdtoa/
HDstrtod.c75 rv = ulp(x);
706 dval(&rv) += adj*ulp(&rv);
712 dval(&rv) += adj.d*ulp(&rv);
735 dval(&adj) *= ulp(&rv);
745 dval(&adj) *= ulp(&rv);
871 dval(&rv) += ulp(&rv);
878 dval(&rv) -= ulp(&rv);
937 dval(&adj) = dval(&aadj1) * ulp(&rv);
961 dval(&adj) = dval(&aadj1) * ulp(&rv);
968 dval(&adj) = dval(&aadj1) * ulp(&rv);
[all …]
HDstrtodI.c44 u = ulp(d);
106 dval(&u[1]) += ulp(&u[1]);
115 dval(&u[1]) = dval(&u[0]) + ulp(&u[0]);
HDmakefile55 strtorx.c strtorxL.c sum.c ulp.c
76 sum.c ulp.c
HDulp.c35 ulp in ulp() function
HDgdtoaimp.h591 #define ulp __ulp_D2A macro
663 extern double ulp ANSI((U*));
HDchanges269 ulp(d) never returns a denormalized number. This and other tweaks
288 introduce an error of more than one base-10 ulp when 17 or more
332 case of a power of 2 to be rounded down one ulp. Add test (required
339 an ulp less than the smallest normal floating-point number;
HDREADME93 arithmetic can easily make one-ulp adjustments on values in the
113 Source files g_ddfmt.c, misc.c, smisc.c, strtod.c, strtodg.c, and ulp.c
/trueos/contrib/gcc/config/rs6000/
HDdarwin-ldouble-format75 will be within 1ulp of the range generated by adding or subtracting
76 1ulp from the input values, where a 'ulp' is 2^(e-106) given the
81 will be within 2ulp of the correct result.
84 be within 3ulp of the correct result.
/trueos/sys/modules/ipoib/
HDMakefile2 .PATH: ${.CURDIR}/../../ofed/drivers/infiniband/ulp/ipoib
12 CFLAGS+= -I${.CURDIR}/../../ofed/drivers/infiniband/ulp/ipoib
/trueos/lib/libc/xdr/
HDxdr.c187 xdr_u_long(xdrs, ulp) in xdr_u_long() argument
189 u_long *ulp;
193 return (XDR_PUTLONG(xdrs, (long *)ulp));
195 return (XDR_GETLONG(xdrs, (long *)ulp));
/trueos/sys/modules/cxgb/tom/
HDMakefile6 .PATH: ${CXGB}/ulp/tom
/trueos/lib/libc/gdtoa/
HDMakefile.inc9 strtod.c strtodg.c strtof.c strtord.c sum.c ulp.c
/trueos/sys/xdr/
HDxdr.c177 xdr_u_long(XDR *xdrs, u_long *ulp) in xdr_u_long() argument
181 return (XDR_PUTLONG(xdrs, (long *)ulp)); in xdr_u_long()
183 return (XDR_GETLONG(xdrs, (long *)ulp)); in xdr_u_long()
/trueos/sys/modules/cxgb/iw_cxgb/
HDMakefile6 .PATH: ${CXGB}/ulp/iw_cxgb
/trueos/contrib/ipfilter/tools/
HDipfcomp.c69 u_long *ulp; local
149 if (i & -(1 - sizeof(*ulp)))
151 for (i /= sizeof(u_long), ulp = (u_long *)fr; i > 0; i--) {
152 fprintf(fp, "%s%#lx", and, *ulp++);
173 u_long *ulp; local
216 ulp = fr->fr_data;
218 fprintf(fp, "%s%#lx", and, *ulp++);
/trueos/lib/libc/softfloat/
HDsoftfloat-history.txt18 the last place (1 ulp) from what it should be. (Bug discovered by Paul
/trueos/sys/dev/oce/
HDoce_mbox.c500 if (fwcmd->params.rsp.ulp[0].ulp_mode & ULP_NIC_MODE) { in oce_get_fw_config()
501 sc->max_tx_rings = HOST_32(fwcmd->params.rsp.ulp[0].nic_wq_tot); in oce_get_fw_config()
502 sc->max_rx_rings = HOST_32(fwcmd->params.rsp.ulp[0].lro_rqid_tot); in oce_get_fw_config()
504 sc->max_tx_rings = HOST_32(fwcmd->params.rsp.ulp[1].nic_wq_tot); in oce_get_fw_config()
505 sc->max_rx_rings = HOST_32(fwcmd->params.rsp.ulp[1].lro_rqid_tot); in oce_get_fw_config()
HDoce_hw.h1693 } ulp[2]; member
/trueos/sys/conf/
HDfiles3721 ofed/drivers/infiniband/ulp/ipoib/ipoib_cm.c optional ipoib \
3723 compile-with "${OFED_C} -I$S/ofed/drivers/infiniband/ulp/ipoib/"
3724 #ofed/drivers/infiniband/ulp/ipoib/ipoib_fs.c optional ipoib \
3726 # compile-with "${OFED_C} -I$S/ofed/drivers/infiniband/ulp/ipoib/"
3727 ofed/drivers/infiniband/ulp/ipoib/ipoib_ib.c optional ipoib \
3729 compile-with "${OFED_C} -I$S/ofed/drivers/infiniband/ulp/ipoib/"
3730 ofed/drivers/infiniband/ulp/ipoib/ipoib_main.c optional ipoib \
3732 compile-with "${OFED_C} -I$S/ofed/drivers/infiniband/ulp/ipoib/"
3733 ofed/drivers/infiniband/ulp/ipoib/ipoib_multicast.c optional ipoib \
3735 compile-with "${OFED_C} -I$S/ofed/drivers/infiniband/ulp/ipoib/"
[all …]
/trueos/sys/dev/vxge/
HDvxge.c2486 void *ulp = NULL; in vxge_vpath_get() local
2519 ulp = mtod(mhead, char *) + iphlen; in vxge_vpath_get()
2520 th = ((struct tcphdr *) (ulp)); in vxge_vpath_get()
2521 uh = ((struct udphdr *) (ulp)); in vxge_vpath_get()

12