Home
last modified time | relevance | path

Searched refs:cursz (Results 1 – 6 of 6) sorted by relevance

/freebsd/contrib/unbound/util/
H A Dalloc.c436 size_t cursz; in unbound_stat_realloc() local
447 memcpy(&cursz, ptr, sizeof(cursz)); in unbound_stat_realloc()
448 if(cursz == size) { in unbound_stat_realloc()
456 unbound_mem_freed += cursz; in unbound_stat_realloc()
457 log_info("stat realloc(%p, %u) from %u", ptr+16, (unsigned)size, (unsigned)cursz); in unbound_stat_realloc()
458 if(cursz > size) { in unbound_stat_realloc()
460 } else if(size > cursz) { in unbound_stat_realloc()
461 memcpy(res+16, ptr+16, cursz); in unbound_stat_realloc()
/freebsd/sys/kern/
H A Dsubr_stats.c112 uint16_t cursz; member
121 _Static_assert(offsetof(struct statsblobv1, cursz) +
122 SIZEOF_MEMBER(struct statsblobv1, cursz) ==
443 tpl->mb->tplhash = hash32_buf(tpl->sb, tpl->sb->cursz,
1086 src->cursz < sizeof(struct statsblob) ||
1091 *dst = stats_realloc(NULL, 0, src->cursz, 0);
1093 (*dst)->maxsz = dstmaxsz = src->cursz;
1124 if (dstmaxsz >= src->cursz) {
1125 postcurszlen = src->cursz -
1126 offsetof(struct statsblob, cursz);
[all …]
/freebsd/contrib/netcat/
H A Dnetcat.c1316 if (errno == EOVERFLOW && statsb->cursz > sockoptlen) { in FreeBSD_stats_print()
1318 sockoptlen = statsb->cursz; in FreeBSD_stats_print()
/freebsd/contrib/llvm-project/openmp/runtime/src/
H A Dz_Linux_util.cpp2159 size_t cursz = cur->kve_structsize; in __kmp_is_address_mapped() local
2160 if (cursz == 0) in __kmp_is_address_mapped()
2172 lw += cursz; in __kmp_is_address_mapped()
/freebsd/sys/sys/
H A Dstats.h637 uint16_t cursz; member
/freebsd/sys/netinet/
H A Dtcp_usrreq.c2526 else if (outsbsz >= tp->t_stats->cursz) in tcp_default_ctloutput()
2527 outsbsz = tp->t_stats->cursz; in tcp_default_ctloutput()