Searched refs:nh (Results 1 - 25 of 92) sorted by relevance

1234

/netbsd-6-1-5-RELEASE/external/bsd/tcpdump/dist/
H A Dprint-cnfp.c84 register const struct nfhdr *nh; local
92 nh = (const struct nfhdr *)cp;
94 if ((const u_char *)(nh + 1) > snapend)
97 nrecs = EXTRACT_32BITS(&nh->ver_cnt) & 0xffff;
98 ver = (EXTRACT_32BITS(&nh->ver_cnt) & 0xffff0000) >> 16;
105 t = EXTRACT_32BITS(&nh->utc_sec);
109 EXTRACT_32BITS(&nh->msys_uptime)/1000,
110 EXTRACT_32BITS(&nh->msys_uptime)%1000,
111 EXTRACT_32BITS(&nh->utc_sec), EXTRACT_32BITS(&nh
[all...]
H A Dprint-ip6.c89 int nh; local
143 nh = ip6->ip6_nxt;
149 nh != IPPROTO_TCP && nh != IPPROTO_UDP &&
150 nh != IPPROTO_DCCP && nh != IPPROTO_SCTP) {
155 switch (nh) {
158 nh = *cp;
162 nh = *cp;
168 nh
[all...]
H A Dprint-ip.c375 u_char nh; member in struct:ip_print_demux_state
386 switch (ipds->nh) {
389 ipds->nh = *ipds->cp;
407 ipds->nh = enh & 0xff;
419 ipds->nh = enh & 0xff;
533 if ((proto = getprotobynumber(ipds->nh)) != NULL)
536 ND_PRINT((ndo, " ip-proto-%d", ipds->nh));
545 u_int length, u_int nh,
554 ipd.nh = nh;
543 ip_print_inner(netdissect_options *ndo, const u_char *bp, u_int length, u_int nh, const u_char *bp2) argument
[all...]
H A Dprint-icmp6.c627 u_int nh; local
636 nh = ip6->ip6_nxt;
642 switch(nh) {
647 *prot = nh;
660 nh = hbh->ip6h_nxt;
671 nh = fragh->ip6f_nxt;
679 nh = ah->ah_nxt;
684 *prot = nh; /* meaningless, but set here anyway */
/netbsd-6-1-5-RELEASE/external/lgpl3/gmp/dist/mpn/generic/
H A Dhgcd2.c91 mp_limb_t nh, mp_limb_t nl,
96 if ((mp_limb_signed_t) nh < 0)
108 if (nh > dh || (nh == dh && nl >= dl))
110 sub_ddmmss (nh, nl, nh, nl, dh, dl);
121 for (cnt = 0; nh > dh || (nh == dh && nl >= dl); cnt++)
132 if (nh > dh || (nh
90 div2(mp_ptr rp, mp_limb_t nh, mp_limb_t nl, mp_limb_t dh, mp_limb_t dl) argument
[all...]
H A Dsqrmod_bnm1.c287 mp_size_t nh; local
296 nh = (n + 1) >> 1;
298 if (BELOW_THRESHOLD (nh, SQR_FFT_MODF_THRESHOLD))
301 return 2 * mpn_fft_next_size (nh, mpn_fft_best_k (nh, 1));
H A Dmulmod_bnm1.c336 mp_size_t nh; local
345 nh = (n + 1) >> 1;
347 if (BELOW_THRESHOLD (nh, MUL_FFT_MODF_THRESHOLD))
350 return 2 * mpn_fft_next_size (nh, mpn_fft_best_k (nh, 0));
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.c-torture/compile/
H A D921111-1.c13 struct nh { struct
21 struct nh xhp;
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/gcc.c-torture/compile/
H A D921111-1.c13 struct nh { struct
21 struct nh xhp;
/netbsd-6-1-5-RELEASE/games/worm/
H A Dworm.c258 struct body *nh; local
309 nh = tail->next;
311 tail = nh;
328 nh = newlink();
329 if (nh == NULL)
331 nh->next = NULL;
332 nh->prev = head;
333 head->next = nh;
334 nh->y = y;
335 nh
[all...]
/netbsd-6-1-5-RELEASE/external/bsd/libpcap/dist/
H A Dpcap-nit.c103 register struct nit_hdr *nh; local
148 nh = (struct nit_hdr *)bp;
149 cp = bp + sizeof(*nh);
151 switch (nh->nh_state) {
159 p->md.stat.ps_drop = nh->nh_dropped;
167 "bad nit state %d", nh->nh_state);
171 bp += ((sizeof(struct nit_hdr) + nh->nh_datalen +
174 caplen = nh->nh_wirelen;
177 if (bpf_filter(p->fcode.bf_insns, cp, nh->nh_wirelen, caplen)) {
179 h.ts = nh
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/binutils/dist/gas/testsuite/gas/v850/
H A Dcompare.s15 setf nh,r5
/netbsd-6-1-5-RELEASE/lib/libedit/
H A Dhistory.c683 history_set_fun(TYPE(History) *h, TYPE(History) *nh)
687 if (nh->h_first == NULL || nh->h_next == NULL || nh->h_last == NULL ||
688 nh->h_prev == NULL || nh->h_curr == NULL || nh->h_set == NULL ||
689 nh->h_enter == NULL || nh->h_add == NULL || nh
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/readline/
H A Dsignals.c70 # define rl_sigaction(s, nh, oh) sigaction(s, nh, oh)
231 rl_sigaction (sig, nh, oh)
233 sighandler_cxt *nh, *oh;
235 oh->sa_handler = signal (sig, nh->sa_handler);
/netbsd-6-1-5-RELEASE/external/lgpl3/gmp/dist/mpn/sparc64/
H A Dsparc64.h160 /* Divide nh:nl by d, setting q to the quotient and r to the remainder.
161 q, r, nh and nl are 32-bits each, d_limb is 32-bits but in an mp_limb_t,
164 #define udiv_qrnnd_half_preinv(q, r, nh, nl, d_limb, dinv_limb) \
171 ASSERT (nh < d_limb); \
173 _n2 = (nh); \
/netbsd-6-1-5-RELEASE/external/lgpl3/gmp/dist/mpn/m68k/mc68020/
H A Dudiv.asm24 C mp_limb_t nh, mp_limb_t nl, mp_limb_t d);
29 movel M(sp,8), d1 C nh
/netbsd-6-1-5-RELEASE/crypto/external/bsd/heimdal/dist/lib/roken/
H A Dgetifaddrs.c334 struct nlmsghdr *nh; local
354 nh = (struct nlmsghdr *)buff;
355 for (nh = (struct nlmsghdr *)buff;
356 NLMSG_OK(nh, read_size);
357 nh = (struct nlmsghdr *)NLMSG_NEXT(nh, read_size)){
358 if (nh->nlmsg_pid != pid ||
359 nh->nlmsg_seq != seq)
361 if (nh->nlmsg_type == NLMSG_DONE){
365 if (nh
[all...]
/netbsd-6-1-5-RELEASE/external/lgpl3/gmp/dist/mpn/ia64/
H A Ddivrem_2.asm128 (p15) add r14 = 1, R1 C nh + (nl:63)
129 (p14) mov r14 = R1 C nh
130 cmp.eq p6, p0 = d1, R1 C nh == d1
135 sub r23 = -1, R1 C r23 = ~nh
140 xma.hu f7 = fdinv, f8, f15 C xh = HI(dinv*(nh-nmask)+nadj)
142 xma.l f7 = f7, fminus1, fnh C nh + xh
/netbsd-6-1-5-RELEASE/external/bsd/bind/dist/lib/dns/
H A Dadb.c817 dns_adbnamehook_t *nh; local
844 nh = NULL;
861 INSIST(nh == NULL);
862 nh = new_adbnamehook(adb, NULL);
863 if (nh == NULL) {
884 nh->entry = entry;
895 nh->entry = foundentry;
897 free_adbnamehook(adb, &nh);
901 if (nh != NULL)
902 ISC_LIST_APPEND(*hookhead, nh, plin
1673 dns_adbnamehook_t *nh; local
1688 dns_adbnamehook_t *nh; local
3429 dns_adbnamehook_t *nh; local
[all...]
/netbsd-6-1-5-RELEASE/usr.sbin/route6d/
H A Droute6d.c714 struct in6_addr *nh; /* next hop */ local
729 nrt = 0; nip = ripbuf->rip6_nets; nh = NULL;
738 nh = NULL;
775 nrt = 0; nip = ripbuf->rip6_nets; nh = NULL;
797 if (nh == NULL || !IN6_ARE_ADDR_EQUAL(nh, &rrt->rrt_gw)) {
806 nh = &rrt->rrt_gw;
809 } else if (nh && (rrt->rrt_index != ifcp->ifc_index ||
810 !IN6_ARE_ADDR_EQUAL(nh, &rrt->rrt_gw) ||
817 nh
996 struct in6_addr nh; /* next hop */ local
[all...]
/netbsd-6-1-5-RELEASE/external/historical/nawk/dist/
H A Dtran.c256 int i, nh, nsz; local
266 nh = hash(cp->nval, nsz);
267 cp->cnext = np[nh];
268 np[nh] = cp;
/netbsd-6-1-5-RELEASE/sys/lib/libsa/
H A Dloadfile_elf32.c271 Elf_Nhdr nh; member in struct:__packed
528 if (note.nh.n_namesz ==
530 note.nh.n_descsz ==
532 note.nh.n_type ==
/netbsd-6-1-5-RELEASE/external/ibm-public/postfix/dist/conf/
H A Dpostmulti-script166 val=`postconf -nh $p` || exit 1
/netbsd-6-1-5-RELEASE/usr.sbin/traceroute6/
H A Dtraceroute6.c1190 u_char *cp = (u_char *)ip6, nh; local
1196 nh = ip6->ip6_nxt;
1200 switch (nh) {
1210 nh = ((struct ip6_frag *)cp)->ip6f_nxt;
1214 nh = ((struct ip6_ext *)cp)->ip6e_nxt;
1218 nh = ((struct ip6_ext *)cp)->ip6e_nxt;
/netbsd-6-1-5-RELEASE/external/bsd/am-utils/dist/scripts/
H A Dexpn.in423 local($us,@so,$nh,@remaining_users);
997 local($nh, $pref,$cpref);
1022 $nh = $1;
1026 $nserver = $nh;
1029 $fallback{$pref} .= " $nh";

Completed in 343 milliseconds

1234