Searched refs:hip (Results 1 - 13 of 13) sorted by relevance

/freebsd-13-stable/lib/libsecureboot/
H A Dvepcr.c100 struct hashed_info *hip; local
105 if ((hip = malloc(sizeof(struct hashed_info)))) {
106 hip->hi_path = strdup(path);
107 if (!hip->hi_path) {
108 free(hip);
111 hip->hi_basename = strrchr(hip->hi_path, '/');
112 if (hip->hi_basename) {
113 hip->hi_basename++;
115 hip
144 struct hashed_info *hip; local
[all...]
/freebsd-13-stable/sys/netgraph/
H A Dng_tag.c304 hinfo_p hip; local
308 hip = malloc(sizeof(*hip), M_NETGRAPH_TAG, M_NOWAIT | M_ZERO);
309 if (hip == NULL)
311 NG_HOOK_SET_PRIVATE(hook, hip);
322 free(hip, M_NETGRAPH_TAG);
328 free(hip, M_NETGRAPH_TAG);
338 strncpy(hip->in->thisHook, name, sizeof(hip->in->thisHook) - 1);
339 hip
507 const hinfo_p hip = NG_HOOK_PRIVATE(hook); local
610 const hinfo_p hip = NG_HOOK_PRIVATE(hook); local
646 const hinfo_p hip = NG_HOOK_PRIVATE(hook); local
696 const hinfo_p hip = NG_HOOK_PRIVATE(hook); local
[all...]
H A Dng_bpf.c246 hinfo_p hip = NG_HOOK_PRIVATE(hook); local
249 if (strcmp(hip->prog->ifMatch, NG_HOOK_NAME(h)) == 0)
250 hip->match = h;
251 if (strcmp(hip->prog->ifNotMatch, NG_HOOK_NAME(h)) == 0)
252 hip->nomatch = h;
259 hinfo_p hip = NG_HOOK_PRIVATE(hook); local
262 if (hip->match == h)
263 hip->match = NULL;
264 if (hip->nomatch == h)
265 hip
275 hinfo_p hip; local
417 const hinfo_p hip = NG_HOOK_PRIVATE(hook); local
526 const hinfo_p hip = NG_HOOK_PRIVATE(hook); local
557 const hinfo_p hip = NG_HOOK_PRIVATE(hook); local
[all...]
H A Dng_hole.c132 hinfo_p hip; local
135 hip = malloc(sizeof(*hip), M_NETGRAPH, M_NOWAIT | M_ZERO);
136 if (hip == NULL)
138 NG_HOOK_SET_PRIVATE(hook, hip);
207 const hinfo_p hip = NG_HOOK_PRIVATE(hook); local
209 hip->stats.frames++;
210 hip->stats.octets += NGI_M(item)->m_pkthdr.len;
/freebsd-13-stable/sys/contrib/octeon-sdk/
H A Dcvmx-app-hotplug.c577 cvmx_app_hotplug_info_t *hip; local
587 hip = hgp->hotplug_info_array;
592 if (hip[i].coremask == coremask)
595 printf("cvmx_app_hotplug_get_info(): coremask match %d -- coremask 0x%x, valid %d\n", i, (unsigned int)hip[i].coremask, (unsigned int)hip[i].valid);
596 return &hip[i];
612 cvmx_app_hotplug_info_t *hip; local
622 hip = hgp->hotplug_info_array;
627 if (hip[i].coremask == coremask)
630 printf("cvmx_app_hotplug_get_info(): coremask match %d -- coremask 0x%x valid %d\n", i, (unsigned int)hip[
653 cvmx_app_hotplug_info_t *hip; local
[all...]
/freebsd-13-stable/sys/dev/usb/net/
H A Dif_usie.c858 len = be16toh(rxd->hip.len) & USIE_HIP_IP_LEN_MASK;
859 pad = (rxd->hip.id & USIE_HIP_PAD) ? 1 : 0;
868 if (((rxd->hip.id & USIE_HIP_MASK) != USIE_HIP_IP) ||
963 sc->sc_txd.hip.len = htobe16(m->m_pkthdr.len +
1070 struct usie_hip *hip; local
1106 hip = (struct usie_hip *)sc->sc_status_temp;
1108 pad = (hip->id & USIE_HIP_PAD) ? 1 : 0;
1110 DPRINTF("hip.id=%x hip.len=%d actlen=%u pad=%d\n",
1111 hip
1394 struct usie_hip *hip; local
1514 struct usie_hip *hip; local
[all...]
H A Dif_usievar.h189 struct usie_hip hip; member in struct:usie_desc
/freebsd-13-stable/contrib/netbsd-tests/dev/usb/
H A Dt_hid.c84 enum hid_kind k, struct hid_item *hip)
93 if (hip != NULL)
94 *hip = h;
83 locate_item(const void *desc, int size, u_int32_t u, u_int8_t id, enum hid_kind k, struct hid_item *hip) argument
/freebsd-13-stable/tests/sys/netinet6/
H A Dexthdr.py141 if args.hip:
143 hip = None
144 ext = addExt(ext, hip)
212 parser.add_argument('--hip',
/freebsd-13-stable/lib/msun/ld128/
H A Dk_expl.h240 __k_expl(long double x, long double *hip, long double *lop, int *kp) argument
261 *hip = tbl[n2].hi;
273 k_hexpl(long double x, long double *hip, long double *lop) argument
278 __k_expl(x, hip, lop, &k);
280 *hip *= twopkm1;
/freebsd-13-stable/lib/msun/ld80/
H A Dk_expl.h222 __k_expl(long double x, long double *hip, long double *lop, int *kp) argument
245 *hip = tbl[n2].hi;
250 k_hexpl(long double x, long double *hip, long double *lop) argument
255 __k_expl(x, hip, lop, &k);
257 *hip *= twopkm1;
/freebsd-13-stable/contrib/traceroute/
H A Dtraceroute.c323 struct ip *hip = NULL; /* Quoted IP header */ variable in typeref:struct:ip
1132 (void *)hip, hiplen);
1443 hip = &icp->icmp_ip;
1444 hiplen = ((u_char *)icp + cc) - (u_char *)hip;
1445 hlen = hip->ip_hl << 2;
1446 inner = (u_char *)((u_char *)hip + hlen);
1448 && hip->ip_p == proto->num
/freebsd-13-stable/usr.sbin/traceroute6/
H A Dtraceroute6.c1381 struct ip6_hdr *hip; local
1389 hip = (struct ip6_hdr *)(icp + 1);
1390 if ((up = get_uphdr(hip, (u_char *)(buf + cc))) == NULL) {

Completed in 125 milliseconds