Home
last modified time | relevance | path

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

12345678910>>...250

/linux-5.10/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-5.10/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-5.10/include/linux/
Duio.h89 * Total number of bytes covered by an iovec.
115 struct iov_iter *i, unsigned long offset, size_t bytes);
116 void iov_iter_advance(struct iov_iter *i, size_t bytes);
117 void iov_iter_revert(struct iov_iter *i, size_t bytes);
118 int iov_iter_fault_in_readable(struct iov_iter *i, size_t bytes);
120 size_t copy_page_to_iter(struct page *page, size_t offset, size_t bytes,
122 size_t copy_page_from_iter(struct page *page, size_t offset, size_t bytes,
125 size_t _copy_to_iter(const void *addr, size_t bytes, struct iov_iter *i);
126 size_t _copy_from_iter(void *addr, size_t bytes, struct iov_iter *i);
127 bool _copy_from_iter_full(void *addr, size_t bytes, struct iov_iter *i);
[all …]
Dccp.h149 * @key_len: length in bytes of key
151 * @iv_len: length in bytes of iv
154 * @src_len: length in bytes of data used for this operation
157 * @cmac_key_len: length in bytes of cmac_key
176 u32 key_len; /* In bytes */
179 u32 iv_len; /* In bytes */
182 u64 src_len; /* In bytes */
187 u32 cmac_key_len; /* In bytes */
189 u32 aad_len; /* In bytes */
196 * @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-5.10/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-5.10/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 */
34 u64 disk_used; /* total bytes used on disk */
35 u64 disk_total; /* total bytes on disk, takes mirrors into
44 * bytes_pinned does not reflect the bytes that will be pinned once the
79 u64 bytes; member
[all …]
Dfree-space-cache.c32 u64 bytes; member
516 static int io_ctl_add_entry(struct btrfs_io_ctl *io_ctl, u64 offset, u64 bytes, in io_ctl_add_entry() argument
526 put_unaligned_le64(bytes, &entry->bytes); in io_ctl_add_entry()
600 entry->bytes = get_unaligned_le64(&e->bytes); in io_ctl_read_entry()
650 if (prev->offset + prev->bytes == e->offset) { in merge_space_tree()
653 prev->bytes += e->bytes; in merge_space_tree()
766 if (!e->bytes) { in __load_free_space_cache()
823 ctl->discardable_bytes[BTRFS_STAT_CURR] += e->bytes; in __load_free_space_cache()
970 ret = io_ctl_add_entry(io_ctl, e->offset, e->bytes, in write_cache_extent_entries()
1000 trim_entry->bytes, NULL); in write_cache_extent_entries()
[all …]
/linux-5.10/lib/
Diov_iter.c164 static size_t copy_page_to_iter_iovec(struct page *page, size_t offset, size_t bytes, in copy_page_to_iter_iovec() argument
172 if (unlikely(bytes > i->count)) in copy_page_to_iter_iovec()
173 bytes = i->count; in copy_page_to_iter_iovec()
175 if (unlikely(!bytes)) in copy_page_to_iter_iovec()
179 wanted = bytes; in copy_page_to_iter_iovec()
183 copy = min(bytes, iov->iov_len - skip); in copy_page_to_iter_iovec()
194 bytes -= copy; in copy_page_to_iter_iovec()
196 while (unlikely(!left && bytes)) { in copy_page_to_iter_iovec()
199 copy = min(bytes, iov->iov_len); in copy_page_to_iter_iovec()
204 bytes -= copy; in copy_page_to_iter_iovec()
[all …]
/linux-5.10/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-5.10/drivers/gpu/drm/vmwgfx/
Dvmwgfx_fifo.c206 static bool vmw_fifo_is_full(struct vmw_private *dev_priv, uint32_t bytes) in vmw_fifo_is_full() argument
214 return ((max - next_cmd) + (stop - min) <= bytes); in vmw_fifo_is_full()
218 uint32_t bytes, bool interruptible, in vmw_fifo_wait_noirq() argument
231 if (!vmw_fifo_is_full(dev_priv, bytes)) in vmw_fifo_wait_noirq()
251 uint32_t bytes, bool interruptible, in vmw_fifo_wait() argument
256 if (likely(!vmw_fifo_is_full(dev_priv, bytes))) in vmw_fifo_wait()
261 return vmw_fifo_wait_noirq(dev_priv, bytes, in vmw_fifo_wait()
270 !vmw_fifo_is_full(dev_priv, bytes), timeout); in vmw_fifo_wait()
274 !vmw_fifo_is_full(dev_priv, bytes), timeout); in vmw_fifo_wait()
288 * Reserve @bytes number of bytes in the fifo.
[all …]
/linux-5.10/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-5.10/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-5.10/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-5.10/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-5.10/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-5.10/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-5.10/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 …]
/linux-5.10/arch/arm/include/asm/
Dxor.h47 xor_arm4regs_2(unsigned long bytes, unsigned long *p1, unsigned long *p2) in xor_arm4regs_2() argument
49 unsigned int lines = bytes / sizeof(unsigned long) / 4; in xor_arm4regs_2()
67 xor_arm4regs_3(unsigned long bytes, unsigned long *p1, unsigned long *p2, in xor_arm4regs_3() argument
70 unsigned int lines = bytes / sizeof(unsigned long) / 4; in xor_arm4regs_3()
89 xor_arm4regs_4(unsigned long bytes, unsigned long *p1, unsigned long *p2, in xor_arm4regs_4() argument
92 unsigned int lines = bytes / sizeof(unsigned long) / 2; in xor_arm4regs_4()
108 xor_arm4regs_5(unsigned long bytes, unsigned long *p1, unsigned long *p2, in xor_arm4regs_5() argument
111 unsigned int lines = bytes / sizeof(unsigned long) / 2; in xor_arm4regs_5()
149 xor_neon_2(unsigned long bytes, unsigned long *p1, unsigned long *p2) in xor_neon_2() argument
152 xor_arm4regs_2(bytes, p1, p2); in xor_neon_2()
[all …]
/linux-5.10/lib/842/
D842.h13 * number of data bytes to add to the output buffer, or an index pointing
14 * to a previously-written number of data bytes to copy to the output buffer.
22 * bytes being written to the output buffer. Each template (i.e. all actions
23 * in the table row) will add up to 8 bytes being written to the output buffer.
28 * corresponding arg is 2, 4, or 8 bytes, respectively, in the compressed data
35 * in a ring buffer that contains the last N bytes of output buffer data.
38 * this means that I2 can reference 512 bytes ((2^8 bits = 256) * 2 bytes), I4
39 * can reference 2048 bytes ((2^9 = 512) * 4 bytes), and I8 can reference 2048
40 * bytes ((2^8 = 256) * 8 bytes). Think of it as a kind-of ring buffer for
45 * bytes written to the output buffer, an I2 index of 0 would index to byte 256
[all …]
/linux-5.10/arch/arm/crypto/
Dcrct10dif-ce-core.S115 // Fold reg1, reg2 into the next 32 data bytes, storing the result back
159 // For sizes less than 256 bytes, we can't fold 128 bytes at a time.
165 // Load the first 128 data bytes. Byte swapping is necessary to make
193 // Load the constants for folding across 128 bytes.
196 // Subtract 128 for the 128 data bytes just consumed. Subtract another
200 // While >= 128 data bytes remain (not counting q0-q7), fold the 128
201 // bytes q0-q7 into them, storing the result back into q0-q7.
210 // Now fold the 112 bytes in q0-q6 into the 16 bytes in q7.
212 // Fold across 64 bytes.
218 // Fold across 32 bytes.
[all …]
/linux-5.10/drivers/gpu/drm/radeon/
Dradeon_acpi.h33 * ARG1: (ACPI_BUFFER) parameter buffer, 256 bytes
34 * OUTPUT: (ACPI_BUFFER) output buffer, 256 bytes
47 * ARG1: (ACPI_BUFFER) parameter buffer, 256 bytes
48 * OUTPUT: (ACPI_BUFFER) output buffer, 256 bytes
61 * ARG1: (ACPI_BUFFER) parameter buffer, 256 bytes
62 * OUTPUT: (ACPI_BUFFER) output buffer, 256 bytes
71 * WORD - structure size in bytes (includes size field)
102 * WORD - structure size in bytes (includes size field)
108 * WORD - structure size in bytes (includes size field)
126 * WORD - structure size in bytes (includes size field)
[all …]
/linux-5.10/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) */
109 * ARG1: (ACPI_BUFFER) parameter buffer, 256 bytes
110 * OUTPUT: (ACPI_BUFFER) output buffer, 256 bytes
[all …]

12345678910>>...250