Home | History | Annotate | Download | only in libcopybit

Lines Matching defs:hnd

38     private_handle_t* hnd = (private_handle_t*)src->handle;
40 if(hnd == NULL || yv12_handle == NULL){
60 unsigned char* oldChroma = (unsigned char*)(hnd->base + y_size);
61 memcpy((char *)yv12_handle->base,(char *)hnd->base,y_size);
182 int convert_yuv_c2d_to_yuv_android(private_handle_t *hnd,
186 if (!hnd || !rhs) {
187 ALOGE("%s: invalid inputs hnd=%p rhs=%p", __FUNCTION__, hnd, rhs);
216 ret = copy_source_to_destination((uintptr_t) hnd->base, (uintptr_t) dst_hnd->base, info);
228 int convert_yuv_android_to_yuv_c2d(private_handle_t *hnd,
231 if (!hnd || !rhs) {
232 ALOGE("%s: invalid inputs hnd=%p rhs=%p", __FUNCTION__, hnd, rhs);
242 info.src_stride = ALIGN(hnd->width, 16);
261 ret = copy_source_to_destination((uintptr_t) hnd->base, (uintptr_t) dst_hnd->base, info);