Lines Matching full:info
141 copyInfo& info)
149 int width = info.width;
150 int height = info.height;
157 src += info.src_stride;
158 dst += info.dst_stride;
162 src = (unsigned char*)(src_base + info.src_plane1_offset);
163 dst = (unsigned char*)(dst_base + info.dst_plane1_offset);
167 memcpy(dst, src, info.src_stride);
168 src += info.src_stride;
169 dst += info.dst_stride;
195 copyInfo info;
196 info.width = rhs->w;
197 info.height = rhs->h;
198 info.src_stride = ALIGN(info.width, 32);
199 info.dst_stride = ALIGN(info.width, 16);
203 info.src_plane1_offset = info.src_stride*info.height;
204 info.dst_plane1_offset = info.dst_stride*info.height;
208 info.src_plane1_offset = ALIGN(info.src_stride*info.height, 2048);
209 info.dst_plane1_offset = ALIGN(info.dst_stride*info.height, 2048);
217 ret = copy_source_to_destination((uintptr_t) hnd->base, (uintptr_t) dst_hnd->base, info);
240 copyInfo info;
241 info.width = rhs->w;
242 info.height = rhs->h;
243 info.src_stride = ALIGN(hnd->width, 16);
244 info.dst_stride = ALIGN(info.width, 32);
248 info.src_plane1_offset = info.src_stride*info.height;
249 info.dst_plane1_offset = info.dst_stride*info.height;
253 info.src_plane1_offset = ALIGN(info.src_stride*info.height, 2048);
254 info.dst_plane1_offset = ALIGN(info.dst_stride*info.height, 2048);
262 ret = copy_source_to_destination((uintptr_t) hnd->base, (uintptr_t) dst_hnd->base, info);