Symbol: dst_bytes
arch/x86/kvm/emulate.c
426
.dst_bytes = ctxt->dst.bytes,
arch/x86/kvm/kvm_emulate.h
46
u8 dst_bytes; /* size of destination operand */
arch/x86/kvm/svm/svm.c
4694
bytes = info->dst_bytes;
arch/x86/kvm/vmx/vmx.c
8275
size = info->dst_bytes;
drivers/gpu/drm/gma500/cdv_intel_dp.c
557
unpack_aux(uint32_t src, uint8_t *dst, int dst_bytes)
drivers/gpu/drm/gma500/cdv_intel_dp.c
560
if (dst_bytes > 4)
drivers/gpu/drm/gma500/cdv_intel_dp.c
561
dst_bytes = 4;
drivers/gpu/drm/gma500/cdv_intel_dp.c
562
for (i = 0; i < dst_bytes; i++)
drivers/gpu/drm/i915/display/intel_dp_aux.c
47
static void intel_dp_aux_unpack(u32 src, u8 *dst, int dst_bytes)
drivers/gpu/drm/i915/display/intel_dp_aux.c
51
if (dst_bytes > 4)
drivers/gpu/drm/i915/display/intel_dp_aux.c
52
dst_bytes = 4;
drivers/gpu/drm/i915/display/intel_dp_aux.c
53
for (i = 0; i < dst_bytes; i++)
drivers/target/target_core_xcopy.c
620
u32 dst_bytes)
drivers/target/target_core_xcopy.c
624
u32 transfer_length_block = dst_bytes / dst_dev->dev_attrib.block_size;
drivers/target/target_core_xcopy.c
637
(unsigned long long)dst_lba, transfer_length_block, dst_bytes);
drivers/target/target_core_xcopy.c
639
__target_init_cmd(se_cmd, &xcopy_pt_tfo, &xcopy_pt_sess, dst_bytes,
include/vdso/getrandom.h
57
extern void __arch_chacha20_blocks_nostack(u8 *dst_bytes, const u32 *key, u32 *counter, size_t nblocks);
sound/core/oss/linear.c
104
int src_le, dst_le, src_bytes, dst_bytes;
sound/core/oss/linear.c
107
dst_bytes = snd_pcm_format_width(dst_format) / 8;
sound/core/oss/linear.c
111
data->dst_bytes = dst_bytes;
sound/core/oss/linear.c
113
data->copy_bytes = src_bytes < dst_bytes ? src_bytes : dst_bytes;
sound/core/oss/linear.c
121
data->dst_ofs = 4 - data->dst_bytes;
sound/core/oss/linear.c
124
dst_bytes;
sound/core/oss/linear.c
22
unsigned int dst_bytes; /* byte size of destination format */
sound/core/oss/linear.c
37
memcpy(dst, p + data->dst_ofs, data->dst_bytes);
tools/testing/selftests/vDSO/vdso_test_chacha.c
37
static void reference_chacha20_blocks(uint8_t *dst_bytes, const uint32_t *key, uint32_t *counter, size_t nblocks)
tools/testing/selftests/vDSO/vdso_test_chacha.c
68
for (unsigned int i = 0; i < 16; ++i, dst_bytes += sizeof(uint32_t))
tools/testing/selftests/vDSO/vdso_test_chacha.c
69
put_unaligned_le32(x[i] + s[i], dst_bytes);
tools/testing/selftests/vDSO/vdso_test_chacha.c
77
void __weak __arch_chacha20_blocks_nostack(uint8_t *dst_bytes, const uint32_t *key, uint32_t *counter, size_t nblocks)