Searched refs:total (Results 251 - 275 of 479) sorted by relevance

<<11121314151617181920

/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libcpp/
H A Dfiles.c601 ssize_t size, total, count; local
637 total = 0;
638 while ((count = read (file->fd, buf + total, size - total)) > 0)
640 total += count;
642 if (total == size)
657 if (regular && total != size && STAT_SIZE_RELIABLE (file->st))
663 buf, size, total,
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/config/mn10300/
H A Dmn10300.c2022 mn10300_rtx_costs (rtx x, int code, int outer_code, int *total)
2029 *total = 0;
2032 *total = 1;
2038 *total = 2;
2040 *total = 4;
2048 *total = 6;
2054 *total = 8;
2061 *total = 8;
2019 mn10300_rtx_costs(rtx x, int code, int outer_code, int *total) argument
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/libcpp/
H A Dfiles.c508 ssize_t size, total, count; local
544 total = 0;
545 while ((count = read (file->fd, buf + total, size - total)) > 0)
547 total += count;
549 if (total == size)
564 if (regular && total != size && STAT_SIZE_RELIABLE (file->st))
569 buf, size, total, &file->st.st_size);
/netbsd-6-1-5-RELEASE/sbin/rndctl/
H A Drndctl.c298 rstat_name.source.total,
326 rstat.source[i].total,
/netbsd-6-1-5-RELEASE/gnu/dist/diffutils/src/
H A Ddiff3.c1150 size_t current_chunk_size, total;
1228 total = 0;
1232 size_t bytes_to_read = current_chunk_size - total;
1233 size_t bytes = block_read (fd, diff_result + total, bytes_to_read);
1234 total += bytes;
1247 if (total != 0 && diff_result[total-1] != '\n')
1281 return diff_result + total;
1146 size_t current_chunk_size, total; local
/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/sim/common/
H A Dcgen-trace.c99 /* The first thing printed is current and total cycle counts. */
104 unsigned long total = PROFILE_MODEL_TOTAL_CYCLES (CPU_PROFILE_DATA (cpu)); local
111 SIZE_TOTAL_CYCLE_COUNT, total);
/netbsd-6-1-5-RELEASE/sys/ufs/chfs/
H A Dchfs_subr.c69 * If 'total' is true, the value returned is the total amount of memory
78 chfs_mem_info(bool total) argument
84 if (!total) {
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/
H A Dmcf.c1257 int total = 0; local
1260 total++;
1261 if (total)
1266 e->probability = REG_BR_PROB_BASE / total;
1273 total += EDGE_COUNT (bb->succs);
1275 e->probability = REG_BR_PROB_BASE / total;
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/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))
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/config/cris/
H A Dcris.c1788 cris_rtx_costs (rtx x, int code, int outer_code, int *total, argument
1797 *total = 0;
1799 *total = 1;
1802 *total = 2;
1806 *total = 4;
1811 *total = 6;
1816 *total = 6;
1821 *total = 12;
1824 *total = 0;
1839 *total
[all...]
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/config/sparc/
H A Dsparc.c8223 sparc_rtx_costs (rtx x, int code, int outer_code, int *total)
8233 *total = 0;
8239 *total = 2;
8245 *total = 4;
8255 *total = 0;
8257 *total = 8;
8266 *total = sparc_costs->int_zload - COSTS_N_INSNS (1);
8270 *total = sparc_costs->int_sload - COSTS_N_INSNS (1);
8274 *total = sparc_costs->float_load;
8278 *total
8197 sparc_rtx_costs(rtx x, int code, int outer_code, int *total) argument
[all...]
/netbsd-6-1-5-RELEASE/dist/nvi/ex/
H A Dex.c1832 long total, val; local
1973 total = 0;
2018 total += ecp->cp[0] == '+' ? 1 : -1;
2030 /* Get a signed long, add it to the total. */
2034 total, val)) != NUM_OK) {
2039 total += isneg ? -val : val;
2050 if (*isaddrp && total != 0) {
2051 if (total < 0) {
2052 if ((db_recno_t)-total > mp->lno) {
2059 if (!NPFITS(DB_MAX_RECORDS, mp->lno, (unsigned long)total)) {
[all...]
/netbsd-6-1-5-RELEASE/external/bsd/bind/dist/lib/isc/
H A Dmem.c143 size_t total; member in struct:isc__mem
544 if (ctx->quota != 0U && ctx->total + increment > ctx->quota)
571 ctx->total += increment;
669 if (ctx->quota != 0U && ctx->total + size > ctx->quota) {
678 ctx->total += size;
755 INSIST(size <= ctx->total);
757 ctx->total -= size;
835 ctx->total += size;
942 ctx->total = 0;
2338 isc_uint64_t total; member in struct:summarystat
[all...]
/netbsd-6-1-5-RELEASE/external/bsd/ntp/dist/lib/isc/
H A Dmem.c140 size_t total; member in struct:isc_mem
365 if (ctx->quota != 0U && ctx->total + increment > ctx->quota)
392 ctx->total += increment;
490 if (ctx->quota != 0U && ctx->total + size > ctx->quota) {
499 ctx->total += size;
576 INSIST(size <= ctx->total);
578 ctx->total -= size;
656 ctx->total += size;
763 ctx->total = 0;
2063 isc_uint64_t total; member in struct:summarystat
[all...]
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/config/cris/
H A Dcris.c1624 cris_rtx_costs (rtx x, int code, int outer_code, int *total) argument
1632 *total = 0;
1634 *total = 1;
1637 *total = 2;
1641 *total = 4;
1646 *total = 6;
1651 *total = 6;
1656 *total = 12;
1659 *total = 0;
1672 *total
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/config/arc/
H A Darc.c837 arc_rtx_costs (rtx x, int code, int outer_code ATTRIBUTE_UNUSED, int *total,
848 *total = 0;
856 *total = COSTS_N_INSNS (1);
863 *total = COSTS_N_INSNS (!SMALL_INT (INTVAL (high))
875 *total = COSTS_N_INSNS (1);
877 *total = COSTS_N_INSNS (16);
879 *total = COSTS_N_INSNS (INTVAL (XEXP ((x), 1)));
827 arc_rtx_costs(rtx x, int code, int outer_code ATTRIBUTE_UNUSED, int *total, bool speed ATTRIBUTE_UNUSED) argument
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/config/arc/
H A Darc.c840 arc_rtx_costs (rtx x, int code, int outer_code ATTRIBUTE_UNUSED, int *total)
850 *total = 0;
858 *total = COSTS_N_INSNS (1);
865 *total = COSTS_N_INSNS (!SMALL_INT (INTVAL (high))
877 *total = COSTS_N_INSNS (1);
879 *total = COSTS_N_INSNS (16);
881 *total = COSTS_N_INSNS (INTVAL (XEXP ((x), 1)));
831 arc_rtx_costs(rtx x, int code, int outer_code ATTRIBUTE_UNUSED, int *total) argument
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/config/s390/
H A Ds390.c2101 s390_rtx_costs (rtx x, int code, int outer_code, int *total) argument
2111 *total = 0;
2124 *total = COSTS_N_INSNS (1);
2136 *total = s390_cost->madbr;
2138 *total = s390_cost->maebr;
2139 *total += rtx_cost (XEXP (XEXP (x, 0), 0), MULT)
2144 *total = COSTS_N_INSNS (1);
2156 *total = s390_cost->mhi;
2158 *total = s390_cost->mh;
2160 *total
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/config/mn10300/
H A Dmn10300.c2083 mn10300_rtx_costs (rtx x, int code, int outer_code, int *total, bool speed ATTRIBUTE_UNUSED)
2090 *total = 0;
2093 *total = 1;
2099 *total = 2;
2101 *total = 4;
2109 *total = 6;
2115 *total = 8;
2121 *total = 0;
2128 *total = 8;
2080 mn10300_rtx_costs(rtx x, int code, int outer_code, int *total, bool speed ATTRIBUTE_UNUSED) argument
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/config/v850/
H A Dv850.c468 int * total, bool speed)
479 *total = COSTS_N_INSNS (const_costs (x, code));
487 *total = 6;
489 *total = 60;
499 *total = 4;
503 *total = 6;
505 *total = 10;
509 *total = 20;
514 *total = 0;
458 v850_rtx_costs(rtx x, int codearg, int outer_code ATTRIBUTE_UNUSED, int * total, bool speed) argument
/netbsd-6-1-5-RELEASE/crypto/external/bsd/openssh/dist/
H A Dmisc.c294 long total, secs; local
299 total = 0;
338 total += secs;
339 if (total < 0)
344 return total;
/netbsd-6-1-5-RELEASE/dist/nvi/common/
H A Dmsg.c151 * blen: total length of the buffer
459 db_recno_t total; local
492 for (cnt = 0, total = 0; cnt < ARSIZE(action); ++cnt)
493 total += sp->rptlines[cnt];
494 if (total == 0)
496 if (total <= rptval && sp->rptlines[L_YANKED] < rptval) {
/netbsd-6-1-5-RELEASE/dist/pdisk/
H A DATA_media.c443 unsigned long total; local
469 total = info.lba_sectors;
475 total = info.total_sectors;
493 if (total == 0) {
496 a->m.size_in_bytes = ((long long)total) * a->m.grain;
/netbsd-6-1-5-RELEASE/external/bsd/tcpdump/dist/
H A Dprint-smb.c1102 int total, i; local
1161 total = ancount + nscount + arcount;
1163 if (qdcount > 100 || total > 100) {
1179 if (total) {
1181 for (i = 0; i < total; i++) {
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/config/m68k/
H A Dm68k.c2827 m68k_rtx_costs (rtx x, int code, int outer_code, int *total,
2835 *total = 0;
2837 *total = const_int_cost (INTVAL (x));
2843 *total = 3;
2851 *total = 4;
2853 *total = 5;
2896 *total = COSTS_N_INSNS (TARGET_COLDFIRE ? 2 : 3);
2906 *total = COSTS_N_INSNS(1);
2914 *total = COSTS_N_INSNS (2) + INTVAL (XEXP (x, 1)) / 2;
2917 *total
2817 m68k_rtx_costs(rtx x, int code, int outer_code, int *total, bool speed ATTRIBUTE_UNUSED) argument
[all...]

Completed in 329 milliseconds

<<11121314151617181920