Home
last modified time | relevance | path

Searched refs:lhs (Results 1 – 7 of 7) sorted by relevance

/development/ndk/platforms/android-3/include/linux/
Dktime.h38 #define ktime_sub(lhs, rhs) ({ (ktime_t){ .tv64 = (lhs).tv64 - (rhs).tv64 }; }) argument
39 #define ktime_add(lhs, rhs) ({ (ktime_t){ .tv64 = (lhs).tv64 + (rhs).tv64 }; }) argument
/development/ndk/sources/android/ndk_helper/
Dvecmath.h145 friend Vec2 operator*( const float lhs, const Vec2& rhs )
148 ret.x_ = lhs * rhs.x_;
149 ret.y_ = lhs * rhs.y_;
153 friend Vec2 operator/( const float lhs, const Vec2& rhs )
156 ret.x_ = lhs / rhs.x_;
157 ret.y_ = lhs / rhs.y_;
369 friend Vec3 operator*( const float lhs, const Vec3& rhs )
372 ret.x_ = lhs * rhs.x_;
373 ret.y_ = lhs * rhs.y_;
374 ret.z_ = lhs * rhs.z_;
[all …]
/development/samples/browseable/XYZTouristAttractions/Application/src/com.example.android.xyztouristattractions/ui/
DAttractionListFragment.java122 public int compare(Attraction lhs, Attraction rhs) { in loadAttractionsFromLocation()
124 lhs.location, curLatLng); in loadAttractionsFromLocation()
/development/apps/CustomLocale/src/com/android/customlocale2/
DCustomLocaleActivity.java240 public int compare(LocaleInfo lhs, LocaleInfo rhs) { in setupLocaleList()
241 return lhs.getLocale().compareTo(rhs.getLocale()); in setupLocaleList()
/development/samples/browseable/Camera2Video/src/com.example.android.camera2video/
DCamera2VideoFragment.java698 public int compare(Size lhs, Size rhs) { in compare() argument
700 return Long.signum((long) lhs.getWidth() * lhs.getHeight() - in compare()
/development/samples/browseable/Camera2Basic/src/com.example.android.camera2basic/
DCamera2BasicFragment.java963 public int compare(Size lhs, Size rhs) { in compare() argument
965 return Long.signum((long) lhs.getWidth() * lhs.getHeight() - in compare()
/development/samples/browseable/Camera2Raw/src/com.example.android.camera2raw/
DCamera2RawFragment.java1513 public int compare(Size lhs, Size rhs) { in compare() argument
1515 return Long.signum((long) lhs.getWidth() * lhs.getHeight() - in compare()