Home | History | Annotate | Download | only in libcopybit

Lines Matching refs:info

140                                       copyInfo& info)
148 int width = info.width;
149 int height = info.height;
156 src += info.src_stride;
157 dst += info.dst_stride;
161 src = (unsigned char*)(src_base + info.src_plane1_offset);
162 dst = (unsigned char*)(dst_base + info.dst_plane1_offset);
166 memcpy(dst, src, info.src_stride);
167 src += info.src_stride;
168 dst += info.dst_stride;
194 copyInfo info;
195 info.width = rhs->w;
196 info.height = rhs->h;
197 info.src_stride = ALIGN(info.width, 32);
198 info.dst_stride = ALIGN(info.width, 16);
202 info.src_plane1_offset = info.src_stride*info.height;
203 info.dst_plane1_offset = info.dst_stride*info.height;
207 info.src_plane1_offset = ALIGN(info.src_stride*info.height, 2048);
208 info.dst_plane1_offset = ALIGN(info.dst_stride*info.height, 2048);
216 ret = copy_source_to_destination((uintptr_t) hnd->base, (uintptr_t) dst_hnd->base, info);
239 copyInfo info;
240 info.width = rhs->w;
241 info.height = rhs->h;
242 info.src_stride = ALIGN(hnd->width, 16);
243 info.dst_stride = ALIGN(info.width, 32);
247 info.src_plane1_offset = info.src_stride*info.height;
248 info.dst_plane1_offset = info.dst_stride*info.height;
252 info.src_plane1_offset = ALIGN(info.src_stride*info.height, 2048);
253 info.dst_plane1_offset = ALIGN(info.dst_stride*info.height, 2048);
261 ret = copy_source_to_destination((uintptr_t) hnd->base, (uintptr_t) dst_hnd->base, info);