Lines Matching refs:in
177 bool getCropS3D(const Dim& in, Dim& out, uint32_t fmt);
659 inline Dim getCropS3DImpl(const Dim& in, uint32_t fmt) { in getCropS3DImpl() argument
663 return Dim(0, 0, in.w/2, in.h); in getCropS3DImpl()
665 return Dim(in.w/2, 0, in.w/2, in.h); in getCropS3DImpl()
667 return Dim(0, 0, in.w, in.h/2); in getCropS3DImpl()
679 inline Dim getCropS3DImpl<utils::OV_RIGHT_SPLIT>(const Dim& in, uint32_t fmt) {
683 return Dim(in.w/2, 0, in.w/2, in.h);
685 return Dim(0, 0, in.w/2, in.h);
687 return Dim(0, in.h/2, in.w, in.h/2);
699 inline bool getCropS3D(const Dim& in, Dim& out, uint32_t fmt) in getCropS3D() argument
701 out = getCropS3DImpl<CHAN>(in, fmt); in getCropS3D()