/linux-4.4.14/tools/perf/util/ |
D | counts.c | 7 struct perf_counts *counts = zalloc(sizeof(*counts)); in perf_counts__new() local 9 if (counts) { in perf_counts__new() 14 free(counts); in perf_counts__new() 18 counts->values = values; in perf_counts__new() 21 return counts; in perf_counts__new() 24 void perf_counts__delete(struct perf_counts *counts) in perf_counts__delete() argument 26 if (counts) { in perf_counts__delete() 27 xyarray__delete(counts->values); in perf_counts__delete() 28 free(counts); in perf_counts__delete() 32 static void perf_counts__reset(struct perf_counts *counts) in perf_counts__reset() argument [all …]
|
D | stat.c | 128 struct perf_counts *counts; in perf_evsel__alloc_prev_raw_counts() local 130 counts = perf_counts__new(ncpus, nthreads); in perf_evsel__alloc_prev_raw_counts() 131 if (counts) in perf_evsel__alloc_prev_raw_counts() 132 evsel->prev_raw_counts = counts; in perf_evsel__alloc_prev_raw_counts() 134 return counts ? 0 : -ENOMEM; in perf_evsel__alloc_prev_raw_counts() 246 struct perf_counts_values *aggr = &evsel->counts->aggr; in process_counter_values() 296 perf_counts(counter->counts, cpu, thread))) in process_counter_maps() 307 struct perf_counts_values *aggr = &counter->counts->aggr; in perf_stat_process_counter() 309 u64 *count = counter->counts->aggr.values; in perf_stat_process_counter() 326 perf_counts_values__scale(aggr, config->scale, &counter->counts->scaled); in perf_stat_process_counter()
|
D | counts.h | 25 perf_counts(struct perf_counts *counts, int cpu, int thread) in perf_counts() argument 27 return xyarray__entry(counts->values, cpu, thread); in perf_counts() 31 void perf_counts__delete(struct perf_counts *counts);
|
D | python-ext-sources | 19 util/counts.c
|
D | evsel.h | 87 struct perf_counts *counts; member
|
D | Build | 73 libperf-y += counts.o
|
D | evsel.c | 1136 if (evsel->counts == NULL && perf_evsel__alloc_counts(evsel, cpu + 1, thread + 1) < 0) in __perf_evsel__read_on_cpu() 1144 *perf_counts(evsel->counts, cpu, thread) = count; in __perf_evsel__read_on_cpu()
|
/linux-4.4.14/arch/powerpc/platforms/pseries/ |
D | msi.c | 241 struct msi_counts *counts = data; in count_non_bridge_devices() local 251 counts->num_devices++; in count_non_bridge_devices() 258 struct msi_counts *counts = data; in count_spare_msis() local 262 if (dn == counts->requestor) in count_spare_msis() 263 req = counts->request; in count_spare_msis() 277 if (req < counts->quota) in count_spare_msis() 278 counts->spare += counts->quota - req; in count_spare_msis() 279 else if (req > counts->quota) in count_spare_msis() 280 counts->over_quota++; in count_spare_msis() 288 struct msi_counts counts; in msi_quota_for_device() local [all …]
|
/linux-4.4.14/drivers/md/ |
D | bitmap.c | 908 unsigned long chunk = block >> bitmap->counts.chunkshift; in bitmap_file_set_bit() 932 unsigned long chunk = block >> bitmap->counts.chunkshift; in bitmap_file_clear_bit() 955 unsigned long chunk = block >> bitmap->counts.chunkshift; in bitmap_file_test_bit() 1032 chunks = bitmap->counts.chunks; in bitmap_init_from_disk() 1041 int needed = ((sector_t)(i+1) << (bitmap->counts.chunkshift) in bitmap_init_from_disk() 1044 (sector_t)i << bitmap->counts.chunkshift, in bitmap_init_from_disk() 1123 int needed = ((sector_t)(i+1) << bitmap->counts.chunkshift in bitmap_init_from_disk() 1126 (sector_t)i << bitmap->counts.chunkshift, in bitmap_init_from_disk() 1199 struct bitmap_counts *counts; in bitmap_daemon_work() local 1249 counts = &bitmap->counts; in bitmap_daemon_work() [all …]
|
D | dm-table.c | 37 unsigned int counts[MAX_DEPTH]; /* in nodes */ member 109 if (n >= t->counts[l]) in high() 124 for (n = 0U; n < t->counts[l]; n++) { in setup_btree_index() 989 t->counts[i] = dm_div_up(t->counts[i + 1], CHILDREN_PER_NODE); in setup_indexes() 990 total += t->counts[i]; in setup_indexes() 1000 indexes += (KEYS_PER_NODE * t->counts[i]); in setup_indexes() 1020 t->counts[t->depth - 1] = leaf_nodes; in dm_table_build_index()
|
D | bitmap.h | 192 } counts; member
|
/linux-4.4.14/kernel/gcov/ |
D | gcc_3_4.c | 80 struct gcov_ctr_info counts[0]; member 177 memset(info->counts[i].values, 0, in gcov_info_reset() 178 info->counts[i].num * sizeof(gcov_type)); in gcov_info_reset() 207 for (j = 0; j < dest->counts[i].num; j++) { in gcov_info_add() 208 dest->counts[i].values[j] += in gcov_info_add() 209 source->counts[i].values[j]; in gcov_info_add() 266 struct gcov_ctr_info *ctr = &info->counts[i]; in gcov_info_dup() 269 dup->counts[i].num = ctr->num; in gcov_info_dup() 270 dup->counts[i].merge = ctr->merge; in gcov_info_dup() 271 dup->counts[i].values = vmalloc(size); in gcov_info_dup() [all …]
|
/linux-4.4.14/drivers/scsi/ |
D | ch.c | 114 u_int counts[CH_TYPES]; member 227 ch->counts[i]) in ch_elem_to_typecode() 315 ch->counts[CHET_MT] = in ch_readconfig() 319 ch->counts[CHET_ST] = in ch_readconfig() 323 ch->counts[CHET_IE] = in ch_readconfig() 327 ch->counts[CHET_DT] = in ch_readconfig() 331 ch->counts[CHET_MT]); in ch_readconfig() 334 ch->counts[CHET_ST]); in ch_readconfig() 337 ch->counts[CHET_IE]); in ch_readconfig() 340 ch->counts[CHET_DT]); in ch_readconfig() [all …]
|
/linux-4.4.14/tools/perf/tests/ |
D | openat-syscall.c | 46 if (perf_counts(evsel->counts, 0, 0)->val != nr_openat_calls) { in test__openat_syscall_event() 48 nr_openat_calls, perf_counts(evsel->counts, 0, 0)->val); in test__openat_syscall_event()
|
D | openat-syscall-all-cpus.c | 100 if (perf_counts(evsel->counts, cpu, 0)->val != expected) { in test__openat_syscall_event_on_all_cpus() 102 expected, cpus->map[cpu], perf_counts(evsel->counts, cpu, 0)->val); in test__openat_syscall_event_on_all_cpus()
|
/linux-4.4.14/arch/ia64/kernel/ |
D | smp.c | 258 unsigned short *counts = __ia64_per_cpu_var(shadow_flush_counts); in smp_flush_tlb_cpumask() local 266 counts[cpu] = local_tlb_flush_counts[cpu].count & 0xffff; in smp_flush_tlb_cpumask() 280 while(counts[cpu] == (local_tlb_flush_counts[cpu].count & 0xffff)) in smp_flush_tlb_cpumask()
|
/linux-4.4.14/tools/perf/ |
D | builtin-stat.c | 208 count = perf_counts(counter->counts, cpu, thread); in read_counter() 589 val += perf_counts(counter->counts, cpu, 0)->val; in print_aggr() 590 ena += perf_counts(counter->counts, cpu, 0)->ena; in print_aggr() 591 run += perf_counts(counter->counts, cpu, 0)->run; in print_aggr() 644 val += perf_counts(counter->counts, cpu, thread)->val; in print_aggr_thread() 645 ena += perf_counts(counter->counts, cpu, thread)->ena; in print_aggr_thread() 646 run += perf_counts(counter->counts, cpu, thread)->run; in print_aggr_thread() 672 int scaled = counter->counts->scaled; in print_counter_aggr() 723 val = perf_counts(counter->counts, cpu, 0)->val; in print_counter() 724 ena = perf_counts(counter->counts, cpu, 0)->ena; in print_counter() [all …]
|
D | design.txt | 247 cpu == -1: the counter counts on all CPUs 251 A 'pid > 0' and 'cpu == -1' counter is a per task counter that counts 256 A 'pid == -1' and 'cpu == x' counter is a per CPU counter that counts
|
/linux-4.4.14/Documentation/networking/ |
D | altera_tse.txt | 195 statistic counts the number of packets transmitted that were not addressed to 199 statistic counts the number of packets transmitted that were addressed to a 203 statistic counts the number of packets transmitted that were addressed to a 207 This statistic counts the number of packets dropped due to lack of internal 211 This statistic counts the total number of bytes received by the controller, 215 This statistic counts the total number of packets received by the controller, 219 This statistic counts the number of correctly formed packets received less 223 This statistic counts the number of correctly formed packets greater than 1518 227 This statistic counts the total number of packets received that were 64 octets 231 2819. This statistic counts the total number of packets received that were [all …]
|
D | cxacru.txt | 52 Error counts.
|
D | 3c509.txt | 135 Check /proc/interrupts for excessive interrupt counts. The timer tick
|
D | l2tp.txt | 321 therefore has its own internal reference counts on the session
|
D | LICENSE.qlcnic | 178 access to copy the source code from the same place counts as
|
D | LICENSE.qlge | 178 access to copy the source code from the same place counts as
|
/linux-4.4.14/tools/usb/ |
D | ffs-test.c | 185 const __le32 counts[]; in descs_to_legacy() member 187 const __le32 *counts = in->counts; in descs_to_legacy() local 207 ret = le32_to_cpu(*counts); \ in descs_to_legacy() 209 ++counts; \ in descs_to_legacy() 219 descs_start = (const void *)counts; in descs_to_legacy()
|
/linux-4.4.14/Documentation/devicetree/bindings/staging/iio/adc/ |
D | mxs-lradc.txt | 17 2 ... 2048. It is used if 'fsl,ave-ctrl' > 1, counts at 20 1 ... 2047. It counts at 2 kHz and its default is
|
/linux-4.4.14/tools/perf/Documentation/ |
D | perf-stat.txt | 90 Do not aggregate counts across all monitored CPUs in system-wide mode (-a). 103 print counts using a CSV-style output to make it easy to import directly into 144 Aggregate counts per processor socket for system-wide mode measurements. This 151 Aggregate counts per physical processor for system-wide mode measurements. This 157 Aggregate counts per monitored threads, when monitoring threads (-t option)
|
D | perf-script-python.txt | 32 'syscall-counts' script you see when you list the available perf script 37 The syscall-counts script is a simple script, but demonstrates all the 192 # mv perf-script.py syscall-counts.py 193 # perf script -s syscall-counts.py 262 and having the counts we've tallied as values. 318 # perf script -s syscall-counts.py 358 # cat kernel-source/tools/perf/scripts/python/bin/syscall-counts-record 370 # cat kernel-source/tools/perf/scripts/python/bin/syscall-counts-report 373 # description: system-wide syscall counts 374 perf script -s ~/libexec/perf-core/scripts/python/syscall-counts.py [all …]
|
D | perf-diff.txt | 73 Be verbose, for instance, show the raw counts in addition to the
|
D | perf-record.txt | 179 Record per-thread event counts. Use it with 'perf report -T' to see
|
/linux-4.4.14/tools/perf/scripts/python/bin/ |
D | syscall-counts-report | 10 perf script $@ -s "$PERF_EXEC_PATH"/scripts/python/syscall-counts.py $comm
|
D | syscall-counts-by-pid-report | 10 perf script $@ -s "$PERF_EXEC_PATH"/scripts/python/syscall-counts-by-pid.py $comm
|
/linux-4.4.14/Documentation/block/ |
D | stat.txt | 66 This value counts the number of I/O requests that have been issued to 73 This value counts the number of milliseconds during which the device has 79 This value counts the number of milliseconds that I/O requests have waited
|
D | request.txt | 51 int errors DB Error counts
|
D | biodoc.txt | 538 /* Various sector counts */ 559 The behaviour of the various sector counts are almost the same as before, 565 hard_xxx values is for block to remember these counts every time it hands
|
/linux-4.4.14/sound/oss/ |
D | dmabuf.c | 416 if (dmap->counts[dmap->qhead] == 0) in DMAbuf_launch_output() 417 dmap->counts[dmap->qhead] = dmap->fragment_size; in DMAbuf_launch_output() 420 dmap->counts[dmap->qhead], 1); in DMAbuf_launch_output() 604 *buf = &dmap->raw_buf[dmap->qhead * dmap->fragment_size + dmap->counts[dmap->qhead]]; in DMAbuf_getrdbuffer() 605 *len = dmap->fragment_size - dmap->counts[dmap->qhead]; in DMAbuf_getrdbuffer() 614 int p = dmap->counts[dmap->qhead] + c; in DMAbuf_rmchars() 624 dmap->counts[dmap->qhead] = 0; in DMAbuf_rmchars() 628 else dmap->counts[dmap->qhead] = p; in DMAbuf_rmchars() 891 dmap->counts[dmap->qtail] = dmap->fragment_size; in DMAbuf_move_wrpointer() 897 dmap->counts[dmap->qtail] = dmap->user_counter - ptr; in DMAbuf_move_wrpointer() [all …]
|
D | audio.c | 660 dmap->counts[i] = 0; in reorganize_buffers() 811 info.bytes -= dmap->counts[dmap->qhead]; in dma_ioctl() 862 dmap_out->counts[dmap_out->qhead] = dmap_out->fragment_size; in dma_ioctl()
|
D | dev_table.h | 119 int counts[MAX_SUB_BUFFERS]; member
|
/linux-4.4.14/sound/usb/usx2y/ |
D | usx2yhwdeppcm.c | 113 int count, counts, pack; in usX2Y_hwdep_urb_play_prepare() local 129 counts = shm->captured_iso[shm->playback_iso_head].length / usX2Y->stride; in usX2Y_hwdep_urb_play_prepare() 130 if (counts < 43 || counts > 50) { in usX2Y_hwdep_urb_play_prepare() 131 snd_printk(KERN_ERR "should not be here with counts=%i\n", counts); in usX2Y_hwdep_urb_play_prepare() 142 count += counts; in usX2Y_hwdep_urb_play_prepare()
|
D | usbusx2yaudio.c | 131 int count, counts, pack; in usX2Y_urb_play_prepare() local 138 counts = cap_urb->iso_frame_desc[pack].actual_length / usX2Y->stride; in usX2Y_urb_play_prepare() 139 count += counts; in usX2Y_urb_play_prepare() 140 if (counts < 43 || counts > 50) { in usX2Y_urb_play_prepare() 141 snd_printk(KERN_ERR "should not be here with counts=%i\n", counts); in usX2Y_urb_play_prepare()
|
/linux-4.4.14/Documentation/device-mapper/ |
D | cache-policies.txt | 20 doesn't update states (eg, hit counts) for a block more than once 59 io_tracker counts contiguous I/Os to try to spot when the I/O is in one 125 Periodically degrading the hit counts could help with this, but I 128 SMQ doesn't maintain hit counts, so a lot of this problem just goes
|
D | persistent-data.txt | 58 On-disk data structures that keep track of reference counts of blocks.
|
D | cache.txt | 149 may be less efficient until those hit counts are regenerated.
|
/linux-4.4.14/Documentation/filesystems/nfs/ |
D | knfsd-stats.txt | 90 This statistic counts a circumstance where there are more nfsd 107 one of three ways. An nfsd thread can be woken (threads-woken counts 109 (sockets-enqueued counts this case), or the packet can be temporarily
|
/linux-4.4.14/sound/usb/ |
D | endpoint.c | 202 int counts; in prepare_silent_urb() local 205 counts = ctx->packet_size[i]; in prepare_silent_urb() 207 counts = snd_usb_endpoint_next_packet_size(ep); in prepare_silent_urb() 209 length = counts * ep->stride; /* number of silent bytes */ in prepare_silent_urb() 220 offs += counts; in prepare_silent_urb()
|
D | pcm.c | 1446 unsigned int counts, frames, bytes; in prepare_playback_urb() local 1458 counts = ctx->packet_size[i]; in prepare_playback_urb() 1460 counts = snd_usb_endpoint_next_packet_size(ep); in prepare_playback_urb() 1464 urb->iso_frame_desc[i].length = counts * ep->stride; in prepare_playback_urb() 1465 frames += counts; in prepare_playback_urb() 1467 subs->transfer_done += counts; in prepare_playback_urb() 1477 counts -= subs->transfer_done; in prepare_playback_urb() 1479 counts * ep->stride; in prepare_playback_urb()
|
/linux-4.4.14/arch/x86/kernel/cpu/ |
D | perf_event_intel_ds.c | 1211 short counts[MAX_PEBS_EVENTS] = {}; in intel_pmu_drain_pebs_nhm() local 1234 counts[bit]++; in intel_pmu_drain_pebs_nhm() 1272 counts[bit]++; in intel_pmu_drain_pebs_nhm() 1276 if ((counts[bit] == 0) && (error[bit] == 0)) in intel_pmu_drain_pebs_nhm() 1287 if (counts[bit]) { in intel_pmu_drain_pebs_nhm() 1289 top, bit, counts[bit]); in intel_pmu_drain_pebs_nhm()
|
/linux-4.4.14/Documentation/devicetree/bindings/iio/light/ |
D | us5182d.txt | 11 counts) corresponding to every scale.
|
/linux-4.4.14/arch/powerpc/mm/ |
D | numa.c | 1223 u8 *counts = vphn_cpu_change_counts[cpu]; in setup_cpu_associativity_change_counters() local 1227 counts[i] = hypervisor_counts[i]; in setup_cpu_associativity_change_counters() 1249 u8 *counts = vphn_cpu_change_counts[cpu]; in update_cpu_associativity_changes_mask() local 1253 if (hypervisor_counts[i] != counts[i]) { in update_cpu_associativity_changes_mask() 1254 counts[i] = hypervisor_counts[i]; in update_cpu_associativity_changes_mask()
|
/linux-4.4.14/Documentation/misc-devices/ |
D | isl29003 | 17 ADC, I2C user programmable lux range select for optimized counts/lux, and
|
/linux-4.4.14/Documentation/hwmon/ |
D | g760a | 20 cycle counts of an assumed 32kHz clock source.
|
D | smsc47m192 | 34 192 counts, i.e. 3/4 of the full range. Thus the available range for
|
D | adm1026 | 50 in counts of a 22.5kHz internal clock. Each fan has a high limit which
|
D | smsc47b397 | 71 The SIO counts the number of 90kHz (11.111us) pulses per revolution.
|
D | lm85 | 227 Tmin control and THERM asserted counts. Automatic Tmin control acts to
|
/linux-4.4.14/sound/pci/ice1712/ |
D | phase.c | 913 unsigned int i, counts; in phase28_add_controls() local 916 counts = ARRAY_SIZE(phase28_dac_controls); in phase28_add_controls() 917 for (i = 0; i < counts; i++) { in phase28_add_controls()
|
D | aureon.c | 1871 unsigned int i, counts; in aureon_add_controls() local 1874 counts = ARRAY_SIZE(aureon_dac_controls); in aureon_add_controls() 1876 counts -= 2; /* no side */ in aureon_add_controls() 1877 for (i = 0; i < counts; i++) { in aureon_add_controls()
|
/linux-4.4.14/Documentation/serial/ |
D | tty.txt | 25 code manages the module counts this should not usually be a concern. 28 tty_ldisc structure in the ldisc table counts the number of lines using this 30 counts the number of active users of the ldisc at this instant. In effect it 31 counts the number of threads of execution within an ldisc method (plus those
|
/linux-4.4.14/Documentation/scsi/ |
D | advansys.txt | 7 The CDB counts below indicate the number of SCSI CDB (Command 143 point call counts and transfer size counts are maintained.
|
D | scsi_mid_low_api.txt | 310 directly manipulate these reference counts but there may be some cases 332 ^^ struct Scsi_Host actually has 2 reference counts which are manipulated 524 * Notes: Actually increments the counts in two sub-objects 539 * Notes: Actually decrements the counts in two sub-objects. If the
|
D | LICENSE.qla4xxx | 179 access to copy the source code from the same place counts as
|
D | LICENSE.qla2xxx | 180 access to copy the source code from the same place counts as
|
D | st.txt | 251 is to use bigger write() byte counts (e.g., tar -b 64).
|
/linux-4.4.14/Documentation/RCU/ |
D | trace.txt | 51 Displays counts of the reasons rcu_pending() decided that RCU had 496 o "balk: nt" counts the number of times we didn't boost (in 502 o "egt" counts the number of times we balked because although 506 o "bt" counts the number of times we balked because boosting 509 o "nb" counts the number of times we balked because there 514 o "ny" counts the number of times we balked because it was 517 o "nos" counts the number of times we balked for other
|
D | rcuref.txt | 5 stop if you need to combine reference counts and RCU. Please see
|
D | RTFP.txt | 120 counts, where the count is represented by the number of hazard pointers 123 of inside-out reference counts is that they can be stored in immortal
|
D | whatisRCU.txt | 144 Reference counts may be used in conjunction with RCU to maintain
|
/linux-4.4.14/Documentation/rapidio/ |
D | tsi721.txt | 11 channels. This mechanism provides access to larger range of hop counts and
|
/linux-4.4.14/net/sctp/ |
D | Kconfig | 53 bool "SCTP: Debug object counts"
|
/linux-4.4.14/sound/drivers/ |
D | mtpav.c | 251 int counts = 10000; in snd_mtpav_wait_rfdhi() local 255 while (!(sbyte & SIGS_RFD) && counts--) { in snd_mtpav_wait_rfdhi()
|
/linux-4.4.14/drivers/usb/gadget/function/ |
D | f_fs.c | 2113 unsigned os_descs_count = 0, counts[3], flags; in __ffs_data_got_descs() local 2164 counts[i] = 0; in __ffs_data_got_descs() 2168 counts[i] = get_unaligned_le32(data); in __ffs_data_got_descs() 2183 if (!counts[i]) in __ffs_data_got_descs() 2187 ret = ffs_do_descs(counts[i], data, len, in __ffs_data_got_descs() 2224 ffs->fs_descs_count = counts[0]; in __ffs_data_got_descs() 2225 ffs->hs_descs_count = counts[1]; in __ffs_data_got_descs() 2226 ffs->ss_descs_count = counts[2]; in __ffs_data_got_descs()
|
/linux-4.4.14/drivers/staging/rdma/hfi1/ |
D | firmware.c | 1014 u64 counts = read_csr(dd, ASIC_STS_SBUS_COUNTERS); in sbus_request_slow() local 1021 (SBUS_COUNTER(counts, RCV_DATA_VALID) == in sbus_request_slow() 1022 SBUS_COUNTER(counts, EXECUTE))) in sbus_request_slow()
|
/linux-4.4.14/sound/pci/vx222/ |
D | vx222_ops.c | 337 static int put_xilinx_data(struct vx_core *chip, unsigned int port, unsigned int counts, unsigned c… in put_xilinx_data() argument 341 for (i = 0; i < counts; i++) { in put_xilinx_data()
|
/linux-4.4.14/Documentation/cgroups/ |
D | pids.txt | 76 processes from being forked at all (note that the shell itself counts towards
|
D | memory.txt | 578 per-node page counts including "hierarchical_<counter>" which sums up all
|
/linux-4.4.14/Documentation/virtual/kvm/ |
D | timekeeping.txt | 80 Mode 0: Single Timeout. This is a one-shot software timeout that counts down 100 If the count is even, the clock remains high for N/2 counts and low for N/2 101 counts; if the clock is odd, the clock is high for (N+1)/2 counts and low 102 for (N-1)/2 counts. Only even values are latched by the counter, so odd 314 The TSC or time stamp counter is relatively simple in theory; it counts
|
D | mmu.txt | 237 possible for non-leafs. This field counts the number of emulations
|
/linux-4.4.14/drivers/staging/unisys/Documentation/ |
D | proc-entries.txt | 45 counts, and other device information.
|
/linux-4.4.14/Documentation/ABI/testing/ |
D | sysfs-block-bcache | 29 counted per bio. A partial cache hit counts as a miss.
|
/linux-4.4.14/Documentation/ |
D | gcov.txt | 27 This will create source code files annotated with execution counts
|
D | vgaarbiter.txt | 57 ic are respectively mem and io lock counts (for debugging/
|
D | static-keys.txt | 129 The branch(es) can then be switched via reference counts:
|
D | kobject.txt | 182 Reference counts 187 The low-level functions for manipulating a kobject's reference counts are:
|
D | CodingStyle | 254 that counts the number of active users, you should call that 587 reference counts. In the kernel, garbage collection doesn't exist (and 602 when there are users of different "classes". The subclass count counts
|
/linux-4.4.14/drivers/input/ |
D | evdev.c | 68 static const size_t counts[EV_CNT] = { in evdev_get_mask_cnt() local 81 return (type < EV_CNT) ? counts[type] : 0; in evdev_get_mask_cnt()
|
/linux-4.4.14/Documentation/filesystems/ |
D | afs.txt | 138 their usage counts:
|
D | logfs.txt | 165 lower than the active segments' erase counts, it will be picked. Wear
|
D | fuse.txt | 257 counts as an information leak.
|
D | path-lookup.txt | 183 reference counts on intermediate dentries along the path. To do this, a per
|
D | proc.txt | 988 Provides counts of softirq handlers serviced since boot time, for each cpu. 1306 The "intr" line gives counts of interrupts serviced since boot time, for each 1327 The "softirq" line gives counts of softirqs serviced since boot time, for each
|
D | coda.txt | 1591 when the reference counts on those fids are not zero. 1613 much more delicate. User processes hold reference counts in Coda
|
D | xfs-delayed-logging-design.txt | 594 counts, but as each checkpoint completes the pin count will retain the correct
|
D | vfs.txt | 779 unless you have them locked or reference counts increased.
|
/linux-4.4.14/fs/xfs/libxfs/ |
D | xfs_dir2_leaf.c | 1655 int counts) in xfs_dir3_leaf_size() argument 1668 + counts * sizeof(xfs_dir2_data_off_t) in xfs_dir3_leaf_size()
|
/linux-4.4.14/Documentation/trace/ |
D | tracepoint-analysis.txt | 200 Simplistically, the script just reads STDIN and counts up events but it
|
D | ftrace.txt | 340 counter. It counts up one by one, but is in sync
|
/linux-4.4.14/Documentation/timers/ |
D | timekeeping.txt | 72 register counts up or down, and the timer clock rate, and then conjure all
|
/linux-4.4.14/Documentation/sound/alsa/ |
D | compress_offload.txt | 34 - separation between byte counts and time. Compressed formats may have
|
/linux-4.4.14/arch/sh/lib/ |
D | memcpy-sh4.S | 196 ! cycle counts for differnet sizes using byte-at-a-time vs. optimised):
|
/linux-4.4.14/Documentation/fb/ |
D | framebuffer.txt | 192 A full screen counts 480 (yres) lines, but we have to consider the vertical
|
/linux-4.4.14/drivers/gpu/drm/nouveau/nvkm/engine/gr/fuc/ |
D | hub.fuc | 120 // fetch enabled GPC/ROP counts
|
/linux-4.4.14/Documentation/usb/ |
D | usbmon.txt | 176 Length counts only the bytes that were received whereas the Data words
|
/linux-4.4.14/Documentation/video4linux/cx2341x/ |
D | fw-decoder-regs.txt | 396 The scanline counts from the top line of the first field
|
/linux-4.4.14/Documentation/filesystems/caching/ |
D | fscache.txt | 211 This shows counts of a number of events that can happen in FS-Cache:
|
/linux-4.4.14/drivers/staging/rtl8192u/ |
D | copying | 168 access to copy the source code from the same place counts as
|
/linux-4.4.14/tools/usb/usbip/ |
D | COPYING | 168 access to copy the source code from the same place counts as
|
/linux-4.4.14/drivers/staging/rtl8192e/ |
D | license | 171 the source code from the same place counts as distribution of the source
|
/linux-4.4.14/ |
D | COPYING | 184 access to copy the source code from the same place counts as
|
/linux-4.4.14/Documentation/mtd/ |
D | nand_ecc.txt | 619 Not a big change, but every penny counts :-)
|
/linux-4.4.14/Documentation/input/ |
D | atarikbd.txt | 46 approximately 200 counts (phase changes or 'clicks') per inch of travel. The
|
/linux-4.4.14/init/ |
D | Kconfig | 1687 VM event counters are needed for event counts to be shown. 1689 on EXPERT systems. /proc/vmstat will only show page counts
|
/linux-4.4.14/Documentation/filesystems/cifs/ |
D | CHANGES | 496 Make transaction counts more consistent. Merge /proc/fs/cifs/SimultaneousOps
|
/linux-4.4.14/drivers/scsi/aic7xxx/ |
D | aic7xxx.seq | 1724 * protects against bogus data in scratch ram and the residual counts
|
D | aic79xx.reg | 3794 * and kernel freeze counts differ.
|
D | aic79xx.seq | 1345 * protects against bogus data in scratch ram and the residual counts
|
/linux-4.4.14/Documentation/s390/ |
D | Debugging390.txt | 2074 if the RX packets count & TX packets counts don't increment you probably
|