Searched defs:lhs (Results 1 - 3 of 3) sorted by relevance

/hardware/qcom/display/msm8960/libcopybit/
H A Dcopybit.cpp112 /** Determine the intersection of lhs & rhs store in out */
114 const struct copybit_rect_t *lhs,
116 out->l = max(lhs->l, rhs->l);
117 out->t = max(lhs->t, rhs->t);
118 out->r = min(lhs->r, rhs->r);
119 out->b = min(lhs->b, rhs->b);
113 intersect(struct copybit_rect_t *out, const struct copybit_rect_t *lhs, const struct copybit_rect_t *rhs) argument
/hardware/qcom/display/msm8974/libcopybit/
H A Dcopybit.cpp114 /** Determine the intersection of lhs & rhs store in out */
116 const struct copybit_rect_t *lhs,
118 out->l = max(lhs->l, rhs->l);
119 out->t = max(lhs->t, rhs->t);
120 out->r = min(lhs->r, rhs->r);
121 out->b = min(lhs->b, rhs->b);
115 intersect(struct copybit_rect_t *out, const struct copybit_rect_t *lhs, const struct copybit_rect_t *rhs) argument
/hardware/qcom/display/msm8x26/libcopybit/
H A Dcopybit.cpp112 /** Determine the intersection of lhs & rhs store in out */
114 const struct copybit_rect_t *lhs,
116 out->l = max(lhs->l, rhs->l);
117 out->t = max(lhs->t, rhs->t);
118 out->r = min(lhs->r, rhs->r);
119 out->b = min(lhs->b, rhs->b);
113 intersect(struct copybit_rect_t *out, const struct copybit_rect_t *lhs, const struct copybit_rect_t *rhs) argument

Completed in 112 milliseconds