Home
last modified time | relevance | path

Searched full:bytes (Results 1 – 25 of 6746) sorted by relevance

12345678910>>...270

/Linux-v5.15/drivers/scsi/
Dmyrs.h172 unsigned short bus_speed_mhz; /* Bytes 4-5 */
176 unsigned char rsvd3[7]; /* Bytes 9-15 */
177 unsigned char bus_name[16]; /* Bytes 16-31 */
178 unsigned char ctlr_name[16]; /* Bytes 32-47 */
179 unsigned char rsvd4[16]; /* Bytes 48-63 */
191 unsigned char rsvd5[3]; /* Bytes 73-75 */
207 unsigned short nvram_size_kb; /* Bytes 90-91 */
209 unsigned char rsvd8[3]; /* Bytes 93-95 */
211 unsigned char serial_number[16]; /* Bytes 96-111 */
212 unsigned char rsvd9[16]; /* Bytes 112-127 */
[all …]
Dmyrb.h164 unsigned int rsvd1:24; /* Bytes 1-3 */
165 unsigned int ldev_sizes[32]; /* Bytes 4-131 */
166 unsigned short flash_age; /* Bytes 132-133 */
189 unsigned short ev_seq; /* Bytes 142-143 */
191 unsigned int rsvd5:24; /* Bytes 145-147 */
203 } dead_drives[21]; /* Bytes 152-194 */
204 unsigned char rsvd9[62]; /* Bytes 195-255 */
237 } hw; /* Bytes 0-3 */
244 } fw; /* Bytes 4-7 */
254 unsigned int rsvd3; /* Bytes 20-23 */
[all …]
/Linux-v5.15/include/sound/
Dpcm-indirect.h19 int hw_ready; /* Bytes ready for play (or captured) in hw ring buffer */
22 unsigned int sw_io; /* Current software pointer in bytes */
23 int sw_ready; /* Bytes ready to be transferred to/from hw */
28 struct snd_pcm_indirect *rec, size_t bytes);
55 unsigned int bytes = qsize - rec->hw_ready; in snd_pcm_indirect_playback_transfer() local
56 if (rec->sw_ready < (int)bytes) in snd_pcm_indirect_playback_transfer()
57 bytes = rec->sw_ready; in snd_pcm_indirect_playback_transfer()
58 if (hw_to_end < bytes) in snd_pcm_indirect_playback_transfer()
59 bytes = hw_to_end; in snd_pcm_indirect_playback_transfer()
60 if (sw_to_end < bytes) in snd_pcm_indirect_playback_transfer()
[all …]
/Linux-v5.15/include/linux/
Duio.h107 * Total number of bytes covered by an iovec.
133 size_t bytes, struct iov_iter *i);
134 void iov_iter_advance(struct iov_iter *i, size_t bytes);
135 void iov_iter_revert(struct iov_iter *i, size_t bytes);
136 int iov_iter_fault_in_readable(const struct iov_iter *i, size_t bytes);
138 size_t copy_page_to_iter(struct page *page, size_t offset, size_t bytes,
140 size_t copy_page_from_iter(struct page *page, size_t offset, size_t bytes,
143 size_t _copy_to_iter(const void *addr, size_t bytes, struct iov_iter *i);
144 size_t _copy_from_iter(void *addr, size_t bytes, struct iov_iter *i);
145 size_t _copy_from_iter_nocache(void *addr, size_t bytes, struct iov_iter *i);
[all …]
Dccp.h150 * @key_len: length in bytes of key
152 * @iv_len: length in bytes of iv
155 * @src_len: length in bytes of data used for this operation
158 * @cmac_key_len: length in bytes of cmac_key
177 u32 key_len; /* In bytes */
180 u32 iv_len; /* In bytes */
183 u64 src_len; /* In bytes */
188 u32 cmac_key_len; /* In bytes */
190 u32 aad_len; /* In bytes */
197 * @CCP_XTS_AES_UNIT_SIZE_16: Unit size of 16 bytes
[all …]
Dtask_io_accounting_ops.h11 static inline void task_io_account_read(size_t bytes) in task_io_account_read() argument
13 current->ioac.read_bytes += bytes; in task_io_account_read()
17 * We approximate number of blocks, because we account bytes only.
18 * A 'block' is 512 bytes
25 static inline void task_io_account_write(size_t bytes) in task_io_account_write() argument
27 current->ioac.write_bytes += bytes; in task_io_account_write()
31 * We approximate number of blocks, because we account bytes only.
32 * A 'block' is 512 bytes
39 static inline void task_io_account_cancelled_write(size_t bytes) in task_io_account_cancelled_write() argument
41 current->ioac.cancelled_write_bytes += bytes; in task_io_account_cancelled_write()
[all …]
/Linux-v5.15/tools/perf/pmu-events/arch/arm64/freescale/imx8mp/sys/
Dmetrics.json3 "BriefDescription": "bytes of all masters read from ddr",
11 "BriefDescription": "bytes of all masters write to ddr",
19 "BriefDescription": "bytes of a53 core read from ddr",
27 "BriefDescription": "bytes of a53 core write to ddr",
35 "BriefDescription": "bytes of supermix(m7) core read from ddr",
43 "BriefDescription": "bytes of supermix(m7) write to ddr",
51 "BriefDescription": "bytes of gpu 3d read from ddr",
59 "BriefDescription": "bytes of gpu 3d write to ddr",
67 "BriefDescription": "bytes of gpu 2d read from ddr",
75 "BriefDescription": "bytes of gpu 2d write to ddr",
[all …]
/Linux-v5.15/arch/x86/crypto/
Dchacha_glue.c49 unsigned int bytes, int nrounds) in chacha_dosimd() argument
53 while (bytes >= CHACHA_BLOCK_SIZE * 8) { in chacha_dosimd()
54 chacha_8block_xor_avx512vl(state, dst, src, bytes, in chacha_dosimd()
56 bytes -= CHACHA_BLOCK_SIZE * 8; in chacha_dosimd()
61 if (bytes > CHACHA_BLOCK_SIZE * 4) { in chacha_dosimd()
62 chacha_8block_xor_avx512vl(state, dst, src, bytes, in chacha_dosimd()
64 state[12] += chacha_advance(bytes, 8); in chacha_dosimd()
67 if (bytes > CHACHA_BLOCK_SIZE * 2) { in chacha_dosimd()
68 chacha_4block_xor_avx512vl(state, dst, src, bytes, in chacha_dosimd()
70 state[12] += chacha_advance(bytes, 4); in chacha_dosimd()
[all …]
Dcrct10dif-pcl-asm_64.S64 # Fold reg1, reg2 into the next 32 data bytes, storing the result back into
102 # For sizes less than 256 bytes, we can't fold 128 bytes at a time.
106 # Load the first 128 data bytes. Byte swapping is necessary to make the
133 # Subtract 128 for the 128 data bytes just consumed. Subtract another
137 # While >= 128 data bytes remain (not counting xmm0-7), fold the 128
138 # bytes xmm0-7 into them, storing the result back into xmm0-7.
148 # Now fold the 112 bytes in xmm0-xmm6 into the 16 bytes in xmm7.
150 # Fold across 64 bytes.
156 # Fold across 32 bytes.
160 # Fold across 16 bytes.
[all …]
/Linux-v5.15/fs/btrfs/
Dspace-info.h9 u64 total_bytes; /* total bytes in the space,
11 u64 bytes_used; /* total bytes used,
13 u64 bytes_pinned; /* total bytes pinned, will be freed when the
15 u64 bytes_reserved; /* total bytes the allocator has reserved for
17 u64 bytes_may_use; /* number of bytes that may be used for
19 u64 bytes_readonly; /* total bytes that are read only */
20 u64 bytes_zone_unusable; /* total bytes that are unusable until
40 u64 disk_used; /* total bytes used on disk */
41 u64 disk_total; /* total bytes on disk, takes mirrors into
73 u64 bytes; member
[all …]
Dfree-space-cache.c32 u64 bytes; member
42 u64 *bytes, bool for_alloc);
47 u64 bytes);
551 static int io_ctl_add_entry(struct btrfs_io_ctl *io_ctl, u64 offset, u64 bytes, in io_ctl_add_entry() argument
561 put_unaligned_le64(bytes, &entry->bytes); in io_ctl_add_entry()
635 entry->bytes = get_unaligned_le64(&e->bytes); in io_ctl_read_entry()
692 * bytes we can have, or whatever is less than that. in recalculate_thresholds()
793 if (!e->bytes) { in __load_free_space_cache()
873 info->bytes); in copy_free_space_cache()
877 u64 bytes = ctl->unit; in copy_free_space_cache() local
[all …]
/Linux-v5.15/drivers/gpu/drm/vmwgfx/
Dvmwgfx_cmd.c179 static bool vmw_fifo_is_full(struct vmw_private *dev_priv, uint32_t bytes) in vmw_fifo_is_full() argument
186 return ((max - next_cmd) + (stop - min) <= bytes); in vmw_fifo_is_full()
190 uint32_t bytes, bool interruptible, in vmw_fifo_wait_noirq() argument
203 if (!vmw_fifo_is_full(dev_priv, bytes)) in vmw_fifo_wait_noirq()
223 uint32_t bytes, bool interruptible, in vmw_fifo_wait() argument
228 if (likely(!vmw_fifo_is_full(dev_priv, bytes))) in vmw_fifo_wait()
233 return vmw_fifo_wait_noirq(dev_priv, bytes, in vmw_fifo_wait()
242 !vmw_fifo_is_full(dev_priv, bytes), timeout); in vmw_fifo_wait()
246 !vmw_fifo_is_full(dev_priv, bytes), timeout); in vmw_fifo_wait()
260 * Reserve @bytes number of bytes in the fifo.
[all …]
/Linux-v5.15/arch/hexagon/mm/
Dcopy_user_template.S8 * W: width in bytes
19 p0 = cmp.gtu(bytes,#0)
25 p1 = cmp.gtu(bytes,#15)
32 loopcount = lsr(bytes,#3)
46 bytes -= asl(loopcount,#3)
58 p1 = cmp.gtu(bytes,#7)
63 loopcount = lsr(bytes,#2)
76 bytes -= asl(loopcount,#2)
84 p1 = cmp.gtu(bytes,#3)
89 loopcount = lsr(bytes,#1)
[all …]
/Linux-v5.15/drivers/infiniband/ulp/opa_vnic/
Dopa_vnic_encap.h121 * @rsvd0: reserved bytes
123 * @rsvd1: reserved bytes
125 * @rsvd2: reserved bytes
128 * @rsvd3: reserved bytes
131 * @rsvd4: reserved bytes
158 * @rsvd0: reserved bytes
165 * @rsvd1: reserved bytes
175 * @rsvd2: reserved bytes
178 * @rsvd3: reserved bytes
282 * @tx_bytes: transmit bytes
[all …]
/Linux-v5.15/drivers/gpu/drm/i915/gvt/
Dmmio.c61 void *p_data, unsigned int bytes, bool read) in failsafe_emulate_mmio_rw() argument
76 bytes); in failsafe_emulate_mmio_rw()
79 bytes); in failsafe_emulate_mmio_rw()
84 memcpy(p_data, pt, bytes); in failsafe_emulate_mmio_rw()
86 memcpy(pt, p_data, bytes); in failsafe_emulate_mmio_rw()
97 * @bytes: access data length
103 void *p_data, unsigned int bytes) in intel_vgpu_emulate_mmio_read() argument
111 failsafe_emulate_mmio_rw(vgpu, pa, p_data, bytes, true); in intel_vgpu_emulate_mmio_read()
118 if (drm_WARN_ON(&i915->drm, bytes > 8)) in intel_vgpu_emulate_mmio_read()
125 if (drm_WARN_ON(&i915->drm, bytes != 4 && bytes != 8)) in intel_vgpu_emulate_mmio_read()
[all …]
/Linux-v5.15/drivers/ps3/
Dps3-vuart.c352 const void *buf, unsigned int bytes, u64 *bytes_written) in ps3_vuart_raw_write() argument
358 ps3_mm_phys_to_lpar(__pa(buf)), bytes, bytes_written); in ps3_vuart_raw_write()
369 *bytes_written, bytes, priv->stats.bytes_written); in ps3_vuart_raw_write()
382 unsigned int bytes, u64 *bytes_read) in ps3_vuart_raw_read() argument
387 dev_dbg(&dev->core, "%s:%d: %xh\n", __func__, __LINE__, bytes); in ps3_vuart_raw_read()
390 ps3_mm_phys_to_lpar(__pa(buf)), bytes, bytes_read); in ps3_vuart_raw_read()
401 *bytes_read, bytes, priv->stats.bytes_read); in ps3_vuart_raw_read()
407 * ps3_vuart_clear_rx_bytes - Discard bytes received.
409 * @bytes: Max byte count to discard, zero = all pending.
415 unsigned int bytes) in ps3_vuart_clear_rx_bytes() argument
[all …]
/Linux-v5.15/lib/
Diov_iter.c173 static size_t copy_page_to_iter_iovec(struct page *page, size_t offset, size_t bytes, in copy_page_to_iter_iovec() argument
181 if (unlikely(bytes > i->count)) in copy_page_to_iter_iovec()
182 bytes = i->count; in copy_page_to_iter_iovec()
184 if (unlikely(!bytes)) in copy_page_to_iter_iovec()
188 wanted = bytes; in copy_page_to_iter_iovec()
192 copy = min(bytes, iov->iov_len - skip); in copy_page_to_iter_iovec()
203 bytes -= copy; in copy_page_to_iter_iovec()
205 while (unlikely(!left && bytes)) { in copy_page_to_iter_iovec()
208 copy = min(bytes, iov->iov_len); in copy_page_to_iter_iovec()
213 bytes -= copy; in copy_page_to_iter_iovec()
[all …]
/Linux-v5.15/arch/s390/include/asm/
Dalternative-asm.h9 * than 254 bytes and it has to be divisible by 2.
13 .error "cpu alternatives does not support instructions blocks > 254 bytes\n"
35 * Fill up @bytes with nops. The macro emits 6-byte nop instructions
39 .macro alt_pad_fill bytes
40 .fill ( \bytes ) / 6, 6, 0xc0040000
41 .fill ( \bytes ) % 6 / 4, 4, 0x47000000
42 .fill ( \bytes ) % 6 % 4 / 2, 2, 0x0700
46 * Fill up @bytes with nops. If the number of bytes is larger
48 * fill an area of size (@bytes - 6) with nop instructions.
50 .macro alt_pad bytes
[all …]
/Linux-v5.15/drivers/gpu/drm/msm/dsi/
Dsfpb.xml.h11 - /home/robclark/src/mesa/mesa/src/freedreno/registers/msm.xml ( 981 bytes, fr…
12 - /home/robclark/src/mesa/mesa/src/freedreno/registers/freedreno_copyright.xml ( 1572 bytes, fr…
13 - /home/robclark/src/mesa/mesa/src/freedreno/registers/mdp/mdp4.xml ( 20912 bytes, fr…
14 - /home/robclark/src/mesa/mesa/src/freedreno/registers/mdp/mdp_common.xml ( 2849 bytes, fr…
15 - /home/robclark/src/mesa/mesa/src/freedreno/registers/mdp/mdp5.xml ( 37461 bytes, fr…
16 - /home/robclark/src/mesa/mesa/src/freedreno/registers/dsi/dsi.xml ( 15291 bytes, fr…
17 - /home/robclark/src/mesa/mesa/src/freedreno/registers/dsi/dsi_phy_v2.xml ( 3236 bytes, fr…
18 - /home/robclark/src/mesa/mesa/src/freedreno/registers/dsi/dsi_phy_28nm_8960.xml ( 4935 bytes, fr…
19 - /home/robclark/src/mesa/mesa/src/freedreno/registers/dsi/dsi_phy_28nm.xml ( 7004 bytes, fr…
20 - /home/robclark/src/mesa/mesa/src/freedreno/registers/dsi/dsi_phy_20nm.xml ( 3712 bytes, fr…
[all …]
/Linux-v5.15/drivers/gpu/drm/msm/hdmi/
Dqfprom.xml.h11 - /home/robclark/src/mesa/mesa/src/freedreno/registers/msm.xml ( 981 bytes, fr…
12 - /home/robclark/src/mesa/mesa/src/freedreno/registers/freedreno_copyright.xml ( 1572 bytes, fr…
13 - /home/robclark/src/mesa/mesa/src/freedreno/registers/mdp/mdp4.xml ( 20912 bytes, fr…
14 - /home/robclark/src/mesa/mesa/src/freedreno/registers/mdp/mdp_common.xml ( 2849 bytes, fr…
15 - /home/robclark/src/mesa/mesa/src/freedreno/registers/mdp/mdp5.xml ( 37461 bytes, fr…
16 - /home/robclark/src/mesa/mesa/src/freedreno/registers/dsi/dsi.xml ( 15291 bytes, fr…
17 - /home/robclark/src/mesa/mesa/src/freedreno/registers/dsi/dsi_phy_v2.xml ( 3236 bytes, fr…
18 - /home/robclark/src/mesa/mesa/src/freedreno/registers/dsi/dsi_phy_28nm_8960.xml ( 4935 bytes, fr…
19 - /home/robclark/src/mesa/mesa/src/freedreno/registers/dsi/dsi_phy_28nm.xml ( 7004 bytes, fr…
20 - /home/robclark/src/mesa/mesa/src/freedreno/registers/dsi/dsi_phy_20nm.xml ( 3712 bytes, fr…
[all …]
/Linux-v5.15/tools/perf/pmu-events/arch/x86/ivytown/
Duncore-cache.json16 "ScaleUnit": "64Bytes",
26 "ScaleUnit": "64Bytes",
37 "ScaleUnit": "64Bytes",
48 "ScaleUnit": "64Bytes",
59 "ScaleUnit": "64Bytes",
70 "ScaleUnit": "64Bytes",
81 "ScaleUnit": "64Bytes",
92 "ScaleUnit": "64Bytes",
103 "ScaleUnit": "64Bytes",
114 "ScaleUnit": "64Bytes",
[all …]
/Linux-v5.15/tools/testing/selftests/bpf/progs/
Dtest_sockmap_kern.h237 int *bytes, zero = 0, one = 1, two = 2, three = 3, four = 4, five = 5; in bpf_prog4() local
240 bytes = bpf_map_lookup_elem(&sock_apply_bytes, &zero); in bpf_prog4()
241 if (bytes) in bpf_prog4()
242 bpf_msg_apply_bytes(msg, *bytes); in bpf_prog4()
243 bytes = bpf_map_lookup_elem(&sock_cork_bytes, &zero); in bpf_prog4()
244 if (bytes) in bpf_prog4()
245 bpf_msg_cork_bytes(msg, *bytes); in bpf_prog4()
265 int *bytes, *start, *end, *start_push, *end_push, *start_pop, *pop, *f; in bpf_prog6() local
268 bytes = bpf_map_lookup_elem(&sock_apply_bytes, &zero); in bpf_prog6()
269 if (bytes) in bpf_prog6()
[all …]
/Linux-v5.15/include/trace/events/
Drandom.h12 TP_PROTO(int bytes, unsigned long IP),
14 TP_ARGS(bytes, IP),
17 __field( int, bytes )
22 __entry->bytes = bytes;
26 TP_printk("bytes %d caller %pS",
27 __entry->bytes, (void *)__entry->IP)
31 TP_PROTO(const char *pool_name, int bytes, unsigned long IP),
33 TP_ARGS(pool_name, bytes, IP),
37 __field( int, bytes )
43 __entry->bytes = bytes;
[all …]
/Linux-v5.15/drivers/gpu/drm/amd/include/
Damd_acpi.h30 u16 size; /* structure size in bytes (includes size field) */
37 u16 size; /* structure size in bytes (includes size field) */
44 u16 size; /* structure size in bytes (includes size field) */
56 u16 size; /* structure size in bytes (includes size field) */
68 u16 size; /* structure size in bytes (includes size field) */
85 u16 size; /* structure size in bytes (includes size field) */
93 u16 size; /* structure size in bytes (includes size field) */
102 u16 size; /* structure size in bytes (includes size field) */
107 u16 size; /* structure size in bytes (includes size field) */
116 * ARG1: (ACPI_BUFFER) parameter buffer, 256 bytes
[all …]
/Linux-v5.15/tools/power/acpi/man/
Dacpidump.874 Acpi table [DSDT] - 15974 bytes written to DSDT.dat
75 Acpi table [FACS] - 64 bytes written to FACS.dat
76 Acpi table [FACP] - 116 bytes written to FACP.dat
77 Acpi table [APIC] - 120 bytes written to APIC.dat
78 Acpi table [MCFG] - 60 bytes written to MCFG.dat
79 Acpi table [SSDT] - 444 bytes written to SSDT1.dat
80 Acpi table [SSDT] - 439 bytes written to SSDT2.dat
81 Acpi table [SSDT] - 439 bytes written to SSDT3.dat
82 Acpi table [SSDT] - 439 bytes written to SSDT4.dat
83 Acpi table [SSDT] - 439 bytes written to SSDT5.dat
[all …]

12345678910>>...270