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

/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/test/
H A Dregister_state_check.h26 inline bool operator==(const M128A& lhs, const M128A& rhs) { argument
27 return (lhs.Low == rhs.Low && lhs.High == rhs.High);
/hardware/intel/img/hwcomposer/common/base/
H A DHwcLayerList.h74 virtual int do_compare(const void* lhs, const void* rhs) const { argument
75 const HwcLayer* l = *(HwcLayer**)lhs;
85 virtual int do_compare(const void* lhs, const void* rhs) const { argument
86 const HwcLayer* l = *(HwcLayer**)lhs;
/hardware/intel/img/hwcomposer/include/
H A DDisplayPlaneManager.h47 int do_compare(const void* lhs, const void* rhs) const { argument
48 const ZOrderLayer *l = *(ZOrderLayer**)lhs;
/hardware/qcom/display/msm8084/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/msm8226/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/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/msm8226/libhwcomposer/
H A Dhwc_utils.cpp1100 bool operator ==(const hwc_rect_t& lhs, const hwc_rect_t& rhs) { argument
1101 if(lhs.left == rhs.left && lhs.top == rhs.top &&
1102 lhs.right == rhs.right && lhs.bottom == rhs.bottom )
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/third_party/googletest/src/src/
H A Dgtest-all.cc2360 bool String::CStringEquals(const char * lhs, const char * rhs) { argument
2361 if ( lhs == NULL ) return rhs == NULL;
2365 return strcmp(lhs, rhs) == 0;
2555 const FloatingPoint<RawType> lhs(val1), rhs(val2);
2556 if (lhs.AlmostEquals(rhs)) {
3021 bool String::WideCStringEquals(const wchar_t * lhs, const wchar_t * rhs) { argument
3022 if (lhs == NULL) return rhs == NULL;
3026 return wcscmp(lhs, rhs) == 0;
3066 bool String::CaseInsensitiveCStringEquals(const char * lhs, const char * rhs) { argument
3067 if (lhs
3086 CaseInsensitiveWideCStringEquals(const wchar_t* lhs, const wchar_t* rhs) argument
[all...]
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/third_party/googletest/src/include/gtest/
H A Dgtest.h3423 static bool CStringEquals(const char* lhs, const char* rhs);
3437 static bool WideCStringEquals(const wchar_t* lhs, const wchar_t* rhs);
3445 static bool CaseInsensitiveCStringEquals(const char* lhs,
3460 static bool CaseInsensitiveWideCStringEquals(const wchar_t* lhs,
7845 bool ArrayEq(const T* lhs, size_t size, const U* rhs);
7849 inline bool ArrayEq(const T& lhs, const U& rhs) { return lhs == rhs; } argument
7853 inline bool ArrayEq(const T(&lhs)[N], const U(&rhs)[N]) {
7854 return internal::ArrayEq(lhs, N, rhs);
7861 bool ArrayEq(const T* lhs, size_ argument
[all...]

Completed in 381 milliseconds