Searched refs:total (Results 176 - 200 of 354) sorted by relevance

1234567891011>>

/freebsd-11-stable/contrib/lua/src/
H A Dlvm.h107 LUAI_FUNC void luaV_concat (lua_State *L, int total);
/freebsd-11-stable/contrib/wpa/src/utils/
H A Dos_unix.c397 unsigned long total = 0; local
399 total += a->len;
410 if (total)
411 wpa_printf(MSG_INFO, "MEMLEAK: total %lu bytes",
412 (unsigned long) total);
525 ; /* determine total src string length */
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_thread_registry.h93 void GetNumberOfThreads(uptr *total = nullptr, uptr *running = nullptr,
/freebsd-11-stable/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/
H A Dsa.c538 dmu_buf_t *db, sa_buf_type_t buftype, int *index, int *total,
548 *total = 0;
555 *total = 0;
568 *total = P2ROUNDUP(*total, 8);
569 *total += attr_desc[i].sa_length;
585 *total < full_space) {
612 (*total + P2ROUNDUP(hdrsize, 8)) >
617 if ((*total + P2ROUNDUP(hdrsize, 8)) > full_space &&
629 #define BUF_SPACE_NEEDED(total, heade
537 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-11-stable/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-11-stable/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-11-stable/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/lua/
H A Dlvm.c293 void luaV_concat (lua_State *L, int total) { argument
294 lua_assert(total >= 2);
312 /* collect total length */
313 for (i = 1; i < total && tostring(L, top-i-1); i++) {
329 total -= n-1; /* got 'n' strings to create 1 new */
331 } while (total > 1); /* repeat until only 1 result left */
511 int total = cast_int(top - 1 - (base + b)); /* yet to concatenate */ local
513 if (total > 1) { /* are there elements to concat? */
515 luaV_concat(L, total); /* concat them (may yield again) */
/freebsd-11-stable/usr.sbin/ppp/
H A Dlink.c80 throughput_addin(&l->stats.total, n);
90 throughput_addout(&l->stats.total, n);
/freebsd-11-stable/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-11-stable/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-11-stable/crypto/openssh/
H A Dmisc.c310 long total, secs, multiplier = 1; local
315 total = 0;
357 if (total >= LONG_MAX - secs)
359 total += secs;
360 if (total < 0)
365 return total;
/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);
/freebsd-11-stable/contrib/nvi/ex/
H A Dex.c1826 long total, val; local
1966 total = 0;
2011 total += ecp->cp[0] == '+' ? 1 : -1;
2023 /* Get a signed long, add it to the total. */
2027 total, val)) != NUM_OK) {
2032 total += isneg ? -val : val;
2043 if (*isaddrp && total != 0) {
2044 if (total < 0) {
2045 if (-total > mp->lno) {
2052 if (!NPFITS(MAX_REC_NUMBER, mp->lno, total)) {
[all...]
/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/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-11-stable/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-11-stable/contrib/ncurses/ncurses/tty/
H A Dlib_mvcur.c516 repeated_append(string_desc * target, int total, int num, int repeat, const char *src) argument
523 total += num;
525 total = INFINITY;
530 total = INFINITY;
532 return total;
1302 * expected line speed. The `total estimated time' is
1308 * optimizer's effectiveness. Compare the total estimated times
1370 printf("%6d bps: %3.2f char-xmits overhead; total estimated time %15.2f\n",
/freebsd-11-stable/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-11-stable/tools/regression/net80211/ccmp/
H A Dtest_ccmp.c712 int i, pass, total; local
729 total = 0;
732 total++;
735 printf("%u of %u 802.11i AES-CCMP test vectors passed\n", pass, total);
740 return (pass == total ? 0 : -1);
/freebsd-11-stable/usr.sbin/ndp/
H A Dndp.c1320 sec2str(time_t total) argument
1329 days = total / 3600 / 24;
1330 hours = (total / 3600) % 24;
1331 mins = (total / 60) % 60;
1332 secs = total % 60;
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/
H A Dkmp_stats.cpp135 std::string statistic::format(char unit, bool total) const {
142 if (total)
149 if (total)
207 bins[bin].total += sample;
228 << formatSI(count(i), 9, ' ') << ", " << formatSI(total(i), 9, unit);
/freebsd-11-stable/contrib/gcc/config/mips/
H A Dmips.c2519 mips_rtx_costs (rtx x, int code, int outer_code, int *total)
2535 *total = 0;
2537 *total = COSTS_N_INSNS (1);
2545 *total = 0;
2558 *total = 0;
2566 *total = 0;
2581 *total = 0;
2588 *total = 0;
2601 *total = COSTS_N_INSNS (1);
2607 *total
2511 mips_rtx_costs(rtx x, int code, int outer_code, int *total) argument
[all...]
/freebsd-11-stable/contrib/binutils/opcodes/
H A Dsparc-dis.c425 int total;
433 total += hash_count[i];
437 min_count, max_count, (double) total / HASH_SIZE);
/freebsd-11-stable/sys/dev/drm2/
H A Ddrm_mm.c689 unsigned long total_used = 0, total_free = 0, total = 0; local
717 total = total_free + total_used;
719 printk(KERN_DEBUG "%s total: %lu, used %lu free %lu\n", prefix, total,
/freebsd-11-stable/sys/dev/drm2/i915/
H A Dintel_bios.c47 u16 total, current_size; local
52 total = bdb->bdb_size;
55 while (index < total) {

Completed in 436 milliseconds

1234567891011>>