Searched refs:count (Results 501 - 525 of 7674) sorted by relevance

<<21222324252627282930>>

/linux-master/arch/m68k/include/asm/
H A Dstring.h9 static inline size_t strnlen(const char *s, size_t count) argument
20 : "+a" (sc), "+d" (count));
/linux-master/drivers/media/rc/
H A Dgpio-ir-tx.c76 uint count)
85 for (i = 0; i < count; i++) {
96 uint count)
117 for (i = 0; i < count; i++) {
147 unsigned int count)
154 gpio_ir_tx_modulated(gpio_ir, txbuf, count);
156 gpio_ir_tx_unmodulated(gpio_ir, txbuf, count);
159 return count;
75 gpio_ir_tx_unmodulated(struct gpio_ir *gpio_ir, uint *txbuf, uint count) argument
95 gpio_ir_tx_modulated(struct gpio_ir *gpio_ir, uint *txbuf, uint count) argument
146 gpio_ir_tx(struct rc_dev *dev, unsigned int *txbuf, unsigned int count) argument
/linux-master/drivers/clk/
H A Dclk-twl.c138 int count; local
141 for (count = 0; hw_data[count].init.name; count++)
145 struct_size(clk_data, hws, count),
150 clk_data->num = count;
151 cinfo = devm_kcalloc(&pdev->dev, count, sizeof(*cinfo), GFP_KERNEL);
155 for (i = 0; i < count; i++) {
/linux-master/drivers/gpu/drm/nouveau/nvkm/subdev/mmu/
H A Dtu102.c32 tu102_mmu_kind(struct nvkm_mmu *mmu, int *count, u8 *invalid) argument
39 *count = ARRAY_SIZE(kind);
/linux-master/drivers/platform/x86/intel/pmt/
H A Dtelemetry.h91 * @count: Number of qwords requested
104 int pmt_telem_read(struct telem_endpoint *ep, u32 id, u64 *data, u32 count);
111 * @count: Number of dwords requested
124 int pmt_telem_read32(struct telem_endpoint *ep, u32 id, u32 *data, u32 count);
/linux-master/drivers/net/ethernet/mellanox/mlx5/core/lib/
H A Dmlx5.h40 int mlx5_core_reserve_gids(struct mlx5_core_dev *dev, unsigned int count);
41 void mlx5_core_unreserve_gids(struct mlx5_core_dev *dev, unsigned int count);
/linux-master/drivers/leds/
H A Dleds.h26 loff_t pos, size_t count);
29 loff_t pos, size_t count);
/linux-master/mm/
H A Dcma.h15 unsigned long count; member in struct:cma
43 return cma->count >> cma->order_per_bit;
/linux-master/lib/
H A Dfw_table.c159 int count = 0; local
180 if (!max_entries || count < max_entries)
184 proc[i].count++;
185 count++;
203 if (max_entries && count > max_entries) {
205 id, proc->id, count - max_entries, count);
208 return count;
/linux-master/drivers/pci/
H A Dpci-sysfs.c84 const char *buf, size_t count)
94 return count;
293 const char *buf, size_t count)
317 return result < 0 ? result : count;
333 size_t count)
355 return count;
395 const char *buf, size_t count)
416 return count;
426 return count;
430 static ssize_t rescan_store(const struct bus_type *bus, const char *buf, size_t count) argument
82 broken_parity_status_store(struct device *dev, struct device_attribute *attr, const char *buf, size_t count) argument
292 enable_store(struct device *dev, struct device_attribute *attr, const char *buf, size_t count) argument
331 numa_node_store(struct device *dev, struct device_attribute *attr, const char *buf, size_t count) argument
394 msi_bus_store(struct device *dev, struct device_attribute *attr, const char *buf, size_t count) argument
462 dev_rescan_store(struct device *dev, struct device_attribute *attr, const char *buf, size_t count) argument
482 remove_store(struct device *dev, struct device_attribute *attr, const char *buf, size_t count) argument
497 bus_rescan_store(struct device *dev, struct device_attribute *attr, const char *buf, size_t count) argument
521 d3cold_allowed_store(struct device *dev, struct device_attribute *attr, const char *buf, size_t count) argument
562 driver_override_store(struct device *dev, struct device_attribute *attr, const char *buf, size_t count) argument
666 pci_read_config(struct file *filp, struct kobject *kobj, struct bin_attribute *bin_attr, char *buf, loff_t off, size_t count) argument
741 pci_write_config(struct file *filp, struct kobject *kobj, struct bin_attribute *bin_attr, char *buf, loff_t off, size_t count) argument
860 pci_read_legacy_io(struct file *filp, struct kobject *kobj, struct bin_attribute *bin_attr, char *buf, loff_t off, size_t count) argument
885 pci_write_legacy_io(struct file *filp, struct kobject *kobj, struct bin_attribute *bin_attr, char *buf, loff_t off, size_t count) argument
1072 pci_resource_io(struct file *filp, struct kobject *kobj, struct bin_attribute *attr, char *buf, loff_t off, size_t count, bool write) argument
1115 pci_read_resource_io(struct file *filp, struct kobject *kobj, struct bin_attribute *attr, char *buf, loff_t off, size_t count) argument
1122 pci_write_resource_io(struct file *filp, struct kobject *kobj, struct bin_attribute *attr, char *buf, loff_t off, size_t count) argument
1265 pci_write_rom(struct file *filp, struct kobject *kobj, struct bin_attribute *bin_attr, char *buf, loff_t off, size_t count) argument
1291 pci_read_rom(struct file *filp, struct kobject *kobj, struct bin_attribute *bin_attr, char *buf, loff_t off, size_t count) argument
1346 reset_store(struct device *dev, struct device_attribute *attr, const char *buf, size_t count) argument
1405 __resource_resize_store(struct device *dev, int n, const char *buf, size_t count) argument
[all...]
/linux-master/drivers/char/
H A Ddsp56k.c60 #define handshake(count, maxio, timeout, ENABLE, f) \
63 while (count > 0) { \
64 m = min_t(unsigned long, count, maxio); \
72 count -= m; \
183 static ssize_t dsp56k_read(struct file *file, char __user *buf, size_t count, argument
197 if (!count) return 0;
203 handshake(count, dsp56k.maxio, dsp56k.timeout, DSP56K_RECEIVE,
211 count /= 2;
213 handshake(count, dsp56k.maxio, dsp56k.timeout, DSP56K_RECEIVE,
219 count /
246 dsp56k_write(struct file *file, const char __user *buf, size_t count, loff_t *ppos) argument
[all...]
/linux-master/arch/powerpc/kernel/
H A Dmisc_32.S293 * R5 has shift count
302 srw r4,r4,r5 # LSW = count > 31 ? 0 : LSW >> count
304 slw r6,r3,r6 # t1 = count > 31 ? 0 : MSW << (32-count)
305 rlwinm r8,r7,0,32 # t3 = (count < 32) ? 32 : 0
306 sraw r7,r3,r7 # t2 = MSW >> (count-32)
308 slw r7,r7,r8 # t2 = (count < 32) ? 0 : t2
309 sraw r3,r3,r5 # MSW = MSW >> count
316 slw r3,r3,r5 # MSW = count > 3
[all...]
/linux-master/drivers/gpu/drm/i915/gem/selftests/
H A Di915_gem_coherency.c292 unsigned int count; local
294 count = 0;
296 count++;
298 count = i915_prandom_u32_max_state(count, prng);
300 if (count-- == 0)
311 unsigned long count, n; local
327 for (count = 0; count < ncachelines; count
[all...]
/linux-master/arch/sh/kernel/
H A Dsys_sh32.c40 size_t count, long dummy, loff_t pos)
42 return ksys_pread64(fd, buf, count, pos);
46 size_t count, long dummy, loff_t pos)
48 return ksys_pwrite64(fd, buf, count, pos);
39 sys_pread_wrapper(unsigned int fd, char __user *buf, size_t count, long dummy, loff_t pos) argument
45 sys_pwrite_wrapper(unsigned int fd, const char __user *buf, size_t count, long dummy, loff_t pos) argument
/linux-master/arch/mips/include/asm/mach-rc32434/
H A Dtimer.h38 u32 count; member in struct:timer_counter
/linux-master/include/linux/ceph/
H A Dtypes.h26 int count; member in struct:ceph_cap_reservation
/linux-master/include/uapi/linux/
H A Datm_nicstar.h43 int count; /* (At least for now) only used in NS_GETPSTAT */ member in struct:pool_levels
/linux-master/include/uapi/linux/netfilter/
H A Dxt_statistic.h31 __u32 count; /* unused */ member in struct:xt_statistic_info::__anon13090::__anon13092
/linux-master/tools/testing/selftests/timers/
H A Dmqueue-lat.c64 int i, count, ret; local
74 count = 100;
77 for (i = 0; i < count; i++) {
94 if ((timespec_sub(start, end)/count) > TARGET_TIMEOUT + UNRESONABLE_LATENCY)
/linux-master/sound/pci/emu10k1/
H A Demu10k1_synth_local.h18 const void __user *_data, long count);
/linux-master/include/sound/
H A Di2c.h33 int (*sendbytes)(struct snd_i2c_device *device, unsigned char *bytes, int count);
34 int (*readbytes)(struct snd_i2c_device *device, unsigned char *bytes, int count);
84 int snd_i2c_sendbytes(struct snd_i2c_device *device, unsigned char *bytes, int count);
85 int snd_i2c_readbytes(struct snd_i2c_device *device, unsigned char *bytes, int count);
/linux-master/drivers/gpu/drm/omapdrm/
H A Domap_irq.h25 u32 irqmask, int count);
/linux-master/drivers/dma-buf/
H A Dselftest.h23 int count,
/linux-master/arch/mips/include/asm/sn/
H A Dkldir.h24 u64 count; /* Repeat count if array, 1 if not */ member in struct:kldir_ent_s
/linux-master/sound/oss/dmasound/
H A Ddmasound_atari.c161 ssize_t count, used; local
164 count = min_t(unsigned long, userCount, frameLeft);
166 count &= ~1;
167 used = count;
168 while (count > 0) {
173 count--;
184 ssize_t count, used; local
187 count = min_t(unsigned long, userCount, frameLeft);
189 count &= ~1;
190 used = count;
202 ssize_t count, used; local
237 ssize_t count, used; local
269 ssize_t count, used; local
308 ssize_t count, used; local
349 ssize_t count, used; local
[all...]

Completed in 457 milliseconds

<<21222324252627282930>>