Lines Matching defs:bytes_to_copy
3671 int bytes_to_copy;
3682 bytes_to_copy = max_len < bytes_in_buf ? max_len : bytes_in_buf;
3700 bytes_to_copy = max_len < s->hw->max_read_size ?
3702 bytes_to_copy = *len < bytes_to_copy ? *len : bytes_to_copy;
3705 memcpy (buf, temp_buf, bytes_to_copy);
3706 bytes_in_buf -= bytes_to_copy;
3707 *len = bytes_to_copy;
3710 bytes_to_copy, bytes_in_buf);
3714 temp_buf[loop] = temp_buf[loop + bytes_to_copy];