/freebsd/usr.bin/mail/ |
H A D | vars.c | 134 struct grouphead *gh; in findgroup() local 136 for (gh = groups[hash(name)]; gh != NULL; gh = gh->g_link) in findgroup() 137 if (*gh->g_name == *name && equal(gh->g_name, name)) in findgroup() 138 return (gh); in findgroup() 148 struct grouphead *gh; in printgroup() local 151 if ((gh = findgroup(name)) == NULL) { in printgroup() 155 printf("%s\t", gh->g_name); in printgroup() 156 for (gp = gh->g_list; gp != NULL; gp = gp->ge_link) in printgroup()
|
H A D | cmd3.c | 443 struct grouphead *gh; in group() local 450 for (gh = groups[h]; gh != NULL; gh = gh->g_link) in group() 454 for (gh = groups[h]; gh != NULL; gh = gh->g_link) in group() 455 *p++ = gh->g_name; in group() 468 if ((gh = findgroup(gname)) == NULL) { in group() 469 if ((gh = calloc(1, sizeof(*gh))) == NULL) in group() 471 gh->g_name = vcopy(gname); in group() 472 gh->g_list = NULL; in group() 473 gh->g_link = groups[h]; in group() 474 groups[h] = gh; in group() [all …]
|
H A D | names.c | 451 struct grouphead *gh; in usermap() local 464 gh = findgroup(np->n_name); in usermap() 466 if (gh != NULL) in usermap() 467 new = gexpand(new, gh, metoo, np->n_type); in usermap() 482 gexpand(struct name *nlist, struct grouphead *gh, int metoo, int ntype) in gexpand() argument 495 for (gp = gh->g_list; gp != NULL; gp = gp->ge_link) { in gexpand() 499 if (strcmp(cp, gh->g_name) == 0) in gexpand() 511 if (gp == gh->g_list && gp->ge_link == NULL) in gexpand()
|
/freebsd/contrib/bearssl/src/aead/ |
H A D | gcm.c | 55 br_gcm_init(br_gcm_context *ctx, const br_block_ctr_class **bctx, br_ghash gh) in br_gcm_init() argument 61 ctx->gh = gh; in br_gcm_init() 94 ctx->gh(ty, ctx->h, iv, len); in br_gcm_reset() 97 ctx->gh(ty, ctx->h, tmp, 16); in br_gcm_reset() 128 ctx->gh(ctx->y, ctx->h, ctx->buf, 16); in br_gcm_aad_inject() 140 ctx->gh(ctx->y, ctx->h, data, dlen); in br_gcm_aad_inject() 158 ctx->gh(ctx->y, ctx->h, ctx->buf, ptr); in br_gcm_flip() 195 ctx->gh(ctx->y, ctx->h, ctx->buf, 16); in br_gcm_run() 203 ctx->gh(ctx->y, ctx->h, buf, dlen); in br_gcm_run() 207 ctx->gh(ctx->y, ctx->h, buf, dlen); in br_gcm_run() [all …]
|
/freebsd/contrib/libxo/ |
H A D | Makefile.am | 36 GH_PAGES_DIR = gh-pages/ 37 GH_PAGES_DIR_VER = gh-pages/${PACKAGE_VERSION} 65 && git push origin gh-pages ) ; true 77 && git push origin gh-pages ) ; true 85 get-gh-pages: 87 gh-pages -b gh-pages 117 && git push origin gh-pages ) ; true
|
/freebsd/contrib/libfido2/ |
H A D | NEWS | 5 ** winhello: translate NTE_USER_CANCELLED to FIDO_ERR_OPERATION_DENIED; gh#685. 12 ** Support for linking against OpenSSL on Windows; gh#668. 21 ** Support for hidraw(4) on FreeBSD; gh#597. 53 ** hid_osx: handle devices with paths > 511 bytes; gh#462. 54 ** bio: fix CTAP2 canonical CBOR encoding in fido_bio_dev_enroll_*(); gh#480. 85 ** Better handling of HID devices without identification strings; gh#381. 86 ** Fixed detection of Windows's native webauthn API; gh#382. 110 ** Fixed musl build; gh#259. 111 ** hid_win: detect devices with vendor or product IDs > 0x7fff; gh#264. 139 ** New fido_init flag to disable fido_dev_open's U2F fallback; gh#28 [all...] |
/freebsd/sys/net/ |
H A D | if_gre.c | 475 gre_update_hdr(struct gre_softc *sc, struct grehdr *gh) in gre_update_hdr() argument 483 opts = gh->gre_opts; in gre_update_hdr() 500 gh->gre_flags = htons(flags); in gre_update_hdr() 507 struct grehdr *gh; in gre_input() local 525 gh = (struct grehdr *)mtodo(m, off); in gre_input() 526 flags = ntohs(gh->gre_flags); in gre_input() 529 opts = gh->gre_opts; in gre_input() 565 switch (ntohs(gh->gre_proto)) { 571 if (flags == 0 && (*(uint8_t *)gh->gre_opts & 0xF0) != 0x40) 627 gre_setseqn(struct grehdr *gh, uint32_ [all...] |
/freebsd/contrib/netbsd-tests/lib/libc/regex/data/ |
H A D | complex.in | 20 [ab][cd][ef][gh][ij][kl][mn] - xacegikmoq acegikm 21 [ab][cd][ef][gh][ij][kl][mn][op] - xacegikmoq acegikmo 22 [ab][cd][ef][gh][ij][kl][mn][op][qr] - xacegikmoqy acegikmoq 23 [ab][cd][ef][gh][ij][kl][mn][op][q] - xacegikmoqy acegikmoq
|
/freebsd/usr.bin/sort/ |
H A D | coll.c | 1137 kv1->hint->v.gh.notnum = true; in gnumcoll() 1139 kv1->hint->v.gh.d = d1; in gnumcoll() 1140 kv1->hint->v.gh.nan = is_nan(d1); in gnumcoll() 1154 kv2->hint->v.gh.notnum = true; in gnumcoll() 1156 kv2->hint->v.gh.d = d2; in gnumcoll() 1157 kv2->hint->v.gh.nan = is_nan(d2); in gnumcoll() 1167 if (kv1->hint->v.gh.notnum) in gnumcoll() 1168 return ((kv2->hint->v.gh.notnum) ? 0 : -1); in gnumcoll() 1169 else if (kv2->hint->v.gh.notnum) in gnumcoll() 1172 if (kv1->hint->v.gh.nan) in gnumcoll() [all …]
|
H A D | coll.h | 94 struct g_hint gh; member
|
/freebsd/contrib/bearssl/src/ssl/ |
H A D | ssl_rec_gcm.c | 43 cc->gh = gh_impl; in gen_gcm_init() 100 cc->gh(tag, cc->h, header, sizeof header); in do_tag() 101 cc->gh(tag, cc->h, data, len); in do_tag() 102 cc->gh(tag, cc->h, footer, sizeof footer); in do_tag()
|
/freebsd/contrib/libcbor/ |
H A D | README.md | 3 [![CircleCI](https://circleci.com/gh/PJK/libcbor/tree/master.svg?style=svg)](https://circleci.com/gh/PJK/libcbor/tree/master) 6 [![codecov](https://codecov.io/gh/PJK/libcbor/branch/master/graph/badge.svg)](https://codecov.io/gh/PJK/libcbor)
|
/freebsd/bin/dd/ |
H A D | ref.parodd | 7 00000060 e0 61 62 e3 64 e5 e6 67 68 e9 ea 6b ec 6d 6e ef |.ab.d..gh..k.mn.| 15 000000e0 e0 61 62 e3 64 e5 e6 67 68 e9 ea 6b ec 6d 6e ef |.ab.d..gh..k.mn.|
|
/freebsd/contrib/bearssl/test/ |
H A D | test_speed.c | 283 test_speed_ghash_inner(char *name, br_ghash gh) in SPEED_HASH() 293 gh(y, h, buf, sizeof buf); in SPEED_HASH() 303 gh(y, h, buf, sizeof buf); in SPEED_HASH() 339 br_ghash gh; in test_speed_ghash_pclmul() local 341 gh = br_ghash_pclmul_get(); in test_speed_ghash_pclmul() 342 if (gh == 0) { in test_speed_ghash_pclmul() 346 test_speed_ghash_inner("GHASH (pclmul)", gh); in test_speed_ghash_pclmul() 353 br_ghash gh; in test_speed_ghash_pwr8() local 355 gh = br_ghash_pwr8_get(); in test_speed_ghash_pwr8() 356 if (gh == 0) { in test_speed_ghash_pwr8() [all …]
|
/freebsd/sys/contrib/openzfs/ |
H A D | README.md | 7 [![codecov](https://codecov.io/gh/openzfs/zfs/branch/master/graph/badge.svg)](https://codecov.io/gh…
|
/freebsd/contrib/ntp/sntp/tests/data/ |
H A D | key-test-invalid-hex | 1 30 MD5 0101010101010101010101010101gh
|
/freebsd/contrib/elftoolchain/libelf/ |
H A D | libelf_convert.m4 | 756 Elf_GNU_Hash_Header *gh; 784 gh = (Elf_GNU_Hash_Header *) (uintptr_t) dst; 785 gh->gh_nbuckets = nbuckets; 786 gh->gh_symndx = symndx; 787 gh->gh_maskwords = maskwords; 788 gh->gh_shift2 = shift2; 843 Elf_GNU_Hash_Header *gh; 850 gh = (Elf_GNU_Hash_Header *) (uintptr_t) src; 852 t0 = nbuckets = gh->gh_nbuckets; 853 t1 = gh->gh_symndx; [all …]
|
/freebsd/contrib/bearssl/inc/ |
H A D | bearssl_aead.h | 361 br_ghash gh; member 388 const br_block_ctr_class **bctx, br_ghash gh);
|
/freebsd/sys/netinet6/ |
H A D | ip6_gre.c | 355 struct grehdr *gh; in in6_gre_attach() local 362 gh = &sc->gre_udp6hdr->gi6_gre; in in6_gre_attach() 368 gh = &sc->gre_ip6hdr->gi6_gre; in in6_gre_attach() 371 gre_update_hdr(sc, gh); in in6_gre_attach()
|
/freebsd/sys/netinet/ |
H A D | ip_gre.c | 352 struct grehdr *gh; in in_gre_attach() local 359 gh = &sc->gre_udphdr->gi_gre; in in_gre_attach() 366 gh = &sc->gre_iphdr->gi_gre; in in_gre_attach() 370 gre_update_hdr(sc, gh); in in_gre_attach()
|
/freebsd/lib/libnetmap/ |
H A D | nmreq.c | 204 struct nmreq_header gh; in nmreq_get_mem_id() local 220 nmreq_header_init(&gh, NETMAP_REQ_PORT_INFO_GET, &gb); in nmreq_get_mem_id() 221 if (nmreq_header_decode(&ifname, &gh, ctx) < 0) { in nmreq_get_mem_id() 225 if (ioctl(fd, NIOCCTRL, &gh) < 0) { in nmreq_get_mem_id()
|
/freebsd/sys/contrib/openzfs/cmd/zed/zed.d/ |
H A D | README | 14 https://github.com/google/styleguide/blob/gh-pages/shell.xml
|
/freebsd/usr.bin/gh-bc/tests/ |
H A D | Makefile | 7 TESTSDIR= ${TESTSBASE}/usr.bin/gh-bc
|
/freebsd/lib/libc/regex/grot/ |
H A D | tests | 347 [ab][cd][ef][gh][ij][kl][mn] - xacegikmoq acegikm 348 [ab][cd][ef][gh][ij][kl][mn][op] - xacegikmoq acegikmo 349 [ab][cd][ef][gh][ij][kl][mn][op][qr] - xacegikmoqy acegikmoq 350 [ab][cd][ef][gh][ij][kl][mn][op][q] - xacegikmoqy acegikmoq
|
/freebsd/contrib/tcpdump/ |
H A D | print-juniper.c | 482 const struct juniper_ggsn_header *gh; in juniper_ggsn_if_print() local 494 gh = (struct juniper_ggsn_header *)&l2info.cookie; in juniper_ggsn_if_print() 497 proto = EXTRACT_U_1(gh->proto); in juniper_ggsn_if_print() 502 EXTRACT_BE_U_2(gh->vlan_id)); in juniper_ggsn_if_print()
|