Home
last modified time | relevance | path

Searched refs:bytes (Results 1351 - 1375 of 3061) sorted by relevance

1...<<51525354555657585960>>...123

/kernel/linux/linux-5.10/drivers/tty/serial/
H A Dqcom_geni_serial.c106 /* We always configure 4 bytes per FIFO word */
129 int (*handle_rx)(struct uart_port *uport, u32 bytes, bool drop);
147 static int handle_rx_console(struct uart_port *uport, u32 bytes, bool drop);
148 static int handle_rx_uart(struct uart_port *uport, u32 bytes, bool drop);
285 * Total polling iterations based on FIFO worth of bytes to be in qcom_geni_serial_poll_bit()
428 * Account for additional bytes to be written. in __qcom_geni_serial_console_write()
527 static int handle_rx_console(struct uart_port *uport, u32 bytes, bool drop) in handle_rx_console() argument
535 for (i = 0; i < bytes; ) { in handle_rx_console()
537 int chunk = min_t(int, bytes - i, BYTES_PER_FIFO_WORD); in handle_rx_console()
565 static int handle_rx_console(struct uart_port *uport, u32 bytes, boo argument
572 handle_rx_uart(struct uart_port *uport, u32 bytes, bool drop) handle_rx_uart() argument
[all...]
/kernel/linux/linux-5.10/sound/core/
H A Dpcm_lib.c1917 void *buf, unsigned long bytes);
1933 void *buf, unsigned long bytes) in default_write_copy()
1936 (void __user *)buf, bytes)) in default_write_copy()
1944 void *buf, unsigned long bytes) in default_write_copy_kernel()
1946 memcpy(get_dma_ptr(substream->runtime, channel, hwoff), buf, bytes); in default_write_copy_kernel()
1955 unsigned long hwoff, void *buf, unsigned long bytes) in fill_silence()
1963 hwoff, bytes); in fill_silence()
1967 bytes_to_samples(runtime, bytes)); in fill_silence()
1974 void *buf, unsigned long bytes) in default_read_copy()
1978 bytes)) in default_read_copy()
1931 default_write_copy(struct snd_pcm_substream *substream, int channel, unsigned long hwoff, void *buf, unsigned long bytes) default_write_copy() argument
1942 default_write_copy_kernel(struct snd_pcm_substream *substream, int channel, unsigned long hwoff, void *buf, unsigned long bytes) default_write_copy_kernel() argument
1954 fill_silence(struct snd_pcm_substream *substream, int channel, unsigned long hwoff, void *buf, unsigned long bytes) fill_silence() argument
1972 default_read_copy(struct snd_pcm_substream *substream, int channel, unsigned long hwoff, void *buf, unsigned long bytes) default_read_copy() argument
1984 default_read_copy_kernel(struct snd_pcm_substream *substream, int channel, unsigned long hwoff, void *buf, unsigned long bytes) default_read_copy_kernel() argument
[all...]
/kernel/linux/linux-5.10/tools/perf/
H A Dbuiltin-kmem.c791 u64 bytes = kmem_page_size << order; in evsel__process_page_alloc_event() local
806 total_page_alloc_bytes += bytes; in evsel__process_page_alloc_event()
810 total_page_fail_bytes += bytes; in evsel__process_page_alloc_event()
830 pstat->alloc_bytes += bytes; in evsel__process_page_alloc_event()
839 pstat->alloc_bytes += bytes; in evsel__process_page_alloc_event()
849 pstat->alloc_bytes += bytes; in evsel__process_page_alloc_event()
860 u64 bytes = kmem_page_size << order; in evsel__process_page_free_event() local
872 total_page_free_bytes += bytes; in evsel__process_page_free_event()
881 total_page_nomatch_bytes += bytes; in evsel__process_page_free_event()
901 pstat->free_bytes += bytes; in evsel__process_page_free_event()
[all...]
/kernel/linux/linux-5.10/fs/ocfs2/cluster/
H A Dheartbeat.c1462 unsigned bytes) in o2hb_fill_node_map_from_callback()
1464 BUG_ON(bytes < (BITS_TO_LONGS(O2NM_MAX_NODES) * sizeof(unsigned long))); in o2hb_fill_node_map_from_callback()
1466 memcpy(map, &o2hb_live_node_bitmap, bytes); in o2hb_fill_node_map_from_callback()
1472 void o2hb_fill_node_map(unsigned long *map, unsigned bytes) in o2hb_fill_node_map() argument
1478 o2hb_fill_node_map_from_callback(map, bytes); in o2hb_fill_node_map()
1540 unsigned long bytes; in o2hb_read_block_input() local
1543 bytes = simple_strtoul(p, &p, 0); in o2hb_read_block_input()
1548 if (bytes > 4096 || bytes < 512) in o2hb_read_block_input()
1550 if (hweight16(bytes) ! in o2hb_read_block_input()
1461 o2hb_fill_node_map_from_callback(unsigned long *map, unsigned bytes) o2hb_fill_node_map_from_callback() argument
[all...]
/kernel/linux/linux-6.6/fs/
H A Dbuffer.c594 * @start: start offset in bytes
595 * @end: end offset in bytes (inclusive)
637 * @start: start offset in bytes
638 * @end: end offset in bytes (inclusive)
1461 * @size: size (in bytes) to read
2489 loff_t pos, loff_t *bytes) in cont_expand_zero()
2504 while (index > (curidx = (curpos = *bytes)>>PAGE_SHIFT)) { in cont_expand_zero()
2507 *bytes |= (blocksize-1); in cont_expand_zero()
2508 (*bytes)++; in cont_expand_zero()
2540 *bytes | in cont_expand_zero()
2488 cont_expand_zero(struct file *file, struct address_space *mapping, loff_t pos, loff_t *bytes) cont_expand_zero() argument
2565 cont_write_begin(struct file *file, struct address_space *mapping, loff_t pos, unsigned len, struct page **pagep, void **fsdata, get_block_t *get_block, loff_t *bytes) cont_write_begin() argument
[all...]
/kernel/linux/linux-6.6/fs/xfs/scrub/
H A Dtrace.h810 __field(unsigned long long, bytes)
819 __entry->bytes = statbuf.bytes;
822 __entry->bytes = -1;
829 __entry->bytes,
849 __entry->bytes_used = statbuf.bytes;
968 TP_PROTO(struct xfarray_sortinfo *si, size_t bytes),
969 TP_ARGS(si, bytes),
974 __field(size_t, bytes)
981 __entry->bytes
[all...]
/kernel/linux/linux-6.6/tools/perf/
H A Dbuiltin-kmem.c813 u64 bytes = kmem_page_size << order; in evsel__process_page_alloc_event() local
828 total_page_alloc_bytes += bytes; in evsel__process_page_alloc_event()
832 total_page_fail_bytes += bytes; in evsel__process_page_alloc_event()
852 pstat->alloc_bytes += bytes; in evsel__process_page_alloc_event()
861 pstat->alloc_bytes += bytes; in evsel__process_page_alloc_event()
871 pstat->alloc_bytes += bytes; in evsel__process_page_alloc_event()
882 u64 bytes = kmem_page_size << order; in evsel__process_page_free_event() local
894 total_page_free_bytes += bytes; in evsel__process_page_free_event()
903 total_page_nomatch_bytes += bytes; in evsel__process_page_free_event()
923 pstat->free_bytes += bytes; in evsel__process_page_free_event()
[all...]
/kernel/linux/linux-5.10/drivers/block/
H A Drbd.c1117 * snap_names_len bytes beyond the end of the in rbd_header_from_disk()
1287 static void zero_bios(struct ceph_bio_iter *bio_pos, u32 off, u32 bytes) in zero_bios() argument
1292 ceph_bio_iter_advance_step(&it, bytes, ({ in zero_bios()
1297 static void zero_bvecs(struct ceph_bvec_iter *bvec_pos, u32 off, u32 bytes) in zero_bvecs() argument
1302 ceph_bvec_iter_advance_step(&it, bytes, ({ in zero_bvecs()
1314 u32 bytes) in rbd_obj_zero_range()
1316 dout("%s %p data buf %u~%u\n", __func__, obj_req, off, bytes); in rbd_obj_zero_range()
1320 zero_bios(&obj_req->bio_pos, off, bytes); in rbd_obj_zero_range()
1324 zero_bvecs(&obj_req->bvec_pos, off, bytes); in rbd_obj_zero_range()
2268 u32 bytes) in rbd_osd_setup_copyup()
1313 rbd_obj_zero_range(struct rbd_obj_request *obj_req, u32 off, u32 bytes) rbd_obj_zero_range() argument
2267 rbd_osd_setup_copyup(struct ceph_osd_request *osd_req, int which, u32 bytes) rbd_osd_setup_copyup() argument
2676 set_bio_pos(struct ceph_object_extent *ex, u32 bytes, void *arg) set_bio_pos() argument
2687 count_bio_bvecs(struct ceph_object_extent *ex, u32 bytes, void *arg) count_bio_bvecs() argument
2700 copy_bio_bvecs(struct ceph_object_extent *ex, u32 bytes, void *arg) copy_bio_bvecs() argument
2739 set_bvec_pos(struct ceph_object_extent *ex, u32 bytes, void *arg) set_bvec_pos() argument
2750 count_bvecs(struct ceph_object_extent *ex, u32 bytes, void *arg) count_bvecs() argument
2761 copy_bvecs(struct ceph_object_extent *ex, u32 bytes, void *arg) copy_bvecs() argument
3061 is_zero_bvecs(struct bio_vec *bvecs, u32 bytes) is_zero_bvecs() argument
3078 rbd_obj_copyup_empty_snapc(struct rbd_obj_request *obj_req, u32 bytes) rbd_obj_copyup_empty_snapc() argument
3105 rbd_obj_copyup_current_snapc(struct rbd_obj_request *obj_req, u32 bytes) rbd_obj_copyup_current_snapc() argument
3234 u32 bytes = rbd_obj_img_extents_bytes(obj_req); rbd_obj_copyup_write_object() local
[all...]
/kernel/linux/linux-6.6/drivers/block/
H A Drbd.c1065 * snap_names_len bytes beyond the end of the in rbd_header_from_disk()
1224 static void zero_bios(struct ceph_bio_iter *bio_pos, u32 off, u32 bytes) in zero_bios() argument
1229 ceph_bio_iter_advance_step(&it, bytes, ({ in zero_bios()
1234 static void zero_bvecs(struct ceph_bvec_iter *bvec_pos, u32 off, u32 bytes) in zero_bvecs() argument
1239 ceph_bvec_iter_advance_step(&it, bytes, ({ in zero_bvecs()
1251 u32 bytes) in rbd_obj_zero_range()
1253 dout("%s %p data buf %u~%u\n", __func__, obj_req, off, bytes); in rbd_obj_zero_range()
1257 zero_bios(&obj_req->bio_pos, off, bytes); in rbd_obj_zero_range()
1261 zero_bvecs(&obj_req->bvec_pos, off, bytes); in rbd_obj_zero_range()
2205 u32 bytes) in rbd_osd_setup_copyup()
1250 rbd_obj_zero_range(struct rbd_obj_request *obj_req, u32 off, u32 bytes) rbd_obj_zero_range() argument
2204 rbd_osd_setup_copyup(struct ceph_osd_request *osd_req, int which, u32 bytes) rbd_osd_setup_copyup() argument
2613 set_bio_pos(struct ceph_object_extent *ex, u32 bytes, void *arg) set_bio_pos() argument
2624 count_bio_bvecs(struct ceph_object_extent *ex, u32 bytes, void *arg) count_bio_bvecs() argument
2637 copy_bio_bvecs(struct ceph_object_extent *ex, u32 bytes, void *arg) copy_bio_bvecs() argument
2676 set_bvec_pos(struct ceph_object_extent *ex, u32 bytes, void *arg) set_bvec_pos() argument
2687 count_bvecs(struct ceph_object_extent *ex, u32 bytes, void *arg) count_bvecs() argument
2698 copy_bvecs(struct ceph_object_extent *ex, u32 bytes, void *arg) copy_bvecs() argument
2998 is_zero_bvecs(struct bio_vec *bvecs, u32 bytes) is_zero_bvecs() argument
3014 rbd_obj_copyup_empty_snapc(struct rbd_obj_request *obj_req, u32 bytes) rbd_obj_copyup_empty_snapc() argument
3041 rbd_obj_copyup_current_snapc(struct rbd_obj_request *obj_req, u32 bytes) rbd_obj_copyup_current_snapc() argument
3169 u32 bytes = rbd_obj_img_extents_bytes(obj_req); rbd_obj_copyup_write_object() local
[all...]
/kernel/linux/linux-5.10/arch/x86/crypto/
H A Daesni-intel_avx-x86_64.S76 ## if AAD is 8 bytes:
92 ## if AAD is 12 bytes:
111 ## from the definition of the spec, aadLen can only be 8 or 12 bytes.
112 ## The code additionally supports aadLen of length 16 bytes.
115 ## from the definition of the spec, TLen can only be 8, 12 or 16 bytes.
270 and $~63, %rsp # align rsp to 64 bytes
309 mov arg5, %r13 # save the number of bytes of plaintext/ciphertext
450 # able to shift 16-r13 bytes (r13 is the
451 # number of bytes in plaintext mod 16)
466 # adjust the shuffle mask pointer to be able to shift 16-r13 bytes
[all...]
/kernel/linux/linux-6.6/arch/x86/crypto/
H A Daesni-intel_avx-x86_64.S76 ## if AAD is 8 bytes:
92 ## if AAD is 12 bytes:
111 ## from the definition of the spec, aadLen can only be 8 or 12 bytes.
112 ## The code additionally supports aadLen of length 16 bytes.
115 ## from the definition of the spec, TLen can only be 8, 12 or 16 bytes.
236 and $~63, %rsp # align rsp to 64 bytes
275 mov arg5, %r13 # save the number of bytes of plaintext/ciphertext
416 # able to shift 16-r13 bytes (r13 is the
417 # number of bytes in plaintext mod 16)
432 # adjust the shuffle mask pointer to be able to shift 16-r13 bytes
[all...]
/kernel/linux/linux-5.10/arch/hexagon/mm/
H A Dcopy_from_user.S31 #define bytes r2 define
/kernel/linux/linux-5.10/arch/arm/mach-rpc/
H A Decard-loader.S16 @ Purpose: call an expansion card loader to read bytes.
/kernel/linux/linux-5.10/drivers/net/ethernet/altera/
H A Daltera_sgdmahw.h17 u16 bytes; member
20 u16 bytes_xferred; /* 16 bits, bytes xferred */
/kernel/linux/linux-6.6/arch/hexagon/mm/
H A Dcopy_from_user.S31 #define bytes r2 define
/kernel/linux/linux-6.6/arch/arm/mach-rpc/
H A Decard-loader.S16 @ Purpose: call an expansion card loader to read bytes.
/kernel/linux/linux-5.10/drivers/media/pci/mantis/
H A Dhopper_vp3028.c71 .bytes = 0,
/kernel/linux/linux-5.10/sound/usb/line6/
H A Dpcm.h100 /* Count processed bytes;
103 unsigned bytes; member
108 /* period size in bytes */
/kernel/linux/linux-5.10/include/linux/
H A Dblk-crypto.h24 * key. This is the size in bytes of each individual plaintext and
27 * @dun_bytes: the maximum number of bytes of DUN used when using this key
40 * @size: size of this key in bytes (determined by @crypto_cfg.crypto_mode)
41 * @raw: the raw bytes of this key. Only the first @size bytes are used.
89 unsigned int bytes,
/kernel/linux/linux-6.6/drivers/net/ethernet/altera/
H A Daltera_sgdmahw.h17 u16 bytes; member
20 u16 bytes_xferred; /* 16 bits, bytes xferred */
/kernel/linux/linux-6.6/drivers/gpu/drm/amd/display/dc/inc/hw/
H A Ddmcu.h64 unsigned int bytes);
/kernel/linux/linux-6.6/arch/x86/include/asm/
H A Dinsn-eval.h45 enum insn_mmio_type insn_decode_mmio(struct insn *insn, int *bytes);
/kernel/linux/linux-6.6/drivers/net/ethernet/mellanox/mlx5/core/en/tc/
H A Dmeter.h73 u64 *bytes, u64 *packets, u64 *drops, u64 *lastuse);
/kernel/linux/linux-6.6/drivers/media/pci/mantis/
H A Dhopper_vp3028.c71 .bytes = 0,
/kernel/linux/linux-6.6/tools/iio/
H A Diio_utils.h30 * @bytes: number of bytes occupied in buffer output
36 * @location: data offset for this channel inside the buffer (in bytes)
44 unsigned bytes; member

Completed in 36 milliseconds

1...<<51525354555657585960>>...123