Searched refs:total (Results 26 - 50 of 354) sorted by last modified time

1234567891011>>

/freebsd-11-stable/contrib/unbound/daemon/
H A Dunbound.c197 size_t total = numthread * perthread + misc; local
201 if(total > 1024 &&
213 total = 1024;
227 total = numthread*(perthread_noudp+
236 if((size_t)rlim.rlim_cur < total) {
238 rlim.rlim_cur = (rlim_t)(total + 10);
239 rlim.rlim_max = (rlim_t)(total + 10);
245 (unsigned)avail, (unsigned)total+10);
262 (unsigned)avail, (unsigned)total+10);
H A Dstats.c401 void server_stats_add(struct ub_stats_info* total, struct ub_stats_info* a) argument
403 total->svr.num_queries += a->svr.num_queries;
404 total->svr.num_queries_ip_ratelimited += a->svr.num_queries_ip_ratelimited;
405 total->svr.num_queries_missed_cache += a->svr.num_queries_missed_cache;
406 total->svr.num_queries_prefetch += a->svr.num_queries_prefetch;
407 total->svr.sum_query_list_size += a->svr.sum_query_list_size;
408 total->svr.ans_expired += a->svr.ans_expired;
410 total->svr.num_query_dnscrypt_crypted += a->svr.num_query_dnscrypt_crypted;
411 total->svr.num_query_dnscrypt_cert += a->svr.num_query_dnscrypt_cert;
412 total
[all...]
/freebsd-11-stable/contrib/unbound/contrib/
H A Dunbound_munin_114 ABBREV="-e s/total/t/ -e s/thread/t/ -e s/num/n/ -e s/query/q/ -e s/answer/a/ -e s/unwanted/u/ -e s/requestlist/ql/ -e s/type/t/ -e s/class/c/ -e s/opcode/o/ -e s/rcode/r/ -e s/edns/e/ -e s/mem/m/ -e s/cache/c/ -e s/mod/m/"
240 p_config "total.num.queries" "total queries from clients" "ABSOLUTE"
241 p_config "total.num.cachehits" "cache hits" "ABSOLUTE"
242 p_config "total.num.prefetch" "cache prefetch" "ABSOLUTE"
260 p_config "total.requestlist.avg" "Average size of queue on insert" "GAUGE"
261 p_config "total.requestlist.max" "Max size of queue (in 5 min)" "GAUGE"
262 p_config "total.requestlist.overwritten" "Number of queries replaced by new ones" "GAUGE"
263 p_config "total.requestlist.exceeded" "Number of queries dropped due to lack of space" "GAUGE"
446 sed -e 's/=.*//'` total
[all...]
/freebsd-11-stable/contrib/elftoolchain/elfdump/
H A Delfdump.c2142 uint32_t *bl, *c, maxl, total; local
2205 total = 0;
2207 total += c[i] * i;
2211 total);
2232 uint64_t *bl, *c, j, maxl, total; local
2307 total = 0;
2309 total += c[i] * i;
2314 (uintmax_t)nbucket, (uintmax_t)total);
2337 uint32_t *bl, *c, maxl, total; local
2417 total
[all...]
/freebsd-11-stable/contrib/unbound/validator/
H A Dval_sigcrypt.c393 size_t i, total = n->num; local
402 sigalg[total] = algo;
403 total++;
406 sigalg[total] = 0;
407 n->num = total;
413 size_t total = 0; local
420 total++;
422 n->num = total;
429 size_t i, total = 0; local
442 sigalg[total]
[all...]
/freebsd-11-stable/cddl/contrib/opensolaris/lib/libzfs/common/
H A Dlibzfs_sendrecv.c1110 unsigned long long bytes, total; local
1957 "total estimated size is %s\n"), buf);
2067 "total estimated size is %s\n"), buf);
3852 * Return 0 on total success, -2 if some things couldn't be
/freebsd-11-stable/sys/kern/
H A Duipc_mbuf.c661 /* Check correct total mbuf length */
1516 ssize_t total; local
1521 * the total data supplied by the uio.
1524 total = min(uio->uio_resid, len);
1526 total = uio->uio_resid;
1539 m = m_getm2(NULL, max(total + align, 1), how, MT_DATA, flags);
1546 length = min(M_TRAILINGSPACE(mb), total - progress);
1559 KASSERT(progress == total, ("%s: progress != total", __func__));
1570 int error, length, total; local
[all...]
/freebsd-11-stable/cddl/contrib/opensolaris/cmd/zpool/
H A Dzpool_main.c4416 uint64_t pass_scanned, scanned, pass_issued, issued, total; local
4499 total = ps->pss_to_examine;
4502 fraction_done = (double)issued / total;
4512 ((total - issued) / issue_rate) : UINT64_MAX;
4522 zfs_nicenum(total, total_buf, sizeof (total_buf));
4529 "%s issued at %s/s, %s total\n"),
4532 (void) printf(gettext("\t%s scanned, %s issued, %s total\n"),
4644 uint64_t copied, total, elapsed, mins_left, hours_left; local
4658 total = prs->prs_to_copy;
4659 fraction_done = (double)copied / total;
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-size/
H A Dllvm-size.cpp10 // that is, it prints out the size of each section, and the total size of all
221 uint64_t total = 0; local
231 total += Seg.vmsize;
258 total += Seg.vmsize;
279 outs() << "total " << format(fmt.str().c_str(), total) << "\n";
346 uint64_t total = total_text + total_data + total_objc + total_others; local
353 << total_others << "\t" << total << "\t" << format("%" PRIx64, total)
361 uint64_t total local
[all...]
/freebsd-11-stable/contrib/sendmail/src/
H A Dstab.c458 int i, t, total, types[MAXSTTYPES]; local
462 total = 0;
470 ++total;
478 sm_syslog(LOG_INFO, NOQID, "stab: total=%d (%d)", total, total - prev);
479 prev = total;
H A Dsfsasl.c294 size_t ret = 0, total = 0; local
334 &outbuf[total], outlen);
338 total += ret;
/freebsd-11-stable/usr.bin/top/
H A Dmachine.c224 /* total number of io operations */
252 "total", "read", "write", "fault", "vcsw", "ivcsw",
491 long total; local
683 * Return the total amount of IO done in blocks in/out and faults.
729 * interval, charge it's total runtime to the previous
758 * Return the total number of block in/out and faults by a process.
930 /* remember active and total counts */
1301 * percent cpu, cpu ticks, state, resident set size, total virtual
1430 /* compare_size - the comparison function for sorting by total memory usage */
1466 /* compare_time - the comparison function for sorting by total cp
[all...]
/freebsd-11-stable/contrib/ntp/ntpd/
H A Drefclock_nmea.c259 u_int total; member in struct:__anon11::__anon12
702 up->tally.total++;
1154 up->tally.total, up->tally.accepted,
1340 * function is called repeatedly with increasing indices, the total load
1342 * decreasing indices, the total load is O(n^2). Try not to go backwards
/freebsd-11-stable/contrib/subversion/subversion/svnfsfs/
H A Dstats-cmd.c79 svn__ui64toa_sep(stats->total.packed_size, ',', pool),
80 svn__ui64toa_sep(stats->total.count, ',', pool),
83 svn__ui64toa_sep(stats->total.expanded_size, ',', pool),
86 svn__ui64toa_sep(stats->references - stats->total.count, ',', pool),
87 stats->chain_len / MAX(1.0, (double)stats->total.count));
127 (int)(histogram->lines[i].sum * 100 / histogram->total.sum),
129 (int)(histogram->lines[i].count * 100 / histogram->total.count));
133 * Sort extension_info_t values by total count in descending order.
141 apr_int64_t diff = lhs->node_histogram.total.count
142 - rhs->node_histogram.total
267 get_percentage(apr_uint64_t part, apr_uint64_t total) argument
[all...]
/freebsd-11-stable/contrib/subversion/subversion/svnbench/
H A Dsvnbench.c354 apr_off_t total,
350 ra_progress_func(apr_off_t progress, apr_off_t total, void *baton, apr_pool_t *pool) argument
/freebsd-11-stable/contrib/subversion/subversion/libsvn_subr/
H A Dstring.c626 total_len = str->len + count; /* total size needed */
773 * data and track the total length in STR->LEN to make the reallocation
1424 const apr_size_t total = lena + lenb;
1503 if (total)
1504 return ((2 * SVN_STRING__SIM_RANGE_MAX * lcs + total/2) / total);
1419 const apr_size_t total = lena + lenb; local
/freebsd-11-stable/contrib/subversion/subversion/libsvn_fs_x/
H A Dstring_table.c351 apr_size_t total = 0;
359 /* total number of chars to store,
370 total += table_size;
375 return 200 + total / 2;
348 apr_size_t total = 0; local
/freebsd-11-stable/contrib/subversion/subversion/libsvn_fs_fs/
H A Dstats.c152 /* total size of directory noderevs (i.e. the structs - not the rep) */
155 /* total size of file noderevs (i.e. the structs - not the rep) */
252 histogram->total.count++;
253 histogram->total.sum += size;
1035 /* record the whole pack size in the first rev so the total sum will
1249 add_rep_pack_stats(&stats->total, rep);
/freebsd-11-stable/contrib/subversion/subversion/libsvn_client/
H A Dra.c297 * for different RA sessions and reports total progress to caller. */
300 apr_off_t total,
314 /* All RA implementations currently provide -1 for total. So it doesn't
315 make sense to develop some complex logic to combine total across all
296 progress_func(apr_off_t progress, apr_off_t total, void *baton, apr_pool_t *pool) argument
/freebsd-11-stable/contrib/subversion/subversion/include/private/
H A Dsvn_fs_fs_private.h96 /* total sum over all brackets */ member in struct:svn_fs_fs__histogram_t
97 svn_fs_fs__histogram_line_t total;
126 /* total size after deltification (i.e. on disk size) */
129 /* total size after de-deltification (i.e. plain text size) */
132 /* total on-disk header size */
142 svn_fs_fs__rep_pack_stats_t total;
154 * i.e. total plaintext content if there was no rep sharing */
168 /* their total size on disk (structs only) */
177 /* sum total of all rev / pack file sizes in bytes */
183 /* total numbe
141 svn_fs_fs__rep_pack_stats_t total; member in struct:svn_fs_fs__representation_stats_t
[all...]
/freebsd-11-stable/contrib/libarchive/libarchive/
H A Darchive_read_support_filter_program.c464 size_t total; local
469 total = 0;
471 while (state->child_stdout != -1 && total < state->out_buf_len) {
472 bytes = child_read(self, p, state->out_buf_len - total);
480 total += bytes;
485 return (total);
/freebsd-11-stable/sys/ufs/ffs/
H A Dffs_softdep.c622 static SYSCTL_NODE(_debug_softdep, OID_AUTO, total, CTLFLAG_RW, 0,
623 "total dependencies allocated");
6418 * is the current total and length is the new file size.
14291 * the current number and the total number allocated. These will
/freebsd-11-stable/sys/netgraph/bluetooth/drivers/ubt/
H A Dng_ubt.c1111 int len, want, got, total; local
1116 total = usbd_xfer_frame_len(xfer, frame_no);
1119 while (total > 0) {
1151 len = total;
1160 total -= len;
/freebsd-11-stable/sys/cddl/contrib/opensolaris/uts/common/dtrace/
H A Ddtrace.c12202 size_t total;
12246 total = needed + (offs & (align - 1));
12255 offs + total > buf->dtb_size) {
12258 if (offs + total > buf->dtb_size) {
12263 if (total > buf->dtb_size) {
12306 total = needed;
12332 while (offs + total > woffs) {
12372 woffs = total;
13719 dtrace_dof_error(dof, "section entry size exceeds total size");
/freebsd-11-stable/usr.sbin/bhyve/
H A Drfb.c315 ssize_t nwrite, total; local
380 total = 0;
385 total += w;
395 total = stream_write(cfd, rc->zbuf, total);
397 return (total);

Completed in 351 milliseconds

1234567891011>>