/Linux-v5.4/drivers/scsi/ |
D | myrs.h | 172 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 …]
|
D | myrb.h | 164 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-v5.4/include/sound/ |
D | pcm-indirect.h | 19 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-v5.4/sound/drivers/ |
D | pcm-indirect2.c | 44 snd_printk(KERN_DEBUG "STAT: bytes2hw: %u Bytes => (by runtime->rate) " in snd_pcm_indirect2_stat() 48 "rate: %d Bytes/s = %d Frames/s|Hz\n", in snd_pcm_indirect2_stat() 126 unsigned int bytes) in snd_pcm_indirect2_increase_min_periods() argument 130 rec->sw_io += bytes; in snd_pcm_indirect2_increase_min_periods() 172 * the first zeros means, the last bytes were played. in snd_pcm_indirect2_increase_min_periods() 182 if (bytes >= diff) in snd_pcm_indirect2_increase_min_periods() 185 rec->sw_io += bytes; in snd_pcm_indirect2_increase_min_periods() 192 rec->min_period_count += bytes; in snd_pcm_indirect2_increase_min_periods() 242 * diff: obviously ALSA wrote that much bytes into the intermediate in snd_pcm_indirect2_playback_transfer() 253 /* number of bytes "added" by ALSA increases the number of in snd_pcm_indirect2_playback_transfer() [all …]
|
/Linux-v5.4/include/linux/ |
D | uio.h | 90 * Total number of bytes covered by an iovec. 116 struct iov_iter *i, unsigned long offset, size_t bytes); 117 void iov_iter_advance(struct iov_iter *i, size_t bytes); 118 void iov_iter_revert(struct iov_iter *i, size_t bytes); 119 int iov_iter_fault_in_readable(struct iov_iter *i, size_t bytes); 121 size_t copy_page_to_iter(struct page *page, size_t offset, size_t bytes, 123 size_t copy_page_from_iter(struct page *page, size_t offset, size_t bytes, 126 size_t _copy_to_iter(const void *addr, size_t bytes, struct iov_iter *i); 127 size_t _copy_from_iter(void *addr, size_t bytes, struct iov_iter *i); 128 bool _copy_from_iter_full(void *addr, size_t bytes, struct iov_iter *i); [all …]
|
D | ccp.h | 149 * @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 …]
|
D | task_io_accounting_ops.h | 11 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-v5.4/arch/x86/crypto/ |
D | chacha_glue.c | 50 unsigned int bytes, int nrounds) in chacha_dosimd() argument 55 while (bytes >= CHACHA_BLOCK_SIZE * 8) { in chacha_dosimd() 56 chacha_8block_xor_avx512vl(state, dst, src, bytes, in chacha_dosimd() 58 bytes -= CHACHA_BLOCK_SIZE * 8; in chacha_dosimd() 63 if (bytes > CHACHA_BLOCK_SIZE * 4) { in chacha_dosimd() 64 chacha_8block_xor_avx512vl(state, dst, src, bytes, in chacha_dosimd() 66 state[12] += chacha_advance(bytes, 8); in chacha_dosimd() 69 if (bytes > CHACHA_BLOCK_SIZE * 2) { in chacha_dosimd() 70 chacha_4block_xor_avx512vl(state, dst, src, bytes, in chacha_dosimd() 72 state[12] += chacha_advance(bytes, 4); in chacha_dosimd() [all …]
|
D | crct10dif-pcl-asm_64.S | 64 # 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-v5.4/fs/btrfs/ |
D | space-info.h | 9 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 73 u64 bytes; member [all …]
|
D | free-space-cache.c | 30 u64 bytes; member 510 static int io_ctl_add_entry(struct btrfs_io_ctl *io_ctl, u64 offset, u64 bytes, in io_ctl_add_entry() argument 520 entry->bytes = cpu_to_le64(bytes); in io_ctl_add_entry() 594 entry->bytes = le64_to_cpu(e->bytes); in io_ctl_read_entry() 644 if (prev->offset + prev->bytes == e->offset) { in merge_space_tree() 647 prev->bytes += e->bytes; in merge_space_tree() 750 if (!e->bytes) { in __load_free_space_cache() 947 ret = io_ctl_add_entry(io_ctl, e->offset, e->bytes, in write_cache_extent_entries() 977 trim_entry->bytes, NULL); in write_cache_extent_entries() 1423 static inline unsigned long bytes_to_bits(u64 bytes, u32 unit) in bytes_to_bits() argument [all …]
|
/Linux-v5.4/tools/testing/selftests/bpf/ |
D | test_sockmap_kern.h | 177 int *bytes, zero = 0, one = 1, two = 2, three = 3, four = 4, five = 5; in bpf_prog4() local 180 bytes = bpf_map_lookup_elem(&sock_apply_bytes, &zero); in bpf_prog4() 181 if (bytes) in bpf_prog4() 182 bpf_msg_apply_bytes(msg, *bytes); in bpf_prog4() 183 bytes = bpf_map_lookup_elem(&sock_cork_bytes, &zero); in bpf_prog4() 184 if (bytes) in bpf_prog4() 185 bpf_msg_cork_bytes(msg, *bytes); in bpf_prog4() 206 int *bytes, len1, len2 = 0, len3, len4; in bpf_prog5() local 209 bytes = bpf_map_lookup_elem(&sock_apply_bytes, &zero); in bpf_prog5() 210 if (bytes) in bpf_prog5() [all …]
|
/Linux-v5.4/lib/ |
D | iov_iter.c | 156 static size_t copy_page_to_iter_iovec(struct page *page, size_t offset, size_t bytes, in copy_page_to_iter_iovec() argument 164 if (unlikely(bytes > i->count)) in copy_page_to_iter_iovec() 165 bytes = i->count; in copy_page_to_iter_iovec() 167 if (unlikely(!bytes)) in copy_page_to_iter_iovec() 171 wanted = bytes; in copy_page_to_iter_iovec() 175 copy = min(bytes, iov->iov_len - skip); in copy_page_to_iter_iovec() 186 bytes -= copy; in copy_page_to_iter_iovec() 188 while (unlikely(!left && bytes)) { in copy_page_to_iter_iovec() 191 copy = min(bytes, iov->iov_len); in copy_page_to_iter_iovec() 196 bytes -= copy; in copy_page_to_iter_iovec() [all …]
|
/Linux-v5.4/arch/hexagon/mm/ |
D | copy_user_template.S | 8 * 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-v5.4/drivers/gpu/drm/vmwgfx/ |
D | vmwgfx_fifo.c | 208 static bool vmw_fifo_is_full(struct vmw_private *dev_priv, uint32_t bytes) in vmw_fifo_is_full() argument 216 return ((max - next_cmd) + (stop - min) <= bytes); in vmw_fifo_is_full() 220 uint32_t bytes, bool interruptible, in vmw_fifo_wait_noirq() argument 233 if (!vmw_fifo_is_full(dev_priv, bytes)) in vmw_fifo_wait_noirq() 253 uint32_t bytes, bool interruptible, in vmw_fifo_wait() argument 258 if (likely(!vmw_fifo_is_full(dev_priv, bytes))) in vmw_fifo_wait() 263 return vmw_fifo_wait_noirq(dev_priv, bytes, in vmw_fifo_wait() 272 !vmw_fifo_is_full(dev_priv, bytes), timeout); in vmw_fifo_wait() 276 !vmw_fifo_is_full(dev_priv, bytes), timeout); in vmw_fifo_wait() 290 * Reserve @bytes number of bytes in the fifo. [all …]
|
/Linux-v5.4/drivers/gpu/drm/i915/gvt/ |
D | mmio.c | 61 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 110 failsafe_emulate_mmio_rw(vgpu, pa, p_data, bytes, true); in intel_vgpu_emulate_mmio_read() 117 if (WARN_ON(bytes > 8)) in intel_vgpu_emulate_mmio_read() 123 if (WARN_ON(bytes != 4 && bytes != 8)) in intel_vgpu_emulate_mmio_read() [all …]
|
/Linux-v5.4/drivers/ps3/ |
D | ps3-vuart.c | 352 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-v5.4/arch/s390/include/asm/ |
D | alternative-asm.h | 9 * 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-v5.4/tools/perf/pmu-events/arch/x86/ivytown/ |
D | uncore-cache.json | 16 "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-v5.4/tools/power/acpi/man/ |
D | acpidump.8 | 74 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-v5.4/lib/842/ |
D | 842.h | 13 * 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-v5.4/arch/arm/include/asm/ |
D | xor.h | 47 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-v5.4/arch/arm/crypto/ |
D | crct10dif-ce-core.S | 115 // 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-v5.4/drivers/gpu/drm/radeon/ |
D | radeon_acpi.h | 33 * 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-v5.4/drivers/gpu/drm/amd/include/ |
D | amd_acpi.h | 30 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 …]
|