Home
last modified time | relevance | path

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

12345678910>>...231

/Linux-v6.1/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-v6.1/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-v6.1/drivers/md/
Ddm-io-rewind.c14 unsigned int bytes) in dm_bvec_iter_rewind() argument
18 iter->bi_size += bytes; in dm_bvec_iter_rewind()
19 if (bytes <= iter->bi_bvec_done) { in dm_bvec_iter_rewind()
20 iter->bi_bvec_done -= bytes; in dm_bvec_iter_rewind()
24 bytes -= iter->bi_bvec_done; in dm_bvec_iter_rewind()
27 while (idx >= 0 && bytes && bytes > bv[idx].bv_len) { in dm_bvec_iter_rewind()
28 bytes -= bv[idx].bv_len; in dm_bvec_iter_rewind()
32 if (WARN_ONCE(idx < 0 && bytes, in dm_bvec_iter_rewind()
34 iter->bi_size -= bytes; in dm_bvec_iter_rewind()
41 iter->bi_bvec_done = bv[idx].bv_len - bytes; in dm_bvec_iter_rewind()
[all …]
/Linux-v6.1/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-v6.1/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-v6.1/fs/btrfs/
Dspace-info.h11 u64 total_bytes; /* total bytes in the space,
13 u64 bytes_used; /* total bytes used,
15 u64 bytes_pinned; /* total bytes pinned, will be freed when the
17 u64 bytes_reserved; /* total bytes the allocator has reserved for
19 u64 bytes_may_use; /* number of bytes that may be used for
21 u64 bytes_readonly; /* total bytes that are read only */
22 /* Total bytes in the space, but only accounts active block groups. */
24 u64 bytes_zone_unusable; /* total bytes that are unusable until
30 /* Chunk size in bytes */
52 u64 disk_used; /* total bytes used on disk */
[all …]
Dfree-space-cache.c34 u64 bytes; member
44 u64 *bytes, bool for_alloc);
49 u64 bytes, bool update_stats);
587 static int io_ctl_add_entry(struct btrfs_io_ctl *io_ctl, u64 offset, u64 bytes, in io_ctl_add_entry() argument
597 put_unaligned_le64(bytes, &entry->bytes); in io_ctl_add_entry()
671 entry->bytes = get_unaligned_le64(&e->bytes); in io_ctl_read_entry()
734 * bytes we can have, or whatever is less than that. in recalculate_thresholds()
835 if (!e->bytes) { in __load_free_space_cache()
918 info->bytes); in copy_free_space_cache()
922 u64 bytes = ctl->unit; in copy_free_space_cache() local
[all …]
/Linux-v6.1/include/linux/
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 …]
Duio.h125 * Total number of bytes covered by an iovec.
151 size_t bytes, struct iov_iter *i);
152 void iov_iter_advance(struct iov_iter *i, size_t bytes);
153 void iov_iter_revert(struct iov_iter *i, size_t bytes);
154 size_t fault_in_iov_iter_readable(const struct iov_iter *i, size_t bytes);
155 size_t fault_in_iov_iter_writeable(const struct iov_iter *i, size_t bytes);
157 size_t copy_page_to_iter(struct page *page, size_t offset, size_t bytes,
159 size_t copy_page_from_iter(struct page *page, size_t offset, size_t bytes,
162 size_t _copy_to_iter(const void *addr, size_t bytes, struct iov_iter *i);
163 size_t _copy_from_iter(void *addr, size_t bytes, struct iov_iter *i);
[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-v6.1/drivers/net/ethernet/marvell/octeon_ep/
Doctep_ctrl_mbox.h12 * |Info (16 + 120 + 120 = 256 bytes) |
14 * |magic number (8 bytes) |
15 * |bar memory size (4 bytes) |
16 * |reserved (4 bytes) |
18 * |host version (8 bytes) |
19 * |host status (8 bytes) |
20 * |host reserved (104 bytes) |
22 * |fw version (8 bytes) |
23 * |fw status (8 bytes) |
24 * |fw reserved (104 bytes) |
[all …]
/Linux-v6.1/drivers/gpu/drm/vmwgfx/
Dvmwgfx_cmd.c186 static bool vmw_fifo_is_full(struct vmw_private *dev_priv, uint32_t bytes) in vmw_fifo_is_full() argument
193 return ((max - next_cmd) + (stop - min) <= bytes); in vmw_fifo_is_full()
197 uint32_t bytes, bool interruptible, in vmw_fifo_wait_noirq() argument
210 if (!vmw_fifo_is_full(dev_priv, bytes)) in vmw_fifo_wait_noirq()
230 uint32_t bytes, bool interruptible, in vmw_fifo_wait() argument
235 if (likely(!vmw_fifo_is_full(dev_priv, bytes))) in vmw_fifo_wait()
240 return vmw_fifo_wait_noirq(dev_priv, bytes, in vmw_fifo_wait()
249 !vmw_fifo_is_full(dev_priv, bytes), timeout); in vmw_fifo_wait()
253 !vmw_fifo_is_full(dev_priv, bytes), timeout); in vmw_fifo_wait()
267 * Reserve @bytes number of bytes in the fifo.
[all …]
/Linux-v6.1/drivers/staging/media/atomisp/pci/hmm/
Dhmm.c171 static ia_css_ptr __hmm_alloc(size_t bytes, enum hmm_bo_type type, const void __user *userptr) in __hmm_alloc() argument
185 pgnr = size_to_pgnr_ceil(bytes); in __hmm_alloc()
209 "%s: pages: 0x%08x (%zu bytes), type: %d, user ptr %p\n", in __hmm_alloc()
210 __func__, bo->start, bytes, type, userptr); in __hmm_alloc()
222 ia_css_ptr hmm_alloc(size_t bytes) in hmm_alloc() argument
224 return __hmm_alloc(bytes, HMM_BO_PRIVATE, NULL); in hmm_alloc()
227 ia_css_ptr hmm_create_from_userdata(size_t bytes, const void __user *userptr) in hmm_create_from_userdata() argument
229 return __hmm_alloc(bytes, HMM_BO_USER, userptr); in hmm_create_from_userdata()
281 unsigned int bytes) in load_and_flush_by_kmap() argument
294 while (bytes) { in load_and_flush_by_kmap()
[all …]
/Linux-v6.1/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-v6.1/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-v6.1/drivers/gpu/drm/i915/gvt/
Dmmio.c64 void *p_data, unsigned int bytes, bool read) in failsafe_emulate_mmio_rw() argument
79 bytes); in failsafe_emulate_mmio_rw()
82 bytes); in failsafe_emulate_mmio_rw()
87 memcpy(p_data, pt, bytes); in failsafe_emulate_mmio_rw()
89 memcpy(pt, p_data, bytes); in failsafe_emulate_mmio_rw()
100 * @bytes: access data length
106 void *p_data, unsigned int bytes) in intel_vgpu_emulate_mmio_read() argument
114 failsafe_emulate_mmio_rw(vgpu, pa, p_data, bytes, true); in intel_vgpu_emulate_mmio_read()
121 if (drm_WARN_ON(&i915->drm, bytes > 8)) in intel_vgpu_emulate_mmio_read()
128 if (drm_WARN_ON(&i915->drm, bytes != 4 && bytes != 8)) in intel_vgpu_emulate_mmio_read()
[all …]
/Linux-v6.1/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-v6.1/drivers/gpu/drm/msm/dsi/
Dsfpb.xml.h11 - /home/robclark/tmp/mesa/src/freedreno/registers/msm.xml ( 944 bytes, from 20…
12 - /home/robclark/tmp/mesa/src/freedreno/registers/freedreno_copyright.xml ( 1572 bytes, from 20…
13 - /home/robclark/tmp/mesa/src/freedreno/registers/mdp/mdp4.xml ( 20912 bytes, from 20…
14 - /home/robclark/tmp/mesa/src/freedreno/registers/mdp/mdp_common.xml ( 2849 bytes, from 20…
15 - /home/robclark/tmp/mesa/src/freedreno/registers/mdp/mdp5.xml ( 37461 bytes, from 20…
16 - /home/robclark/tmp/mesa/src/freedreno/registers/dsi/dsi.xml ( 17560 bytes, from 20…
17 - /home/robclark/tmp/mesa/src/freedreno/registers/dsi/dsi_phy_v2.xml ( 3236 bytes, from 20…
18 - /home/robclark/tmp/mesa/src/freedreno/registers/dsi/dsi_phy_28nm_8960.xml ( 4935 bytes, from 20…
19 - /home/robclark/tmp/mesa/src/freedreno/registers/dsi/dsi_phy_28nm.xml ( 7004 bytes, from 20…
20 - /home/robclark/tmp/mesa/src/freedreno/registers/dsi/dsi_phy_20nm.xml ( 3712 bytes, from 20…
[all …]
/Linux-v6.1/drivers/gpu/drm/msm/hdmi/
Dqfprom.xml.h11 - /home/robclark/tmp/mesa/src/freedreno/registers/msm.xml ( 944 bytes, from 20…
12 - /home/robclark/tmp/mesa/src/freedreno/registers/freedreno_copyright.xml ( 1572 bytes, from 20…
13 - /home/robclark/tmp/mesa/src/freedreno/registers/mdp/mdp4.xml ( 20912 bytes, from 20…
14 - /home/robclark/tmp/mesa/src/freedreno/registers/mdp/mdp_common.xml ( 2849 bytes, from 20…
15 - /home/robclark/tmp/mesa/src/freedreno/registers/mdp/mdp5.xml ( 37461 bytes, from 20…
16 - /home/robclark/tmp/mesa/src/freedreno/registers/dsi/dsi.xml ( 17560 bytes, from 20…
17 - /home/robclark/tmp/mesa/src/freedreno/registers/dsi/dsi_phy_v2.xml ( 3236 bytes, from 20…
18 - /home/robclark/tmp/mesa/src/freedreno/registers/dsi/dsi_phy_28nm_8960.xml ( 4935 bytes, from 20…
19 - /home/robclark/tmp/mesa/src/freedreno/registers/dsi/dsi_phy_28nm.xml ( 7004 bytes, from 20…
20 - /home/robclark/tmp/mesa/src/freedreno/registers/dsi/dsi_phy_20nm.xml ( 3712 bytes, from 20…
[all …]
/Linux-v6.1/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()
268 int *bytes, *start, *end, *start_push, *end_push, *start_pop, *pop, *f; in bpf_prog6() local
272 bytes = bpf_map_lookup_elem(&sock_apply_bytes, &zero); in bpf_prog6()
273 if (bytes) in bpf_prog6()
[all …]
/Linux-v6.1/drivers/staging/r8188eu/include/
DHal8188EPhyCfg.h26 /* 0x870~0x877[8 bytes] */
28 /* 0x8e0~0x8e7[8 bytes] */
30 /* 0x860~0x86f [16 bytes] */
32 /* 0x860~0x86f [16 bytes] */
34 /* 0x840~0x84f [16 bytes] */
36 /* 0x878~0x87f [8 bytes] */
38 /* 0x80c~0x80f [4 bytes] */
41 * 0x830~0x833, 0x838~0x83b [16 bytes] */
44 * 0x83c~0x83f [16 bytes] */
46 /* 0x858~0x85f [16 bytes] */
[all …]
/Linux-v6.1/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-v6.1/drivers/gpu/drm/msm/disp/
Dmdp_common.xml.h11 - /home/robclark/tmp/mesa/src/freedreno/registers/msm.xml ( 944 bytes, from 20…
12 - /home/robclark/tmp/mesa/src/freedreno/registers/freedreno_copyright.xml ( 1572 bytes, from 20…
13 - /home/robclark/tmp/mesa/src/freedreno/registers/mdp/mdp4.xml ( 20912 bytes, from 20…
14 - /home/robclark/tmp/mesa/src/freedreno/registers/mdp/mdp_common.xml ( 2849 bytes, from 20…
15 - /home/robclark/tmp/mesa/src/freedreno/registers/mdp/mdp5.xml ( 37461 bytes, from 20…
16 - /home/robclark/tmp/mesa/src/freedreno/registers/dsi/dsi.xml ( 17560 bytes, from 20…
17 - /home/robclark/tmp/mesa/src/freedreno/registers/dsi/dsi_phy_v2.xml ( 3236 bytes, from 20…
18 - /home/robclark/tmp/mesa/src/freedreno/registers/dsi/dsi_phy_28nm_8960.xml ( 4935 bytes, from 20…
19 - /home/robclark/tmp/mesa/src/freedreno/registers/dsi/dsi_phy_28nm.xml ( 7004 bytes, from 20…
20 - /home/robclark/tmp/mesa/src/freedreno/registers/dsi/dsi_phy_20nm.xml ( 3712 bytes, from 20…
[all …]

12345678910>>...231