/freebsd/tools/tools/net80211/wlaninject/ |
H A D | wlaninject.c | 438 struct ieee80211_frame *got, int glen) in possible_match() argument 440 if (slen != glen) in possible_match() 465 int do_verify(struct ieee80211_frame *sent, int slen, void *got, int glen) in do_verify() argument 477 glen -= bpfh->bh_hdrlen; in do_verify() 478 assert(glen > 0); in do_verify() 479 if (bpfh->bh_caplen != glen) { in do_verify() 484 glen -= rth->it_len; in do_verify() 485 assert(glen > 0); in do_verify() 498 glen -= IEEE80211_CRC_LEN; in do_verify() 499 assert(glen > 0); in do_verify() [all …]
|
/freebsd/crypto/openssh/ |
H A D | sftp-common.c | 220 int ulen, glen, sz = 0; in ls_file() local 253 glen = MAXIMUM(strlen(group), 8); in ls_file() 257 mode, lc, ulen, user, glen, group, in ls_file() 261 mode, lc, ulen, user, glen, group, in ls_file()
|
/freebsd/crypto/libecc/src/examples/sig/sdsa/ |
H A D | sdsa.h | 54 const u8 *g, u16 glen, 59 const u8 *g, u16 glen,
|
H A D | sdsa.c | 60 const u8 *g, u16 glen, in sdsa_import_priv_key() argument 63 return dsa_import_priv_key(priv, p, plen, q, qlen, g, glen, x, xlen); in sdsa_import_priv_key() 69 const u8 *g, u16 glen, in sdsa_import_pub_key() argument 72 return dsa_import_pub_key(pub, p, plen, q, qlen, g, glen, y, ylen); in sdsa_import_pub_key()
|
/freebsd/crypto/libecc/src/examples/sig/kcdsa/ |
H A D | kcdsa.h | 54 const u8 *g, u16 glen, 59 const u8 *g, u16 glen,
|
H A D | kcdsa.c | 58 const u8 *g, u16 glen, in kcdsa_import_priv_key() argument 61 return dsa_import_priv_key(priv, p, plen, q, qlen, g, glen, x, xlen); in kcdsa_import_priv_key() 67 const u8 *g, u16 glen, in kcdsa_import_pub_key() argument 70 return dsa_import_pub_key(pub, p, plen, q, qlen, g, glen, y, ylen); in kcdsa_import_pub_key()
|
/freebsd/crypto/libecc/src/examples/sig/gostr34_10_94/ |
H A D | gostr34_10_94.h | 54 const u8 *g, u16 glen, 59 const u8 *g, u16 glen,
|
H A D | gostr34_10_94.c | 58 const u8 *g, u16 glen, in gostr34_10_94_import_priv_key() argument 61 return dsa_import_priv_key(priv, p, plen, q, qlen, g, glen, x, xlen); in gostr34_10_94_import_priv_key() 67 const u8 *g, u16 glen, in gostr34_10_94_import_pub_key() argument 70 return dsa_import_pub_key(pub, p, plen, q, qlen, g, glen, y, ylen); in gostr34_10_94_import_pub_key()
|
/freebsd/crypto/libecc/src/examples/sig/dsa/ |
H A D | dsa.h | 57 const u8 *g, u16 glen, 62 const u8 *g, u16 glen,
|
H A D | dsa.c | 55 const u8 *g, u16 glen, in dsa_import_priv_key() argument 67 ret = _os2ip(&(priv->g), g, glen); EG(ret, err); in dsa_import_priv_key() 91 const u8 *g, u16 glen, in dsa_import_pub_key() argument 103 ret = _os2ip(&(pub->g), g, glen); EG(ret, err); in dsa_import_pub_key()
|
/freebsd/bin/ls/ |
H A D | ls.c | 744 size_t flen, ulen, glen; in display() local 879 if ((glen = strlen(group)) > maxgroup) in display() 880 maxgroup = glen; in display() 950 ulen + glen + flen + 4)) == NULL) in display() 967 np->flags = &np->data[ulen + glen + 2]; in display() 972 np->label = &np->data[ulen + glen + 2 in display()
|
/freebsd/crypto/openssl/crypto/bn/ |
H A D | bn_gcd.c | 553 int i, j, top, rlen, glen, m, bit = 1, delta = 1, cond = 0, shifts = 0, ret = 0; in BN_gcd() local 609 glen = BN_num_bits(g); in BN_gcd() 610 m = 4 + 3 * ((rlen >= glen) ? rlen : glen); in BN_gcd()
|
/freebsd/crypto/openssl/test/helpers/ |
H A D | predefined_dhparams.c | 50 unsigned char *gdata, size_t glen, in get_dh_from_pg() argument 57 g = BN_bin2bn(gdata, glen, NULL); in get_dh_from_pg()
|
/freebsd/contrib/bearssl/src/ssl/ |
H A D | ssl_hs_client.c | 269 size_t glen, olen, point_len, xoff, xlen; in make_pms_ecdh() local 309 ctx->eng.iec->generator(curve, &glen); in make_pms_ecdh() 310 if (glen != point_len) { in make_pms_ecdh() 314 memcpy(point, point_src, glen); in make_pms_ecdh() 315 if (!ctx->eng.iec->mul(point, glen, key, olen, curve)) { in make_pms_ecdh() 326 memcpy(ctx->eng.pad, point, glen); in make_pms_ecdh() 327 return (int)glen; in make_pms_ecdh()
|
H A D | ssl_hs_client.t0 | 214 size_t glen, olen, point_len, xoff, xlen; 254 ctx->eng.iec->generator(curve, &glen); 255 if (glen != point_len) { 259 memcpy(point, point_src, glen); 260 if (!ctx->eng.iec->mul(point, glen, key, olen, curve)) { 271 memcpy(ctx->eng.pad, point, glen); 272 return (int)glen;
|
H A D | ssl_hs_server.c | 269 size_t olen, glen; in do_ecdhe_part1() local 298 glen = ctx->eng.iec->mulgen(ctx->eng.ecdhe_point, in do_ecdhe_part1() 300 ctx->eng.ecdhe_point_len = glen; in do_ecdhe_part1()
|
H A D | ssl_hs_server.t0 | 214 size_t olen, glen; 243 glen = ctx->eng.iec->mulgen(ctx->eng.ecdhe_point, 245 ctx->eng.ecdhe_point_len = glen;
|
/freebsd/contrib/sendmail/cf/ostype/ |
H A D | qnx.m4 | 12 # Contributed by Glen McCready <glen@qnx.com>
|
/freebsd/contrib/file/magic/Magdir/ |
H A D | wsdl | 8 # By Elan Ruusamae <glen@delfi.ee>, Patryk Zawadzki <patrys@pld-linux.org>, 2010-2011
|
H A D | gnome | 40 # By Elan Ruusamae <glen@delfi.ee>
|
H A D | commands | 158 # Elan Ruusamae <glen@delfi.ee>
|
H A D | sql | 8 # Elan Ruusamae <glen@delfi.ee>, added MariaDB signatures
|
/freebsd/lib/libc/gen/ |
H A D | getnetgrent.c | 456 int glen = strlen(group); local 466 if (strncmp(cptr, group, glen) == 0 && glen == (ptr - cptr))
|
/freebsd/sbin/geom/core/ |
H A D | geom.c | 1088 int len, glen; in status_update_len_prs() local 1094 glen = 0; in status_update_len_prs() 1097 glen = strlen(conf->lg_val); in status_update_len_prs() 1105 len = glen; in status_update_len_prs()
|
/freebsd/contrib/sendmail/ |
H A D | RELEASE_NOTES | 6363 QNX from Glen McCready <glen@qnx.com>.
|