Searched refs:lhs (Results 1 – 7 of 7) sorted by relevance
/development/ndk/platforms/android-3/include/linux/ |
D | ktime.h | 38 #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/ |
D | vecmath.h | 145 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/ |
D | AttractionListFragment.java | 122 public int compare(Attraction lhs, Attraction rhs) { in loadAttractionsFromLocation() 124 lhs.location, curLatLng); in loadAttractionsFromLocation()
|
/development/apps/CustomLocale/src/com/android/customlocale2/ |
D | CustomLocaleActivity.java | 240 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/ |
D | Camera2VideoFragment.java | 698 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/ |
D | Camera2BasicFragment.java | 963 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/ |
D | Camera2RawFragment.java | 1513 public int compare(Size lhs, Size rhs) { in compare() argument 1515 return Long.signum((long) lhs.getWidth() * lhs.getHeight() - in compare()
|