Searched refs:rhs (Results 101 - 111 of 111) sorted by relevance

12345

/frameworks/base/tools/aapt/
H A DStringPool.cpp217 int StringPool::config_sort(void* state, const void* lhs, const void* rhs)
221 const entry& rhe = pool->mEntries[pool->mEntryArray[*static_cast<const size_t*>(rhs)]];
/frameworks/native/services/sensorservice/
H A DSensorService.cpp340 static int cmp(void const* lhs, void const* rhs) { argument
342 sensors_event_t const* r = static_cast<sensors_event_t const*>(rhs);
/frameworks/native/services/surfaceflinger/
H A DSurfaceFlinger.cpp289 EGLint rhs(other.v);
291 if (rhs == EGL_NONE) rhs = 0x7FFFFFFF;
292 return lhs < rhs;
2835 SurfaceFlinger::LayerVector::LayerVector(const LayerVector& rhs) argument
2836 : SortedVector<sp<LayerBase> >(rhs) {
2840 const void* rhs) const
2844 const sp<LayerBase>& r(*reinterpret_cast<const sp<LayerBase>*>(rhs));
/frameworks/base/cmds/installd/
H A Dutils.c722 const cache_file_t *rhs = *(const cache_file_t**)rhsP; local
723 return lhs->modTime < rhs->modTime ? -1 : (lhs->modTime > rhs->modTime ? 1 : 0);
/frameworks/base/core/java/android/content/
H A DSyncManager.java1345 public int compare(AuthoritySyncStats lhs, AuthoritySyncStats rhs) {
1347 int compare = Integer.compare(rhs.times, lhs.times);
1349 compare = Long.compare(rhs.elapsedTime, lhs.elapsedTime);
1389 public int compare(AccountSyncStats lhs, AccountSyncStats rhs) {
1391 int compare = Integer.compare(rhs.times, lhs.times);
1393 compare = Long.compare(rhs.elapsedTime, lhs.elapsedTime);
H A DContentService.java93 public int compare(Integer lhs, Integer rhs) {
95 int rc = pidCounts.get(rhs);
/frameworks/base/services/java/com/android/server/
H A DAlarmManagerService.java558 public int compare(FilterStats lhs, FilterStats rhs) {
559 if (lhs.aggregateTime < rhs.aggregateTime) {
561 } else if (lhs.aggregateTime > rhs.aggregateTime) {
/frameworks/support/v4/java/android/support/v4/view/
H A DViewPager.java112 public int compare(ItemInfo lhs, ItemInfo rhs) {
113 return lhs.position - rhs.position;
2750 public int compare(View lhs, View rhs) { argument
2752 final LayoutParams rlp = (LayoutParams) rhs.getLayoutParams();
/frameworks/base/opengl/java/android/opengl/
H A DMatrix.java48 * matrix. In matrix notation: result = lhs x rhs. Due to the way
50 * effect as first multiplying by the rhs matrix, then multiplying by
53 * The same float array may be passed for result, lhs, and/or rhs. However,
55 * either the lhs or rhs elements.
62 * @param rhs The float array that holds the right-hand-side matrix.
63 * @param rhsOffset The offset into the rhs array where the rhs is stored.
65 * @throws IllegalArgumentException if result, lhs, or rhs are null, or if
67 * rhsOffset + 16 > rhs.length.
70 float[] lhs, int lhsOffset, float[] rhs, in
69 multiplyMM(float[] result, int resultOffset, float[] lhs, int lhsOffset, float[] rhs, int rhsOffset) argument
[all...]
/frameworks/base/core/java/android/os/
H A DBatteryStats.java1539 public int compare(TimerEntry lhs, TimerEntry rhs) {
1541 long rhsTime = rhs.mTime;
/frameworks/base/services/java/com/android/server/am/
H A DActivityManagerService.java10310 public int compare(MemItem lhs, MemItem rhs) {
10311 if (lhs.pss < rhs.pss) {
10313 } else if (lhs.pss > rhs.pss) {

Completed in 338 milliseconds

12345