Searched refs:hits (Results 1 - 25 of 28) sorted by relevance

12

/freebsd-10-stable/usr.bin/systat/
H A Dzarc.c53 struct zfield hits; member in struct:zarcstats
81 "rate", "hits", "misses", "total hits", "total misses");
96 static int calc(uint64_t hits, uint64_t misses) argument
98 if( hits )
99 return 100 * hits / ( hits + misses );
108 delta->hits.stat = (curstat.hits.stat - oldstat.hits
[all...]
/freebsd-10-stable/cddl/contrib/dtracetoolkit/Bin/
H A Dmmapfiles.d54 @hits[execname, self->vpath] = count();
61 printa("%@5d %-16s %s\n", @hits);
/freebsd-10-stable/cddl/contrib/dtracetoolkit/Proc/
H A Dmmapfiles.d54 @hits[execname, self->vpath] = count();
61 printa("%@5d %-16s %s\n", @hits);
/freebsd-10-stable/contrib/bmake/
H A Ddir.h84 int hits; /* the number of times a file in this member in struct:Path
H A Ddir.c228 static int hits, /* Found in directory cache */ variable
360 dotLast->hits = 0;
958 p->hits += 1;
959 hits += 1;
1059 p->hits += 1;
1060 hits += 1;
1088 hits += 1;
1089 dot->hits += 1;
1097 hits += 1;
1098 cur->hits
[all...]
/freebsd-10-stable/contrib/subversion/subversion/libsvn_subr/
H A Dcache.c93 cache->hits++;
185 cache->hits++;
217 info->hits = cache->hits;
235 cache->hits = 0;
250 apr_uint64_t misses = info->gets - info->hits;
251 double hit_rate = (100.0 * (double)info->hits)
284 ", %" APR_UINT64_T_FMT " hits (%5.2f%%)\n"
289 info->hits, hit_rate,
295 ", %" APR_UINT64_T_FMT " hits (
[all...]
H A Dcache.h104 apr_uint64_t hits; member in struct:svn_cache__t
/freebsd-10-stable/usr.bin/make/
H A Ddir.c181 int hits; /* No. of times a file has been found here */ member in struct:Dir
206 static int hits; /* Found in directory cache */ variable
664 hits += 1;
665 dot->hits += 1;
707 pe->dir->hits += 1;
708 hits += 1;
1045 d->hits = 0;
1201 printf("# Stats: %d hits %d misses %d near misses %d losers (%d%%)\n",
1202 hits, misses, nearmisses, bigmisses,
1203 (hits
[all...]
/freebsd-10-stable/contrib/ipfilter/ipsd/
H A Dipsd.c188 (void) sprintf(fname, "/var/log/ipsd/ipsd-hits.%d", nwrites);
233 int hits = 0; local
236 hits += readloop(fd, ip);
237 if (hits > writecount) {
239 hits = 0;
/freebsd-10-stable/sys/xen/interface/xsm/
H A Dflask_op.h124 uint32_t hits; member in struct:xen_flask_cache_stats
/freebsd-10-stable/contrib/tcsh/
H A Dsh.hist.c532 * One bin for each number of hits. */
538 unsigned hits = hashes[i]; local
539 if (hits >= sizeof(bins)/sizeof(bins[0])) /* clip */
540 hits = highest = sizeof(bins)/sizeof(bins[0]) - 1;
541 if (hits > highest)
542 highest = hits;
543 bins[hits]++;
548 xprintf(" %d buckets (%d%%) with %d hits\n",
559 unsigned hits = hashes[i]; local
560 if (hits
[all...]
H A Dsh.exec.c138 static int hits, misses; variable
272 hits++;
317 hits--;
794 if (hits + misses)
795 xprintf(CGETS(13, 4, "%d hits, %d misses, %d%%\n"),
796 hits, misses, 100 * hits / (hits + misses));
/freebsd-10-stable/contrib/libarchive/libarchive/
H A Darchive_read_disk_set_standard_lookup.c67 int hits; member in struct:name_cache
154 cache->hits++;
/freebsd-10-stable/contrib/subversion/subversion/include/private/
H A Dsvn_cache.h142 apr_uint64_t hits;
141 apr_uint64_t hits; member in struct:svn_cache__info_t
/freebsd-10-stable/contrib/binutils/libiberty/
H A Dalloca.c288 long hits; /* Number of internal buffer hits. */ member in struct:stk_stat
/freebsd-10-stable/contrib/gcclibs/libiberty/
H A Dalloca.c288 long hits; /* Number of internal buffer hits. */ member in struct:stk_stat
/freebsd-10-stable/usr.bin/nfsstat/
H A Dnfsstat.c683 sperc1(int hits, int misses) argument
687 if (hits + misses) {
689 (int)(char)((quad_t)hits * 100 / (hits + misses)));
/freebsd-10-stable/sys/dev/cxgbe/
H A Dt4_ioctl.h180 uint32_t hitcnts:1; /* count filter hits in TCB */
215 uint64_t hits; member in struct:t4_filter
H A Dt4_main.c8310 uint64_t hits; local
8312 read_via_memwin(sc, 0, tcb_addr + 16, (uint32_t *)&hits, 8);
8313 return (be64toh(hits));
8315 uint32_t hits; local
8317 read_via_memwin(sc, 0, tcb_addr + 24, &hits, 4);
8318 return (be32toh(hits));
8346 t->hits = get_filter_hits(sc, t->idx);
8348 t->hits = UINT64_MAX;
/freebsd-10-stable/sys/fs/pseudofs/
H A Dpseudofs_vncache.c70 SYSCTL_INT(_vfs_pfs_vncache, OID_AUTO, hits, CTLFLAG_RD,
72 "number of cache hits since initialization");
/freebsd-10-stable/sys/ofed/drivers/infiniband/hw/mlx4/
H A Dmain.c1398 u8 *hits; local
1410 hits = kzalloc(128, GFP_ATOMIC);
1411 if (!hits) {
1436 hits[i] = 1;
1450 hits[0] = 1;
1453 hits[index_free] = 1;
1467 if (!hits[i]) {
1482 kfree(hits);
/freebsd-10-stable/contrib/libarchive/cpio/
H A Dcpio.c96 int hits; member in struct:name_cache
1375 cache->hits++;
/freebsd-10-stable/usr.sbin/cxgbetool/
H A Dcxgbetool.c778 if (t->hits == UINT64_MAX)
781 printf(" %8ju", t->hits);
/freebsd-10-stable/contrib/ntp/ntpq/
H A Dntpq-subs.c324 u_long hits; member in struct:reslist_row_tag
3568 " hits addr/prefix or addr mask\n"
3575 prow->hits, addrmaskstr, prow->flagstr);
3593 const char hits_fmt[] = "hits.%u";
3615 " hits addr/prefix or addr mask\n"
3654 1 == sscanf(val, "%lu", &row.hits))
/freebsd-10-stable/contrib/ipfilter/
H A DHISTORY1395 ipfstat returns same output for "hits" in "ipfstat -aio" - Terletsky Slavik

Completed in 230 milliseconds

12