stream_param     2985 drivers/gpu/drm/amd/include/atomfirmware.h   struct dig_encoder_stream_setup_parameters_v1_5 stream_param;
stream_param      509 sound/pci/mixart/mixart.c 	struct mixart_stream_param_desc stream_param;
stream_param      514 sound/pci/mixart/mixart.c 	memset(&stream_param, 0, sizeof(stream_param));
stream_param      516 sound/pci/mixart/mixart.c 	stream_param.coding_type = CT_LINEAR;
stream_param      517 sound/pci/mixart/mixart.c 	stream_param.number_of_channel = stream->channels;
stream_param      519 sound/pci/mixart/mixart.c 	stream_param.sampling_freq = chip->mgr->sample_rate;
stream_param      520 sound/pci/mixart/mixart.c 	if(stream_param.sampling_freq == 0)
stream_param      521 sound/pci/mixart/mixart.c 		stream_param.sampling_freq = 44100; /* if frequency not yet defined, use some default */
stream_param      525 sound/pci/mixart/mixart.c 		stream_param.sample_type = ST_INTEGER_8;
stream_param      526 sound/pci/mixart/mixart.c 		stream_param.sample_size = 8;
stream_param      529 sound/pci/mixart/mixart.c 		stream_param.sample_type = ST_INTEGER_16LE;
stream_param      530 sound/pci/mixart/mixart.c 		stream_param.sample_size = 16;
stream_param      533 sound/pci/mixart/mixart.c 		stream_param.sample_type = ST_INTEGER_16BE;
stream_param      534 sound/pci/mixart/mixart.c 		stream_param.sample_size = 16;
stream_param      537 sound/pci/mixart/mixart.c 		stream_param.sample_type = ST_INTEGER_24LE;
stream_param      538 sound/pci/mixart/mixart.c 		stream_param.sample_size = 24;
stream_param      541 sound/pci/mixart/mixart.c 		stream_param.sample_type = ST_INTEGER_24BE;
stream_param      542 sound/pci/mixart/mixart.c 		stream_param.sample_size = 24;
stream_param      545 sound/pci/mixart/mixart.c 		stream_param.sample_type = ST_FLOATING_POINT_32LE;
stream_param      546 sound/pci/mixart/mixart.c 		stream_param.sample_size = 32;
stream_param      549 sound/pci/mixart/mixart.c 		stream_param.sample_type = ST_FLOATING_POINT_32BE;
stream_param      550 sound/pci/mixart/mixart.c 		stream_param.sample_size = 32;
stream_param      560 sound/pci/mixart/mixart.c 		   stream_param.sample_type, stream_param.sample_size, stream_param.sampling_freq, stream->channels);
stream_param      567 sound/pci/mixart/mixart.c 	stream_param.pipe_count = 1;      /* set to 1 */
stream_param      568 sound/pci/mixart/mixart.c 	stream_param.stream_count = 1;    /* set to 1 */
stream_param      569 sound/pci/mixart/mixart.c 	stream_param.stream_desc[0].uid_pipe = stream->pipe->group_uid;
stream_param      570 sound/pci/mixart/mixart.c 	stream_param.stream_desc[0].stream_idx = stream->substream->number;
stream_param      574 sound/pci/mixart/mixart.c 	request.data = &stream_param;
stream_param      575 sound/pci/mixart/mixart.c 	request.size = sizeof(stream_param);