Home
last modified time | relevance | path

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

12345678910>>...275

/linux/drivers/scsi/
H A 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 11
[all...]
H A 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 2
576 unsigned char bytes[16]; /* Bytes 0-15 */ global() member
[all...]
/linux/fs/bcachefs/
H A Dvarint.c19 * Returns: size in bytes of the encoded integer - at most 9 bytes
24 unsigned bytes = DIV_ROUND_UP(bits, 7); in bch2_varint_encode() local
27 if (likely(bytes < 9)) { in bch2_varint_encode()
28 v <<= bytes; in bch2_varint_encode()
29 v |= ~(~0 << (bytes - 1)); in bch2_varint_encode()
31 memcpy(out, &v_le, bytes); in bch2_varint_encode()
34 bytes = 9; in bch2_varint_encode()
38 return bytes; in bch2_varint_encode()
46 * Returns: size in bytes o
51 unsigned bytes = likely(in < end) bch2_varint_decode() local
85 unsigned bytes = DIV_ROUND_UP(bits, 7); bch2_varint_encode_fast() local
116 unsigned bytes = ffz(*in) + 1; bch2_varint_decode_fast() local
[all...]
/linux/tools/perf/pmu-events/arch/x86/amdzen5/
H A Ddata-fabric.json4 "PublicDescription": "Read data beats (64 bytes) for transactions between local or remote socket and DRAM Channel 0.",
12 "PublicDescription": "Read data beats (64 bytes) for transactions between local or remote socket and DRAM Channel 1.",
20 "PublicDescription": "Read data beats (64 bytes) for transactions between local or remote socket and DRAM Channel 2.",
28 "PublicDescription": "Read data beats (64 bytes) for transactions between local or remote socket and DRAM Channel 3.",
36 "PublicDescription": "Read data beats (64 bytes) for transactions between local or remote socket and DRAM Channel 4.",
44 "PublicDescription": "Read data beats (64 bytes) for transactions between local or remote socket and DRAM Channel 5.",
52 "PublicDescription": "Read data beats (64 bytes) for transactions between local or remote socket and DRAM Channel 6.",
60 "PublicDescription": "Read data beats (64 bytes) for transactions between local or remote socket and DRAM Channel 7.",
68 "PublicDescription": "Read data beats (64 bytes) for transactions between local or remote socket and DRAM Channel 8.",
76 "PublicDescription": "Read data beats (64 bytes) fo
[all...]
/linux/include/sound/
H A 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()
85 int bytes = ptr - rec->hw_io; snd_pcm_indirect_playback_pointer() local
128 size_t bytes = rec->sw_buffer_size - rec->sw_ready; snd_pcm_indirect_capture_transfer() local
159 int bytes = ptr - rec->hw_io; snd_pcm_indirect_capture_pointer() local
[all...]
/linux/tools/perf/pmu-events/arch/x86/amdzen4/
H A Ddata-fabric.json4 "PublicDescription": "Read data beats (64 bytes) for local processor at Coherent Station (CS) 0.",
12 "PublicDescription": "Read data beats (64 bytes) for local processor at Coherent Station (CS) 1.",
20 "PublicDescription": "Read data beats (64 bytes) for local processor at Coherent Station (CS) 2.",
28 "PublicDescription": "Read data beats (64 bytes) for local processor at Coherent Station (CS) 3.",
36 "PublicDescription": "Read data beats (64 bytes) for local processor at Coherent Station (CS) 4.",
44 "PublicDescription": "Read data beats (64 bytes) for local processor at Coherent Station (CS) 5.",
52 "PublicDescription": "Read data beats (64 bytes) for local processor at Coherent Station (CS) 6.",
60 "PublicDescription": "Read data beats (64 bytes) for local processor at Coherent Station (CS) 7.",
68 "PublicDescription": "Read data beats (64 bytes) for local processor at Coherent Station (CS) 8.",
76 "PublicDescription": "Read data beats (64 bytes) fo
[all...]
/linux/lib/crypto/x86/
H A Dchacha_glue.c55 unsigned int bytes, int nrounds) in chacha_dosimd() argument
58 while (bytes >= CHACHA_BLOCK_SIZE * 8) { in chacha_dosimd()
59 chacha_8block_xor_avx512vl(state, dst, src, bytes, in chacha_dosimd()
61 bytes -= CHACHA_BLOCK_SIZE * 8; in chacha_dosimd()
66 if (bytes > CHACHA_BLOCK_SIZE * 4) { in chacha_dosimd()
67 chacha_8block_xor_avx512vl(state, dst, src, bytes, in chacha_dosimd()
69 state->x[12] += chacha_advance(bytes, 8); in chacha_dosimd()
72 if (bytes > CHACHA_BLOCK_SIZE * 2) { in chacha_dosimd()
73 chacha_4block_xor_avx512vl(state, dst, src, bytes, in chacha_dosimd()
75 state->x[12] += chacha_advance(bytes, in chacha_dosimd()
143 chacha_crypt_arch(struct chacha_state * state,u8 * dst,const u8 * src,unsigned int bytes,int nrounds) chacha_crypt_arch() argument
[all...]
/linux/drivers/power/supply/
H A Dmax1720x_battery.c154 { .name = "nXTable0", .offset = 0, .bytes = 2, },
155 { .name = "nXTable1", .offset = 2, .bytes = 2, },
156 { .name = "nXTable2", .offset = 4, .bytes = 2, },
157 { .name = "nXTable3", .offset = 6, .bytes = 2, },
158 { .name = "nXTable4", .offset = 8, .bytes = 2, },
159 { .name = "nXTable5", .offset = 10, .bytes = 2, },
160 { .name = "nXTable6", .offset = 12, .bytes = 2, },
161 { .name = "nXTable7", .offset = 14, .bytes = 2, },
162 { .name = "nXTable8", .offset = 16, .bytes = 2, },
163 { .name = "nXTable9", .offset = 18, .bytes
[all...]
/linux/drivers/md/
H A 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()
60 unsigned int bytes = bio_integrity_bytes(bi, bytes_done >> 9); dm_bio_integrity_rewind() local
94 dm_bio_crypt_rewind(struct bio * bio,unsigned int bytes) dm_bio_crypt_rewind() argument
104 dm_bio_crypt_rewind(struct bio * bio,unsigned int bytes) dm_bio_crypt_rewind() argument
111 dm_bio_rewind_iter(const struct bio * bio,struct bvec_iter * iter,unsigned int bytes) dm_bio_rewind_iter() argument
132 dm_bio_rewind(struct bio * bio,unsigned int bytes) dm_bio_rewind() argument
[all...]
/linux/tools/perf/pmu-events/arch/arm64/freescale/imx95/sys/
H A Dmetrics.json19 "BriefDescription": "bytes of all masters read from ddr",
27 "BriefDescription": "bytes of all masters write to ddr",
35 "BriefDescription": "bytes of all a55 read from ddr",
43 "BriefDescription": "bytes of all a55 write to ddr (part1)",
51 "BriefDescription": "bytes of all a55 write to ddr (part2)",
59 "BriefDescription": "bytes of a55 core 0 read from ddr",
67 "BriefDescription": "bytes of a55 core 0 write to ddr",
75 "BriefDescription": "bytes of a55 core 1 read from ddr",
83 "BriefDescription": "bytes of a55 core 1 write to ddr",
91 "BriefDescription": "bytes o
[all...]
/linux/tools/perf/pmu-events/arch/arm64/freescale/imx8mp/sys/
H A 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 o
[all...]
/linux/arch/arm64/include/asm/
H A Drsi_smc.h70 * ret1 == Measurement value, bytes: 0 - 7
71 * ret2 == Measurement value, bytes: 8 - 15
72 * ret3 == Measurement value, bytes: 16 - 23
73 * ret4 == Measurement value, bytes: 24 - 31
74 * ret5 == Measurement value, bytes: 32 - 39
75 * ret6 == Measurement value, bytes: 40 - 47
76 * ret7 == Measurement value, bytes: 48 - 55
77 * ret8 == Measurement value, bytes: 56 - 63
85 * arg2 == Size of realm measurement in bytes, max 64 bytes
[all...]
/linux/include/linux/
H A 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...]
H A Duio.h169 * Total number of bytes covered by an iovec.
185 void iov_iter_advance(struct iov_iter *i, size_t bytes);
186 void iov_iter_revert(struct iov_iter *i, size_t bytes);
187 size_t fault_in_iov_iter_readable(const struct iov_iter *i, size_t bytes);
188 size_t fault_in_iov_iter_writeable(const struct iov_iter *i, size_t bytes);
190 size_t copy_page_to_iter(struct page *page, size_t offset, size_t bytes,
192 size_t copy_page_from_iter(struct page *page, size_t offset, size_t bytes,
195 size_t bytes, struct iov_iter *i);
197 size_t _copy_to_iter(const void *addr, size_t bytes, struct iov_iter *i);
198 size_t _copy_from_iter(void *addr, size_t bytes, struc
202 copy_folio_to_iter(struct folio * folio,size_t offset,size_t bytes,struct iov_iter * i) copy_folio_to_iter() argument
208 copy_folio_from_iter(struct folio * folio,size_t offset,size_t bytes,struct iov_iter * i) copy_folio_from_iter() argument
217 copy_to_iter(const void * addr,size_t bytes,struct iov_iter * i) copy_to_iter() argument
225 copy_from_iter(void * addr,size_t bytes,struct iov_iter * i) copy_from_iter() argument
233 copy_to_iter_full(const void * addr,size_t bytes,struct iov_iter * i) copy_to_iter_full() argument
243 copy_from_iter_full(void * addr,size_t bytes,struct iov_iter * i) copy_from_iter_full() argument
253 copy_from_iter_nocache(void * addr,size_t bytes,struct iov_iter * i) copy_from_iter_nocache() argument
261 copy_from_iter_full_nocache(void * addr,size_t bytes,struct iov_iter * i) copy_from_iter_full_nocache() argument
[all...]
H A 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()
59 task_io_account_read(size_t bytes) task_io_account_read() argument
68 task_io_account_write(size_t bytes) task_io_account_write() argument
77 task_io_account_cancelled_write(size_t bytes) task_io_account_cancelled_write() argument
[all...]
/linux/drivers/gpu/drm/vmwgfx/
H A Dvmwgfx_cmd.c187 static bool vmw_fifo_is_full(struct vmw_private *dev_priv, uint32_t bytes) in vmw_fifo_is_full() argument
194 return ((max - next_cmd) + (stop - min) <= bytes); in vmw_fifo_is_full()
198 uint32_t bytes, bool interruptible, in vmw_fifo_wait_noirq() argument
211 if (!vmw_fifo_is_full(dev_priv, bytes)) in vmw_fifo_wait_noirq()
231 uint32_t bytes, bool interruptible, in vmw_fifo_wait() argument
236 if (likely(!vmw_fifo_is_full(dev_priv, bytes))) in vmw_fifo_wait()
241 return vmw_fifo_wait_noirq(dev_priv, bytes, in vmw_fifo_wait()
250 !vmw_fifo_is_full(dev_priv, bytes), timeout); in vmw_fifo_wait()
254 !vmw_fifo_is_full(dev_priv, bytes), timeout); in vmw_fifo_wait()
268 * Reserve @bytes numbe
278 vmw_local_fifo_reserve(struct vmw_private * dev_priv,uint32_t bytes) vmw_local_fifo_reserve() argument
365 vmw_cmd_ctx_reserve(struct vmw_private * dev_priv,uint32_t bytes,int ctx_id) vmw_cmd_ctx_reserve() argument
388 vmw_fifo_res_copy(struct vmw_fifo_state * fifo_state,struct vmw_private * vmw,uint32_t next_cmd,uint32_t max,uint32_t min,uint32_t bytes) vmw_fifo_res_copy() argument
410 vmw_fifo_slow_copy(struct vmw_fifo_state * fifo_state,struct vmw_private * vmw,uint32_t next_cmd,uint32_t max,uint32_t min,uint32_t bytes) vmw_fifo_slow_copy() argument
427 vmw_local_fifo_commit(struct vmw_private * dev_priv,uint32_t bytes) vmw_local_fifo_commit() argument
472 vmw_cmd_commit(struct vmw_private * dev_priv,uint32_t bytes) vmw_cmd_commit() argument
487 vmw_cmd_commit_flush(struct vmw_private * dev_priv,uint32_t bytes) vmw_cmd_commit_flush() argument
517 uint32_t bytes = sizeof(u32) + sizeof(*cmd_fence); vmw_cmd_send_fence() local
[all...]
/linux/arch/hexagon/mm/
H A 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,#
[all...]
/linux/drivers/infiniband/ulp/opa_vnic/
H A 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/fs/btrfs/
H A Dfree-space-cache.c42 u64 bytes; member
52 u64 *bytes, bool for_alloc);
57 u64 bytes, bool update_stats);
577 static int io_ctl_add_entry(struct btrfs_io_ctl *io_ctl, u64 offset, u64 bytes, in io_ctl_add_entry() argument
587 put_unaligned_le64(bytes, &entry->bytes); in io_ctl_add_entry()
661 entry->bytes = get_unaligned_le64(&e->bytes); in io_ctl_read_entry()
724 * bytes we can have, or whatever is less than that. in recalculate_thresholds()
825 if (!e->bytes) { in __load_free_space_cache()
909 const u64 bytes = info->bytes; copy_free_space_cache() local
918 u64 bytes = ctl->unit; copy_free_space_cache() local
1569 bytes_to_bits(u64 bytes,u32 unit) bytes_to_bits() argument
1882 bitmap_clear_bits(struct btrfs_free_space_ctl * ctl,struct btrfs_free_space * info,u64 offset,u64 bytes,bool update_stat) bitmap_clear_bits() argument
1918 btrfs_bitmap_set_bits(struct btrfs_free_space_ctl * ctl,struct btrfs_free_space * info,u64 offset,u64 bytes) btrfs_bitmap_set_bits() argument
1959 search_bitmap(struct btrfs_free_space_ctl * ctl,struct btrfs_free_space * bitmap_info,u64 * offset,u64 * bytes,bool for_alloc) search_bitmap() argument
2013 find_free_space(struct btrfs_free_space_ctl * ctl,u64 * offset,u64 * bytes,unsigned long align,u64 * max_extent_size,bool use_bytes_index) find_free_space() argument
2155 remove_from_bitmap(struct btrfs_free_space_ctl * ctl,struct btrfs_free_space * bitmap_info,u64 * offset,u64 * bytes) remove_from_bitmap() argument
2232 add_bytes_to_bitmap(struct btrfs_free_space_ctl * ctl,struct btrfs_free_space * info,u64 offset,u64 bytes,enum btrfs_trim_state trim_state) add_bytes_to_bitmap() argument
2320 u64 bytes, offset, bytes_added; insert_into_bitmap() local
2458 u64 bytes = info->bytes; try_merge_free_space() local
2508 u64 bytes; steal_from_bitmap_to_end() local
2542 u64 bytes; steal_from_bitmap_to_front() local
2624 __btrfs_add_free_space(struct btrfs_block_group * block_group,u64 offset,u64 bytes,enum btrfs_trim_state trim_state) __btrfs_add_free_space() argument
2801 btrfs_remove_free_space(struct btrfs_block_group * block_group,u64 offset,u64 bytes) btrfs_remove_free_space() argument
2914 btrfs_dump_free_space(struct btrfs_block_group * block_group,u64 bytes) btrfs_dump_free_space() argument
3085 btrfs_find_space_for_alloc(struct btrfs_block_group * block_group,u64 offset,u64 bytes,u64 empty_size,u64 * max_extent_size) btrfs_find_space_for_alloc() argument
3191 btrfs_alloc_from_bitmap(struct btrfs_block_group * block_group,struct btrfs_free_cluster * cluster,struct btrfs_free_space * entry,u64 bytes,u64 min_start,u64 * max_extent_size) btrfs_alloc_from_bitmap() argument
3222 btrfs_alloc_from_cluster(struct btrfs_block_group * block_group,struct btrfs_free_cluster * cluster,u64 bytes,u64 min_start,u64 * max_extent_size) btrfs_alloc_from_cluster() argument
3323 btrfs_bitmap_cluster(struct btrfs_block_group * block_group,struct btrfs_free_space * entry,struct btrfs_free_cluster * cluster,u64 offset,u64 bytes,u64 cont1_bytes,u64 min_bytes) btrfs_bitmap_cluster() argument
3416 setup_cluster_no_bitmap(struct btrfs_block_group * block_group,struct btrfs_free_cluster * cluster,struct list_head * bitmaps,u64 offset,u64 bytes,u64 cont1_bytes,u64 min_bytes) setup_cluster_no_bitmap() argument
3509 setup_cluster_bitmap(struct btrfs_block_group * block_group,struct btrfs_free_cluster * cluster,struct list_head * bitmaps,u64 offset,u64 bytes,u64 cont1_bytes,u64 min_bytes) setup_cluster_bitmap() argument
3559 btrfs_find_space_cluster(struct btrfs_block_group * block_group,struct btrfs_free_cluster * cluster,u64 offset,u64 bytes,u64 empty_size) btrfs_find_space_cluster() argument
3650 do_trimming(struct btrfs_block_group * block_group,u64 * total_trimmed,u64 start,u64 bytes,u64 reserved_start,u64 reserved_bytes,enum btrfs_trim_state reserved_trim_state,struct btrfs_trim_range * trim_entry) do_trimming() argument
3723 u64 bytes; trim_no_bitmap() local
3886 u64 bytes; trim_bitmaps() local
4190 test_add_free_space_entry(struct btrfs_block_group * cache,u64 offset,u64 bytes,bool bitmap) test_add_free_space_entry() argument
4260 test_check_exists(struct btrfs_block_group * cache,u64 offset,u64 bytes) test_check_exists() argument
[all...]
H A Dspace-info.h115 u64 total_bytes; /* total bytes in the space,
117 u64 bytes_used; /* total bytes used,
119 u64 bytes_pinned; /* total bytes pinned, will be freed when the
121 u64 bytes_reserved; /* total bytes the allocator has reserved for
123 u64 bytes_may_use; /* number of bytes that may be used for
125 u64 bytes_readonly; /* total bytes that are read only */
126 u64 bytes_zone_unusable; /* total bytes that are unusable until
132 /* Chunk size in bytes */
154 u64 disk_used; /* total bytes used on disk */
155 u64 disk_total; /* total bytes o
228 u64 bytes; global() member
[all...]
/linux/drivers/ps3/
H A 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
475 ps3_vuart_write(struct ps3_system_bus_device * dev,const void * buf,unsigned int bytes) ps3_vuart_write() argument
550 u64 bytes; ps3_vuart_queue_rx_bytes() local
599 ps3_vuart_read(struct ps3_system_bus_device * dev,void * buf,unsigned int bytes) ps3_vuart_read() argument
672 ps3_vuart_read_async(struct ps3_system_bus_device * dev,unsigned int bytes) ps3_vuart_read_async() argument
783 u64 bytes; ps3_vuart_handle_interrupt_rx() local
[all...]
/linux/drivers/gpu/drm/i915/gvt/
H A Dmmio.c68 void *p_data, unsigned int bytes, bool read) in failsafe_emulate_mmio_rw() argument
83 bytes); in failsafe_emulate_mmio_rw()
86 bytes); in failsafe_emulate_mmio_rw()
91 memcpy(p_data, pt, bytes); in failsafe_emulate_mmio_rw()
93 memcpy(pt, p_data, bytes); in failsafe_emulate_mmio_rw()
104 * @bytes: access data length
110 void *p_data, unsigned int bytes) in intel_vgpu_emulate_mmio_read() argument
118 failsafe_emulate_mmio_rw(vgpu, pa, p_data, bytes, true); in intel_vgpu_emulate_mmio_read()
125 if (drm_WARN_ON(&i915->drm, bytes > 8)) in intel_vgpu_emulate_mmio_read()
132 if (drm_WARN_ON(&i915->drm, bytes ! in intel_vgpu_emulate_mmio_read()
185 intel_vgpu_emulate_mmio_write(struct intel_vgpu * vgpu,u64 pa,void * p_data,unsigned int bytes) intel_vgpu_emulate_mmio_write() argument
[all...]
/linux/lib/crypto/arm/
H A Dchacha-glue.c30 asmlinkage void chacha_doarm(u8 *dst, const u8 *src, unsigned int bytes,
41 unsigned int bytes, int nrounds) in chacha_doneon() argument
45 while (bytes > CHACHA_BLOCK_SIZE) { in chacha_doneon()
46 unsigned int l = min(bytes, CHACHA_BLOCK_SIZE * 4U); in chacha_doneon()
49 bytes -= l; in chacha_doneon()
54 if (bytes) { in chacha_doneon()
58 if (bytes != CHACHA_BLOCK_SIZE) in chacha_doneon()
59 s = d = memcpy(buf, src, bytes); in chacha_doneon()
62 memcpy(dst, buf, bytes); in chacha_doneon()
81 unsigned int bytes, in in chacha_crypt_arch() argument
[all...]
/linux/tools/testing/selftests/bpf/progs/
H A Dtest_sockmap_kern.h236 int *bytes, zero = 0, one = 1, two = 2, three = 3, four = 4, five = 5; in bpf_prog4() local
239 bytes = bpf_map_lookup_elem(&sock_apply_bytes, &zero); in bpf_prog4()
240 if (bytes) in bpf_prog4()
241 bpf_msg_apply_bytes(msg, *bytes); in bpf_prog4()
242 bytes = bpf_map_lookup_elem(&sock_cork_bytes, &zero); in bpf_prog4()
243 if (bytes) in bpf_prog4()
244 bpf_msg_cork_bytes(msg, *bytes); in bpf_prog4()
267 int *bytes, *start, *end, *start_push, *end_push, *start_pop, *pop, *f; in bpf_prog6() local
271 bytes = bpf_map_lookup_elem(&sock_apply_bytes, &zero); in bpf_prog6()
272 if (bytes) in bpf_prog6()
313 int ret = 0, *bytes, zero = 0; bpf_prog8() local
335 int ret = 0, *bytes, zero = 0; bpf_prog9() local
351 int *bytes, *start, *end, *start_push, *end_push, *start_pop, *pop; bpf_prog10() local
[all...]
/linux/drivers/net/ethernet/freescale/dpaa/
H A Ddpaa_eth_sysfs.c36 ssize_t bytes = 0; in dpaa_eth_show_fqids() local
69 bytes += sprintf(buf + bytes, in dpaa_eth_show_fqids()
72 bytes += sprintf(buf + bytes, in dpaa_eth_show_fqids()
91 bytes += sprintf(buf + bytes, "%s: %d\n", prevstr, in dpaa_eth_show_fqids()
94 bytes += sprintf(buf + bytes, "%s: %d - %d\n", prevstr, in dpaa_eth_show_fqids()
98 return bytes; in dpaa_eth_show_fqids()
105 ssize_t bytes = 0; dpaa_eth_show_bpids() local
[all...]

12345678910>>...275