Searched refs:hit (Results 1 - 25 of 62) sorted by relevance

123

/linux-master/drivers/isdn/mISDN/
H A Ddsp_ecdis.h25 int hit; member in struct:ec_disable_detector_state
50 det->hit = 0;
80 det->hit = TRUE;
93 return det->hit;
/linux-master/fs/exfat/
H A Dcache.c89 struct exfat_cache *hit = &nohit, *p; local
95 if (p->fcluster <= fclus && hit->fcluster < p->fcluster) {
96 hit = p;
97 if (hit->fcluster + hit->nr_contig < fclus) {
98 offset = hit->nr_contig;
100 offset = fclus - hit->fcluster;
105 if (hit != &nohit) {
106 exfat_cache_update_lru(inode, hit);
109 cid->nr_contig = hit
[all...]
/linux-master/tools/perf/util/
H A Dstream.c68 * The cnodes with high hit number are hot callchains.
74 u64 hit; local
85 * way to find the cnode with smallest hit number and replace.
87 hit = (es->streams[0].cnode)->hit;
89 if ((es->streams[i].cnode)->hit < hit) {
90 hit = (es->streams[i].cnode)->hit;
95 if (cnode->hit > hi
[all...]
H A Dcallchain.h71 u64 hit; member in struct:callchain_node
177 root->node.hit = 0;
185 return node->hit + node->children_hit;
H A Dcallchain.c397 if (rnode->hit < chain->hit)
434 if (node->hit && node->hit >= min_hit)
440 * sort them by hit
671 new->hit = period;
838 new->hit = parent->hit;
854 parent->hit = 0;
881 parent->hit
[all...]
/linux-master/fs/coda/
H A Dcache.c30 /* replace or extend an acl cache hit */
65 int hit; local
68 hit = (mask & cii->c_cached_perm) == mask &&
73 return hit;
/linux-master/fs/fat/
H A Dcache.c86 struct fat_cache *hit = &nohit, *p; local
92 if (p->fcluster <= fclus && hit->fcluster < p->fcluster) {
93 hit = p;
94 if ((hit->fcluster + hit->nr_contig) < fclus) {
95 offset = hit->nr_contig;
97 offset = fclus - hit->fcluster;
102 if (hit != &nohit) {
103 fat_cache_update_lru(inode, hit);
106 cid->nr_contig = hit
[all...]
/linux-master/kernel/trace/
H A Dring_buffer_benchmark.c239 unsigned long hit = 0; local
260 hit++;
337 trace_printk("Hit: %ld\n", hit);
342 hit /= (long)time;
346 trace_printk("Entries per millisec: %ld\n", hit);
348 if (hit) {
350 avg = NSEC_PER_MSEC / hit;
359 hit + missed);
361 /* it is possible that hit + missed will overflow and be zero */
362 if (!(hit
[all...]
/linux-master/arch/powerpc/kernel/
H A Dhw_breakpoint.c278 printk_ratelimited("Breakpoint hit on instruction that can't be emulated. Breakpoint at 0x%lx will be disabled.\n",
284 int *hit, ppc_inst_t instr)
292 if (!hit[i])
305 if (!hit[i])
316 int *hit, unsigned long ea)
365 hit[i] = 1;
383 int hit[HBP_NUM_MAX] = {0}; local
426 hit[i] = 1;
438 handle_p10dd1_spurious_exception(bp, hit, ea);
453 if (!hit[
283 stepping_handler(struct pt_regs *regs, struct perf_event **bp, int *hit, ppc_inst_t instr) argument
315 handle_p10dd1_spurious_exception(struct perf_event **bp, int *hit, unsigned long ea) argument
[all...]
/linux-master/arch/mips/mm/
H A Dcontext.c101 bool hit; local
113 hit = false;
116 hit = true;
121 return hit;
/linux-master/drivers/md/bcache/
H A Dstats.h55 bool hit, bool bypass);
H A Dstats.c28 * get a cache hit, we increment a single atomic_t in acc->collector, and when
184 bool hit, bool bypass)
187 if (hit)
192 if (hit)
199 bool hit, bool bypass)
203 mark_cache_stats(&dc->accounting.collector, hit, bypass);
204 mark_cache_stats(&c->accounting.collector, hit, bypass);
183 mark_cache_stats(struct cache_stat_collector *stats, bool hit, bool bypass) argument
198 bch_mark_cache_accounting(struct cache_set *c, struct bcache_device *d, bool hit, bool bypass) argument
/linux-master/arch/arm/mm/
H A Dcontext.c168 bool hit = false; local
181 hit = true;
186 return hit;
/linux-master/arch/csky/mm/
H A Dasid.c58 bool hit = false; local
71 hit = true;
76 return hit;
/linux-master/arch/arm64/kvm/
H A Dvmid.c75 bool hit = false; local
84 hit = true;
89 return hit;
/linux-master/arch/arm/boot/compressed/
H A Dhead-xscale.S21 @ memory to be sure we hit the same cache.
H A Dhead-sa1100.S31 @ memory to be sure we hit the same cache.
/linux-master/net/wireless/
H A Dradiotap.c216 int hit = 0; local
336 hit = 1;
358 /* we've got a hit! */
359 hit = 1;
366 if (hit)
/linux-master/fs/ceph/
H A Dmetric.h61 __le32 data_len; /* length of sizeof(hit + mis + total) */
67 __le64 hit; member in struct:ceph_metric_cap
102 __le64 hit; member in struct:ceph_metric_dlease
/linux-master/arch/arm64/mm/
H A Dcontext.c137 bool hit = false; local
150 hit = true;
155 return hit;
/linux-master/arch/riscv/mm/
H A Dcontext.c40 bool hit = false; local
53 hit = true;
58 return hit;
/linux-master/net/unix/
H A Dgarbage.c169 bool hit = false; local
182 hit = true;
187 if (hit && hitlist != NULL) {
/linux-master/arch/arm/probes/kprobes/
H A Dtest-core.c153 * When the test case code executes, the test_before probe will be hit and
1163 int hit; member in struct:test_probe
1185 probe->hit = -1;
1193 container_of(p, struct test_probe, kprobe)->hit = test_instance;
1209 container_of(p, struct test_probe, kprobe)->hit = test_instance;
1218 if (container_of(p, struct test_probe, kprobe)->hit == test_instance)
1237 container_of(p, struct test_probe, kprobe)->hit = test_instance;
1481 if (test_before_probe.hit != test_instance) {
1486 if (test_after_probe.hit != test_instance &&
1487 test_after2_probe.hit !
[all...]
/linux-master/drivers/net/ethernet/sun/
H A Dsunvnet_common.h111 u8 hit; member in struct:vnet_mcast_entry
/linux-master/tools/perf/
H A Dbuiltin-buildid-list.c79 return with_hits && !dso->hit;

Completed in 338 milliseconds

123