Searched refs:rect2 (Results 1 – 2 of 2) sorted by relevance
790 void m_secRect2SecRect2(ExynosRect *rect, ExynosRect2 *rect2);791 void m_secRect22SecRect(ExynosRect2 *rect2, ExynosRect *rect);
3931 void ExynosCamera::m_secRect2SecRect2(ExynosRect *rect, ExynosRect2 *rect2) in m_secRect2SecRect2() argument3933 rect2->x1 = rect->x; in m_secRect2SecRect2()3934 rect2->y1 = rect->y; in m_secRect2SecRect2()3935 rect2->x2 = rect->x + rect->w; in m_secRect2SecRect2()3936 rect2->y2 = rect->y + rect->h; in m_secRect2SecRect2()3939 void ExynosCamera::m_secRect22SecRect(ExynosRect2 *rect2, ExynosRect *rect) in m_secRect22SecRect() argument3941 rect->x = rect2->x1; in m_secRect22SecRect()3942 rect->y = rect2->y1; in m_secRect22SecRect()3943 rect->w = rect2->x2 - rect2->x1; in m_secRect22SecRect()3944 rect->h = rect2->y2 - rect2->y1; in m_secRect22SecRect()