Searched refs:total (Results 126 - 150 of 479) sorted by relevance

1234567891011>>

/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/sim/common/
H A Dsim-profile.c634 unsigned total;
644 total = 0;
647 total += PROFILE_PC_COUNT (profile) [i];
653 COMMAS (total));
685 (PROFILE_PC_COUNT (profile) [i] * 100.0) / total);
778 unsigned int i, n, total, max_val, max_name_len;
796 total = 0;
804 total += PROFILE_INSN_COUNT (data) [i];
811 /* set the total insn count, in case client is being lazy */
813 PROFILE_TOTAL_INSN_COUNT (data) = total;
632 unsigned total; local
775 unsigned int i, n, total, max_val, max_name_len; local
922 unsigned int total; local
1033 unsigned long total = PROFILE_TOTAL_INSN_COUNT (data); local
[all...]
/netbsd-6-1-5-RELEASE/gnu/dist/grep/src/
H A Dsearch.c183 size_t total = size; local
196 sep = memchr (motif, '\n', total);
201 total -= (len + 1);
205 len = total;
206 total = 0;
221 } while (sep && total != 0);
259 size_t total = size; local
280 sep = memchr (motif, '\n', total);
285 total -= (len + 1);
289 len = total;
[all...]
/netbsd-6-1-5-RELEASE/external/bsd/libarchive/dist/libarchive/
H A Darchive_read_support_compression_program.c418 size_t total; local
423 total = 0;
425 while (state->child_stdout != -1 && total < state->out_buf_len) {
426 bytes = child_read(self, p, state->out_buf_len - total);
434 total += bytes;
439 return (total);
/netbsd-6-1-5-RELEASE/external/cddl/osnet/dist/uts/common/fs/zfs/
H A Dspa_errlog.c170 uint64_t total = 0, count; local
176 total += count;
181 total += count;
185 total += avl_numnodes(&spa->spa_errlist_last);
186 total += avl_numnodes(&spa->spa_errlist_scrub);
189 return (total);
/netbsd-6-1-5-RELEASE/external/ibm-public/postfix/dist/src/postscreen/
H A Dpostscreen_dnsbl.c145 int total; /* combined blocklist score */ member in struct:__anon2462
329 result_score = score->total;
390 myname, STR(reply_client), score->total,
402 score->total += site->weight;
406 site->weight, score->total);
480 score->total = 0;
/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/sim/m32r/
H A Dm32r.c295 and we update the total cycle count.
303 unsigned long total = cycles + mp->cti_stall + mp->load_stall;
307 unsigned long biggest = total > mp->biggest_cycles ? total : mp->biggest_cycles;
309 PROFILE_MODEL_CUR_INSN_CYCLES (p) = total;
314 mp->biggest_cycles = total;
315 PROFILE_MODEL_CUR_INSN_CYCLES (p) = total;
319 total cycle count. */
301 unsigned long total = cycles + mp->cti_stall + mp->load_stall; local
/netbsd-6-1-5-RELEASE/sbin/fsck/
H A Dprogress.c86 * Display a progress bar, assuming that current/total represents a
90 progress_bar(const char *dev, const char *label, off_t current, off_t total) argument
116 (current * (progress_highlim - progress_lowlim)) / total;
/netbsd-6-1-5-RELEASE/games/dab/
H A Dmain.cc90 b.total(0, *p[0]);
91 b.total(1, *p[1]);
/netbsd-6-1-5-RELEASE/usr.sbin/makefs/
H A Dv7fs.c184 Progress.total++;
185 progress_bar(cdev, label, Progress.total, PROGRESS_BAR_GRANULE);
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/config/xtensa/
H A Dxtensa.c2528 and the total number of words must be a multiple of 128 bits. */
3201 xtensa_rtx_costs (rtx x, int code, int outer_code, int *total,
3212 *total = 4;
3220 *total = 0;
3227 *total = 0;
3234 *total = 0;
3247 *total = 5;
3249 *total = COSTS_N_INSNS (2);
3251 *total = 6;
3258 *total
3199 xtensa_rtx_costs(rtx x, int code, int outer_code, int *total, bool speed ATTRIBUTE_UNUSED) argument
[all...]
/netbsd-6-1-5-RELEASE/external/gpl2/xcvs/dist/lib/
H A Dmd5.c79 ctx->total[0] = ctx->total[1] = 0;
112 ctx->total[0] += bytes;
113 if (ctx->total[0] < bytes)
114 ++ctx->total[1];
120 *(md5_uint32 *) &ctx->buffer[bytes + pad] = SWAP (ctx->total[0] << 3);
121 *(md5_uint32 *) &ctx->buffer[bytes + pad + 4] = SWAP ((ctx->total[1] << 3) |
122 (ctx->total[0] >> 29));
310 ctx->total[0] += len;
311 if (ctx->total[
[all...]
H A Dmd5.h77 md5_uint32 total[2]; member in struct:md5_ctx
/netbsd-6-1-5-RELEASE/external/gpl3/binutils/dist/libiberty/
H A Dmd5.c72 ctx->total[0] = ctx->total[1] = 0;
105 ctx->total[0] += bytes;
106 if (ctx->total[0] < bytes)
107 ++ctx->total[1];
113 *(md5_uint32 *) &ctx->buffer[bytes + pad] = SWAP (ctx->total[0] << 3);
114 *(md5_uint32 *) &ctx->buffer[bytes + pad + 4] = SWAP ((ctx->total[1] << 3) |
115 (ctx->total[0] >> 29));
285 ctx->total[0] += len;
286 if (ctx->total[
[all...]
H A Dsha1.c66 ctx->total[0] = ctx->total[1] = 0;
100 ctx->total[0] += bytes;
101 if (ctx->total[0] < bytes)
102 ++ctx->total[1];
105 ctx->buffer[size - 2] = SWAP ((ctx->total[1] << 3) | (ctx->total[0] >> 29));
106 ctx->buffer[size - 1] = SWAP (ctx->total[0] << 3);
302 ctx->total[0] += len;
303 if (ctx->total[
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/
H A Dtree-dfa.c330 unsigned long size, total = 0; local
347 total += size;
352 total += size;
357 total += size;
362 total += size;
367 total += size;
372 total += size;
377 total += size;
382 total += size;
387 fprintf (file, fmt_str_3, "Total memory used by DFA/SSA data", SCALE (total),
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libiberty/
H A Dmd5.c72 ctx->total[0] = ctx->total[1] = 0;
105 ctx->total[0] += bytes;
106 if (ctx->total[0] < bytes)
107 ++ctx->total[1];
113 *(md5_uint32 *) &ctx->buffer[bytes + pad] = SWAP (ctx->total[0] << 3);
114 *(md5_uint32 *) &ctx->buffer[bytes + pad + 4] = SWAP ((ctx->total[1] << 3) |
115 (ctx->total[0] >> 29));
285 ctx->total[0] += len;
286 if (ctx->total[
[all...]
H A Dsha1.c66 ctx->total[0] = ctx->total[1] = 0;
100 ctx->total[0] += bytes;
101 if (ctx->total[0] < bytes)
102 ++ctx->total[1];
105 ctx->buffer[size - 2] = SWAP ((ctx->total[1] << 3) | (ctx->total[0] >> 29));
106 ctx->buffer[size - 1] = SWAP (ctx->total[0] << 3);
302 ctx->total[0] += len;
303 if (ctx->total[
[all...]
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/libiberty/
H A Dmd5.c72 ctx->total[0] = ctx->total[1] = 0;
105 ctx->total[0] += bytes;
106 if (ctx->total[0] < bytes)
107 ++ctx->total[1];
113 *(md5_uint32 *) &ctx->buffer[bytes + pad] = SWAP (ctx->total[0] << 3);
114 *(md5_uint32 *) &ctx->buffer[bytes + pad + 4] = SWAP ((ctx->total[1] << 3) |
115 (ctx->total[0] >> 29));
284 ctx->total[0] += len;
285 if (ctx->total[
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/libiberty/
H A Dmd5.c72 ctx->total[0] = ctx->total[1] = 0;
105 ctx->total[0] += bytes;
106 if (ctx->total[0] < bytes)
107 ++ctx->total[1];
113 *(md5_uint32 *) &ctx->buffer[bytes + pad] = SWAP (ctx->total[0] << 3);
114 *(md5_uint32 *) &ctx->buffer[bytes + pad + 4] = SWAP ((ctx->total[1] << 3) |
115 (ctx->total[0] >> 29));
285 ctx->total[0] += len;
286 if (ctx->total[
[all...]
H A Dsha1.c66 ctx->total[0] = ctx->total[1] = 0;
100 ctx->total[0] += bytes;
101 if (ctx->total[0] < bytes)
102 ++ctx->total[1];
105 ctx->buffer[size - 2] = SWAP ((ctx->total[1] << 3) | (ctx->total[0] >> 29));
106 ctx->buffer[size - 1] = SWAP (ctx->total[0] << 3);
302 ctx->total[0] += len;
303 if (ctx->total[
[all...]
/netbsd-6-1-5-RELEASE/sys/external/bsd/drm/dist/libdrm/intel/
H A Dintel_bufmgr_gem.c157 * the current drm_intel_bufmgr_check_aperture_space() total.
1234 int total = 0; local
1239 total += bo->size;
1243 total += drm_intel_gem_bo_get_aperture_space(bo_gem->reloc_target_bo[i]);
1245 return total;
1260 unsigned int total = 0; local
1268 total += bo_gem->reloc_tree_fences;
1270 return total;
1300 unsigned int total = 0; local
1305 total
1319 unsigned int total = 0; local
1362 unsigned int total = 0; local
[all...]
/netbsd-6-1-5-RELEASE/external/cddl/osnet/dist/tools/ctf/cvt/
H A Dstrtab.c210 ssize_t res, total = 0; local
214 for (i = 0; i < sp->str_nbufs; i++, total += res) {
224 if (total == 0 && sp->str_size != 0)
227 return (total);
/netbsd-6-1-5-RELEASE/external/mit/lua/dist/src/
H A Dlvm.h36 LUAI_FUNC void luaV_concat (lua_State *L, int total, int last);
/netbsd-6-1-5-RELEASE/sys/arch/ews4800mips/stand/common/
H A Dboot.c181 int i, size, total; local
195 total = 0;
199 total += size;
203 printf(" total %dMB\n", total);
/netbsd-6-1-5-RELEASE/external/public-domain/xz/dist/src/liblzma/common/
H A Dfilter_common.c305 uint64_t total = 0; local
321 total += 1024;
330 total += usage;
336 return total + LZMA_MEMUSAGE_BASE;

Completed in 257 milliseconds

1234567891011>>