Searched refs:total (Results 151 - 175 of 311) sorted by relevance

1234567891011>>

/freebsd-9.3-release/contrib/nvi/common/
H A Dkey.c357 size_t total; local
374 total = gp->i_cnt + gp->i_next + nitems + TERM_PUSH_SHIFT;
375 if (total >= gp->i_nelem && v_event_grow(sp, MAX(total, 64)))
/freebsd-9.3-release/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/
H A Dspace_map.c299 uint64_t size, total, rt_space, nodes; local
343 total = 0;
352 total += size << sm->sm_shift;
395 VERIFY3U(range_tree_space(rt), ==, total); local
H A Dsa.c550 dmu_buf_t *db, sa_buf_type_t buftype, int *index, int *total,
561 *total = 0;
568 *total = 0;
582 *total = P2ROUNDUP(*total, 8);
583 *total += attr_desc[i].sa_length;
594 *total < full_space) {
619 (*total + P2ROUNDUP(hdrsize, 8)) >
626 if ((*total + P2ROUNDUP(hdrsize, 8)) > full_space &&
643 #define BUF_SPACE_NEEDED(total, heade
549 sa_find_sizes(sa_os_t *sa, sa_bulk_attr_t *attr_desc, int attr_count, dmu_buf_t *db, sa_buf_type_t buftype, int *index, int *total, boolean_t *will_spill) argument
[all...]
/freebsd-9.3-release/sys/dev/ce/
H A Dceddk.h109 unsigned long totsec; /* total seconds elapsed */
114 ce_gstat_t total; /* total statistics data */ member in struct:_ce_chan_t
/freebsd-9.3-release/sys/dev/siba/
H A Dsiba.c261 uint32_t total; local
262 total = sc->siba_ncores * SIBA_CORE_LEN;
270 sc->siba_maddr, sc->siba_maddr + total - 1, total, RF_ACTIVE);
/freebsd-9.3-release/sys/dev/sound/pcm/
H A Dbuffer.h49 volatile u_int64_t total, prev_total; member in struct:snd_dbuf
/freebsd-9.3-release/sys/xen/interface/
H A Dsysctl.h226 uint8_t total; /* total Px states */ member in struct:pm_px_stat
/freebsd-9.3-release/contrib/diff/src/
H A Ddiff3.c1144 size_t current_chunk_size, total;
1236 total = 0;
1240 size_t bytes_to_read = current_chunk_size - total;
1241 size_t bytes = block_read (fd, diff_result + total, bytes_to_read);
1242 total += bytes;
1255 if (total != 0 && diff_result[total-1] != '\n')
1288 return diff_result + total;
1140 size_t current_chunk_size, total; local
/freebsd-9.3-release/contrib/gcclibs/libcpp/
H A Dfiles.c548 ssize_t size, total, count; local
600 total = 0;
601 while ((count = read (file->fd, buf + total, size - total)) > 0)
603 total += count;
605 if (total == size)
620 if (regular && total != size && STAT_SIZE_RELIABLE (file->st))
625 buf, size, total, &file->st.st_size);
/freebsd-9.3-release/sys/dev/drm2/i915/
H A Di915_gem_execbuffer.c703 int i, total, ret; local
716 total = 0;
718 total += exec[i].relocation_count;
722 reloc = malloc(total * sizeof(*reloc), DRM_I915_GEM, M_WAITOK | M_ZERO);
724 total = 0;
729 ret = -copyin(user_relocs, reloc + total,
736 reloc_offset[i] = total;
737 total += exec[i].relocation_count;
/freebsd-9.3-release/sys/ofed/drivers/net/mlx4/
H A Dmlx4.h256 int total; member in struct:mlx4_mac_table
267 int total; member in struct:mlx4_vlan_table
/freebsd-9.3-release/usr.sbin/ppp/
H A Dlink.c78 throughput_addin(&l->stats.total, n);
88 throughput_addout(&l->stats.total, n);
/freebsd-9.3-release/contrib/libstdc++/scripts/
H A Dmake_graph.py51 total = 0
53 total = total + result[1]
54 return total
60 total = self.__accum(results)
61 cntnrs_and_totals.append((cntnr, total))
/freebsd-9.3-release/lib/libkse/test/
H A Dmutex_d.c170 static int error_count = 0, pass_count = 0, total = 0; variable
209 total = total + 1;
218 total = total + 1;
1535 total, pass_count, error_count);
/freebsd-9.3-release/lib/libvgl/
H A Dsimple.c503 int i, total = 0; local
527 total = object->VXsize*object->VYsize*object->PixelBytes;
528 for (i = 0; i < total; i += object->PixelBytes)
536 total = object->VXsize*object->VYsize*object->PixelBytes;
537 for (offset = 0; offset < total; ) {
539 len = min(total - offset, VGLAdpInfo.va_window_size);
/freebsd-9.3-release/usr.sbin/sysinstall/
H A Ddist.c475 int j, status, total, intr; local
573 total = 0;
635 total += n;
651 total, dist, chunk + 1, numchunks,
652 (total / seconds) / 1000.0);
669 if ((buf[j] != 0x0d) || (j == total - 1) || (buf[j + 1] != 0x0a)) {
/freebsd-9.3-release/contrib/nvi/ex/
H A Dex.c1825 long total, val; local
1965 total = 0;
2010 total += ecp->cp[0] == '+' ? 1 : -1;
2022 /* Get a signed long, add it to the total. */
2026 total, val)) != NUM_OK) {
2031 total += isneg ? -val : val;
2042 if (*isaddrp && total != 0) {
2043 if (total < 0) {
2044 if (-total > mp->lno) {
2051 if (!NPFITS(MAX_REC_NUMBER, mp->lno, total)) {
[all...]
/freebsd-9.3-release/sys/kern/
H A Duipc_mbuf.c891 /* Check correct total mbuf length */
1730 ssize_t total; local
1735 * the total data supplied by the uio.
1738 total = min(uio->uio_resid, len);
1740 total = uio->uio_resid;
1753 m = m_getm2(NULL, max(total + align, 1), how, MT_DATA, flags);
1760 length = min(M_TRAILINGSPACE(mb), total - progress);
1773 KASSERT(progress == total, ("%s: progress != total", __func__));
1784 int error, length, total; local
[all...]
/freebsd-9.3-release/contrib/bind9/lib/isc/
H A Dmem.c141 size_t total; member in struct:isc__mem
543 if (ctx->quota != 0U && ctx->total + increment > ctx->quota)
570 ctx->total += increment;
668 if (ctx->quota != 0U && ctx->total + size > ctx->quota) {
677 ctx->total += size;
754 INSIST(size <= ctx->total);
756 ctx->total -= size;
834 ctx->total += size;
941 ctx->total = 0;
2345 isc_uint64_t total; member in struct:summarystat
[all...]
/freebsd-9.3-release/contrib/ntp/lib/isc/
H A Dmem.c141 size_t total; member in struct:isc__mem
542 if (ctx->quota != 0U && ctx->total + increment > ctx->quota)
569 ctx->total += increment;
667 if (ctx->quota != 0U && ctx->total + size > ctx->quota) {
676 ctx->total += size;
753 INSIST(size <= ctx->total);
755 ctx->total -= size;
833 ctx->total += size;
940 ctx->total = 0;
2332 isc_uint64_t total; member in struct:summarystat
[all...]
/freebsd-9.3-release/contrib/gcc/config/s390/
H A Ds390.c2111 s390_rtx_costs (rtx x, int code, int outer_code, int *total) argument
2121 *total = 0;
2134 *total = COSTS_N_INSNS (1);
2146 *total = s390_cost->madbr;
2148 *total = s390_cost->maebr;
2149 *total += rtx_cost (XEXP (XEXP (x, 0), 0), MULT)
2154 *total = COSTS_N_INSNS (1);
2166 *total = s390_cost->mhi;
2168 *total = s390_cost->mh;
2170 *total
[all...]
/freebsd-9.3-release/contrib/groff/src/preproc/refer/
H A Dlabel.y39 int total;
663 && (lp == 0 || lp->total > 1)
868 label_ptr->total = 2; // force use of disambiguator
947 : start(label_pool.length()), length(s.length()), count(0), total(1)
974 (*ptr)->total += 1;
/freebsd-9.3-release/contrib/ncurses/ncurses/tty/
H A Dlib_mvcur.c460 repeated_append(string_desc * target, int total, int num, int repeat, const char *src) argument
467 total += num;
469 total = INFINITY;
474 total = INFINITY;
476 return total;
1143 * expected line speed. The `total estimated time' is
1149 * optimizer's effectiveness. Compare the total estimated times
1211 printf("%6d bps: %3.2f char-xmits overhead; total estimated time %15.2f\n",
/freebsd-9.3-release/contrib/tcpdump/
H A Dprint-smb.c1097 int total, i; local
1156 total = ancount + nscount + arcount;
1158 if (qdcount > 100 || total > 100) {
1174 if (total) {
1176 for (i = 0; i < total; i++) {
/freebsd-9.3-release/crypto/openssh/
H A Dmisc.c309 long total, secs; local
314 total = 0;
353 total += secs;
354 if (total < 0)
359 return total;

Completed in 179 milliseconds

1234567891011>>