/freebsd/sys/contrib/openzfs/lib/libnvpair/ |
H A D | libnvpair.c | 968 uint_t a_len; in nvpair_value_match_regex() local 1016 if ((nvpair_value_string_array(nvp, &val_array, &a_len) == 0) && in nvpair_value_match_regex() 1017 (ai < a_len)) { in nvpair_value_match_regex() 1046 (nvpair_value_byte_array(nvp, &val_array, &a_len) == 0) && in nvpair_value_match_regex() 1047 (ai < a_len) && in nvpair_value_match_regex() 1069 (nvpair_value_int8_array(nvp, &val_array, &a_len) == 0) && in nvpair_value_match_regex() 1070 (ai < a_len) && in nvpair_value_match_regex() 1092 (nvpair_value_uint8_array(nvp, &val_array, &a_len) == 0) && in nvpair_value_match_regex() 1093 (ai < a_len) && in nvpair_value_match_regex() 1115 (nvpair_value_int16_array(nvp, &val_array, &a_len) == 0) && in nvpair_value_match_regex() [all …]
|
/freebsd/contrib/wpa/src/common/ |
H A D | ctrl_iface_common.c | 17 static int sockaddr_compare(struct sockaddr_storage *a, socklen_t a_len, in sockaddr_compare() argument 61 if (a_len != b_len || in sockaddr_compare() 63 a_len - offsetof(struct sockaddr_un, sun_path)) in sockaddr_compare()
|
/freebsd/contrib/sendmail/libmilter/ |
H A D | engine.c | 23 size_t a_len; /* length of buffer */ member 397 arg.a_len = len; 864 if (g->a_len < MILTER_OPTLEN) 869 (long) ctx->ctx_id, (int) g->a_len, 1192 l = g->a_len; 1356 if (g->a_len == 0 || g->a_buf[g->a_len - 1] != '\0') 1385 if (dec_arg2(g->a_buf, g->a_len, &hf, &hv) == MI_SUCCESS) 1402 if ((argv = dec_argv(g->a_buf, g->a_len)) == NULL) \ 1487 if (g == NULL || g->a_len < 1) 1489 if ((argv = dec_argv(g->a_buf + 1, g->a_len - 1)) == NULL) [all …]
|
/freebsd/crypto/openssl/crypto/x509/ |
H A D | v3_utl.c | 656 static int equal_email(const unsigned char *a, size_t a_len, in equal_email() argument 660 size_t i = a_len; in equal_email() 662 if (a_len != b_len) in equal_email() 672 if (!equal_nocase(a + i, a_len - i, b + i, a_len - i, 0)) in equal_email() 678 i = a_len; in equal_email()
|
/freebsd/contrib/bmake/ |
H A D | dir.c | 740 concat3(const char *a, size_t a_len, const char *b, size_t b_len, in concat3() argument 743 size_t s_len = a_len + b_len + c_len; in concat3() 745 memcpy(s, a, a_len); in concat3() 746 memcpy(s + a_len, b, b_len); in concat3() 747 memcpy(s + a_len + b_len, c, c_len); in concat3()
|
/freebsd/contrib/unbound/dns64/ |
H A D | dns64.c | 299 int prefix_net, const uint8_t a[], size_t a_len, uint8_t aaaa[], in synthesize_aaaa() argument 304 log_assert(prefix_addr_len == 16 && a_len == 4 && aaaa_len == 16); in synthesize_aaaa() 307 (void)prefix_addr_len; (void)a_len; (void)aaaa_len; in synthesize_aaaa() 309 for(i = 0, pos = prefix_net / 8; i < a_len; i++, pos++) { in synthesize_aaaa()
|
/freebsd/sys/kern/ |
H A D | vfs_default.c | 828 len = *ap->a_len; in vop_stdallocate() 933 *ap->a_len = len; in vop_stdallocate() 1011 len = omin((off_t)va.va_size - offset, *ap->a_len); in vop_stddeallocate() 1057 *ap->a_len = len; in vop_stddeallocate()
|
/freebsd/contrib/jemalloc/src/ |
H A D | prof.c | 278 unsigned a_len = a->bt.len; in rb_gen() local 280 unsigned comp_len = (a_len < b_len) ? a_len : b_len; in rb_gen() 283 ret = (a_len > b_len) - (a_len < b_len); in rb_gen()
|
/freebsd/sys/dev/wg/ |
H A D | wg_noise.c | 1234 size_t a_len, size_t b_len, size_t c_len, size_t x_len, in noise_kdf() argument 1243 if (a == NULL || a_len == 0) in noise_kdf() 1249 memcpy(a, out, a_len); in noise_kdf()
|
/freebsd/sys/fs/nfsclient/ |
H A D | nfs_clvnops.c | 3650 alen = *ap->a_len; in nfs_allocate() 3672 *ap->a_len -= alen; in nfs_allocate() 3721 tlen = omin(OFF_MAX - *ap->a_offset, *ap->a_len); in nfs_deallocate() 3727 *ap->a_len = 0; in nfs_deallocate() 3764 if (clipped && tlen < *ap->a_len) in nfs_deallocate() 3765 *ap->a_len -= tlen; in nfs_deallocate() 3767 *ap->a_len = 0; in nfs_deallocate()
|
/freebsd/contrib/unbound/validator/ |
H A D | autotrust.c | 1362 dnskey_compare_skip_revbit(uint8_t* a, size_t a_len, uint8_t* b, size_t b_len) in dnskey_compare_skip_revbit() argument 1365 if(a_len != b_len) in dnskey_compare_skip_revbit() 1368 for(i = 0; i < a_len; i++) in dnskey_compare_skip_revbit()
|
/freebsd/contrib/bearssl/test/ |
H A D | test_crypto.c | 7214 size_t a_len; in test_GHASH() local 7222 a_len = hextobin(a, KAT_GHASH[u + 1]); in test_GHASH() 7226 gh(y, h, a, a_len); in test_GHASH() 7229 br_enc32be(p + 4, (uint32_t)a_len << 3); in test_GHASH()
|
/freebsd/sys/fs/fuse/ |
H A D | fuse_vnops.c | 588 off_t *len = ap->a_len; in fuse_vnop_allocate() 3001 off_t *len = ap->a_len; in fuse_vnop_deallocate()
|
/freebsd/sys/contrib/openzfs/module/os/freebsd/zfs/ |
H A D | zfs_vnops_os.c | 6122 len = *ap->a_len; in zfs_deallocate() 6128 *ap->a_len = 0; in zfs_deallocate() 6139 *ap->a_len = 0; in zfs_deallocate()
|
/freebsd/sys/fs/tmpfs/ |
H A D | tmpfs_vnops.c | 723 return (tmpfs_reg_punch_hole(v->a_vp, v->a_offset, v->a_len)); in tmpfs_deallocate()
|