Lines Matching refs:length
161 i2c_payloads[1].length = message_info->length; in hdmi_14_process_transaction()
165 buff = kzalloc(message_info->length + 1, GFP_KERNEL); in hdmi_14_process_transaction()
171 memmove(&buff[1], message_info->data, message_info->length); in hdmi_14_process_transaction()
172 i2c_payloads[0].length = message_info->length + 1; in hdmi_14_process_transaction()
231 uint32_t length, in dpcd_access_helper() argument
243 if (length % HDCP14_KSV_SIZE) { in dpcd_access_helper()
246 length, in dpcd_access_helper()
249 if (length > HDCP14_MAX_KSV_FIFO_SIZE) { in dpcd_access_helper()
252 length, in dpcd_access_helper()
258 length / HDCP14_KSV_SIZE); in dpcd_access_helper()
260 while (length > 0) { in dpcd_access_helper()
261 if (length > ksv_read_size) { in dpcd_access_helper()
269 length -= ksv_read_size; in dpcd_access_helper()
275 length); in dpcd_access_helper()
277 data += length; in dpcd_access_helper()
278 length = 0; in dpcd_access_helper()
285 while (length > 0) { in dpcd_access_helper()
286 if (length > DEFAULT_AUX_MAX_DATA_SIZE) in dpcd_access_helper()
289 cur_length = length; in dpcd_access_helper()
308 length -= cur_length; in dpcd_access_helper()
326 message_info->length, in dp_11_process_transaction()