Home
last modified time | relevance | path

Searched refs:first_byte (Results 1 – 6 of 6) sorted by relevance

/Linux-v5.15/drivers/net/can/spi/mcp251xfd/
Dmcp251xfd-regmap.c81 u8 first_byte, last_byte, len; in mcp251xfd_regmap_nocrc_update_bits() local
91 first_byte = mcp251xfd_first_byte_set(mask); in mcp251xfd_regmap_nocrc_update_bits()
93 len = last_byte - first_byte + 1; in mcp251xfd_regmap_nocrc_update_bits()
118 mcp251xfd_spi_cmd_read_nocrc(&buf_tx->cmd, reg + first_byte); in mcp251xfd_regmap_nocrc_update_bits()
126 mask_le32 = cpu_to_le32(mask >> BITS_PER_BYTE * first_byte); in mcp251xfd_regmap_nocrc_update_bits()
127 val_le32 = cpu_to_le32(val >> BITS_PER_BYTE * first_byte); in mcp251xfd_regmap_nocrc_update_bits()
132 mcp251xfd_spi_cmd_write_nocrc(&buf_tx->cmd, reg + first_byte); in mcp251xfd_regmap_nocrc_update_bits()
Dmcp251xfd-core.c188 u8 first_byte, last_byte, len; in mcp251xfd_cmd_prepare_write_reg() local
192 first_byte = mcp251xfd_first_byte_set(mask); in mcp251xfd_cmd_prepare_write_reg()
194 len = last_byte - first_byte + 1; in mcp251xfd_cmd_prepare_write_reg()
196 data = mcp251xfd_spi_cmd_write(priv, write_reg_buf, reg + first_byte); in mcp251xfd_cmd_prepare_write_reg()
197 val_le32 = cpu_to_le32(val >> BITS_PER_BYTE * first_byte); in mcp251xfd_cmd_prepare_write_reg()
/Linux-v5.15/drivers/staging/rts5208/
Dspi.c714 int first_byte = 1; in spi_write_flash() local
734 if (first_byte) { in spi_write_flash()
736 first_byte = 0; in spi_write_flash()
/Linux-v5.15/fs/btrfs/
Dcompression.c401 u64 first_byte = disk_start; in btrfs_submit_compressed_write() local
422 bio = btrfs_bio_alloc(first_byte); in btrfs_submit_compressed_write()
494 bio = btrfs_bio_alloc(first_byte); in btrfs_submit_compressed_write()
512 first_byte += PAGE_SIZE; in btrfs_submit_compressed_write()
Dextent_io.h280 struct bio *btrfs_bio_alloc(u64 first_byte);
Dextent_io.c3128 struct bio *btrfs_bio_alloc(u64 first_byte) in btrfs_bio_alloc() argument
3133 bio->bi_iter.bi_sector = first_byte >> 9; in btrfs_bio_alloc()