• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/mp/

Lines Matching defs:c_mp

85 	MPOOL *c_mp, *mp;
123 c_mp = dbmp->reginfo[i].primary;
125 sp->st_map += c_mp->stat.st_map;
126 sp->st_cache_hit += c_mp->stat.st_cache_hit;
127 sp->st_cache_miss += c_mp->stat.st_cache_miss;
128 sp->st_page_create += c_mp->stat.st_page_create;
129 sp->st_page_in += c_mp->stat.st_page_in;
130 sp->st_page_out += c_mp->stat.st_page_out;
131 sp->st_ro_evict += c_mp->stat.st_ro_evict;
132 sp->st_rw_evict += c_mp->stat.st_rw_evict;
133 sp->st_page_trickle += c_mp->stat.st_page_trickle;
134 sp->st_pages += c_mp->stat.st_pages;
140 &dbmp->reginfo[i], c_mp, &sp->st_page_dirty);
142 sp->st_hash_buckets += c_mp->stat.st_hash_buckets;
143 sp->st_hash_searches += c_mp->stat.st_hash_searches;
144 sp->st_hash_longest += c_mp->stat.st_hash_longest;
145 sp->st_hash_examined += c_mp->stat.st_hash_examined;
151 env, &dbmp->reginfo[i], c_mp, sp, flags);
153 c_mp->mtx_region, &tmp_wait, &tmp_nowait);
156 sp->st_alloc += c_mp->stat.st_alloc;
157 sp->st_alloc_buckets += c_mp->stat.st_alloc_buckets;
159 c_mp->stat.st_alloc_max_buckets)
161 c_mp->stat.st_alloc_max_buckets;
162 sp->st_alloc_pages += c_mp->stat.st_alloc_pages;
164 c_mp->stat.st_alloc_max_pages)
166 c_mp->stat.st_alloc_max_pages;
170 __mutex_clear(env, c_mp->mtx_region);
173 st_bytes = c_mp->stat.st_bytes;
174 st_gbytes = c_mp->stat.st_gbytes;
175 st_hash_buckets = c_mp->stat.st_hash_buckets;
176 st_pages = c_mp->stat.st_pages;
177 memset(&c_mp->stat, 0, sizeof(c_mp->stat));
178 c_mp->stat.st_bytes = st_bytes;
179 c_mp->stat.st_gbytes = st_gbytes;
180 c_mp->stat.st_hash_buckets = st_hash_buckets;
181 c_mp->stat.st_pages = st_pages;
702 MPOOL *c_mp;
705 c_mp = reginfo->primary;
710 "BH hash table (%lu hash slots)", (u_long)c_mp->htab_buckets);
714 for (hp = R_ADDR(reginfo, c_mp->htab),
715 bucket = 0; bucket < c_mp->htab_buckets; ++hp, ++bucket) {