Home
last modified time | relevance | path

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

/linux-4.4.14/sound/core/oss/
Dlinear.c37 unsigned int dst_bytes; /* byte size of destination format */ member
52 memcpy(dst, p + data->dst_ofs, data->dst_bytes); in do_convert()
117 int src_le, dst_le, src_bytes, dst_bytes; in init_data() local
120 dst_bytes = snd_pcm_format_width(dst_format) / 8; in init_data()
124 data->dst_bytes = dst_bytes; in init_data()
126 data->copy_bytes = src_bytes < dst_bytes ? src_bytes : dst_bytes; in init_data()
134 data->dst_ofs = 4 - data->dst_bytes; in init_data()
137 dst_bytes; in init_data()
/linux-4.4.14/arch/x86/include/asm/
Dkvm_emulate.h42 u8 dst_bytes; /* size of destination operand */ member
/linux-4.4.14/drivers/gpu/drm/gma500/
Dcdv_intel_dp.c558 unpack_aux(uint32_t src, uint8_t *dst, int dst_bytes) in unpack_aux() argument
561 if (dst_bytes > 4) in unpack_aux()
562 dst_bytes = 4; in unpack_aux()
563 for (i = 0; i < dst_bytes; i++) in unpack_aux()
/linux-4.4.14/drivers/gpu/drm/i915/
Dintel_dp.c252 static void intel_dp_unpack_aux(uint32_t src, uint8_t *dst, int dst_bytes) in intel_dp_unpack_aux() argument
255 if (dst_bytes > 4) in intel_dp_unpack_aux()
256 dst_bytes = 4; in intel_dp_unpack_aux()
257 for (i = 0; i < dst_bytes; i++) in intel_dp_unpack_aux()
/linux-4.4.14/arch/x86/kvm/
Dsvm.c4213 bytes = info->dst_bytes; in svm_check_intercept()
Demulate.c450 .dst_bytes = ctxt->dst.bytes, in emulator_check_intercept()