Searched refs:cmp (Results 1 - 25 of 35) sorted by relevance

12

/frameworks/base/libs/androidfw/
H A DAssetDir.cpp47 int cmp;
50 cmp = strcmp(pVector->itemAt(cur).getFileName(), fileName);
51 if (cmp == 0) {
54 } else if (cmp < 0) {
/frameworks/compile/libbcc/runtime/lib/arm/
H A Dswitch8.S34 cmp r0, ip // signed compare with index
H A Dswitchu8.S34 cmp r0, ip // compare with index
H A Dswitch16.S34 cmp r0, ip // compare with index
H A Dswitch32.S34 cmp r0, ip // compare with index
/frameworks/av/media/libstagefright/codecs/aacenc/src/asm/ARMV5E/
H A DAutoCorrelation_v5.s40 cmp r4, #0
43 cmp r4, #8
75 cmp r8, r12
85 cmp r8, r4
90 cmp r0, #0
96 cmp r2, #1
103 cmp r4, #0
106 cmp r4, #6
138 cmp r3, r12
150 cmp r
[all...]
H A Dband_nrg_v5.s36 cmp r5, #0
45 cmp r10, r2
64 cmp r10, r2
73 cmp r4, r5
93 cmp r3, #0
104 cmp r10, r11
169 cmp r10, r11
191 cmp r4, r3
H A DCalcWindowEnergy_v5.s83 cmp r4, r3
96 cmp r8, #8
H A DRadix4FFT_v5.s31 cmp r1, #0
38 cmp r10, #0
48 cmp r11, #0
153 cmp r10, #0
/frameworks/base/libs/hwui/
H A DTextDropShadowCache.h92 int cmp = memcmp(text, rhs.text, len); local
93 if (cmp < 0) return true;
94 if (cmp == 0 && rhs.positions != NULL) {
/frameworks/opt/calendar/tests/src/com/android/calendarcommon2/
H A DEventRecurrenceTest.java680 private static void cmp(int vlen, int[] v, int[] correct, String name) { method in class:EventRecurrenceTest
753 cmp(eventRecurrence.bysecondCount, eventRecurrence.bysecond, bysecond, "bysecond");
754 cmp(eventRecurrence.byminuteCount, eventRecurrence.byminute, byminute, "byminute");
755 cmp(eventRecurrence.byhourCount, eventRecurrence.byhour, byhour, "byhour");
756 cmp(eventRecurrence.bydayCount, eventRecurrence.byday, byday, "byday");
757 cmp(eventRecurrence.bydayCount, eventRecurrence.bydayNum, bydayNum, "bydayNum");
758 cmp(eventRecurrence.bymonthdayCount, eventRecurrence.bymonthday, bymonthday, "bymonthday");
759 cmp(eventRecurrence.byyeardayCount, eventRecurrence.byyearday, byyearday, "byyearday");
760 cmp(eventRecurrence.byweeknoCount, eventRecurrence.byweekno, byweekno, "byweekno");
761 cmp(eventRecurrenc
[all...]
/frameworks/native/include/utils/
H A DVector.h168 inline status_t sort(compar_t cmp);
169 inline status_t sort(compar_r_t cmp, void* state);
370 status_t Vector<TYPE>::sort(Vector<TYPE>::compar_t cmp) { argument
371 return VectorImpl::sort((VectorImpl::compar_t)cmp);
375 status_t Vector<TYPE>::sort(Vector<TYPE>::compar_r_t cmp, void* state) { argument
376 return VectorImpl::sort((VectorImpl::compar_r_t)cmp, state);
H A DVectorImpl.h94 status_t sort(compar_t cmp);
95 status_t sort(compar_r_t cmp, void* state);
/frameworks/av/media/libstagefright/codecs/aacenc/src/asm/ARMV7/
H A DRadix4FFT_v7.s35 cmp r1, #0
43 cmp r1, #0
52 cmp r2, #0
134 cmp r7, #0
H A DR4R8First_v7.s35 cmp r1, #0
128 cmp r1, #0
/frameworks/native/libs/utils/
H A DVectorImpl.cpp160 status_t VectorImpl::sort(VectorImpl::compar_t cmp) argument
162 return sort(sortProxy, (void*)cmp);
165 status_t VectorImpl::sort(VectorImpl::compar_r_t cmp, void* state) argument
178 if (cmp(curr, item, state) > 0) {
202 } while (j>=0 && (cmp(curr, temp, state) > 0));
/frameworks/av/media/libstagefright/codecs/mp3dec/src/asm/
H A Dpvmp3_polyphase_filter_window_arm.s141 cmp r4,#0x210
173 cmp r10,#0x10
202 cmp r3,#0x210
H A Dpvmp3_polyphase_filter_window_gcc.s141 cmp r4,#0x210
173 cmp r10,#0x10
202 cmp r3,#0x210
H A Dpvmp3_polyphase_filter_window_wm.asm136 cmp r4,#0x210
168 cmp r10,#0x10
197 cmp r3,#0x210
/frameworks/compile/llvm-ndk-cc/tests/
H A Dtest.py32 return filecmp.cmp(Actual, Expect, False)
/frameworks/compile/slang/tests/
H A Dtest.py40 return filecmp.cmp(actual, expect, False)
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
H A Dfastquant_inline.h208 cmp q_value, #0
304 cmp q_value, #0
384 cmp coeff, #0
492 asm volatile("cmp %2, #0\n\t"
544 asm volatile("cmp %1, #0\n\t"
/frameworks/base/tools/aapt/
H A DStringPool.cpp149 int cmp = ent.configs.itemAt(addPos).compareLogical(*config); local
150 if (cmp >= 0) {
151 if (cmp > 0) {
/frameworks/native/opengl/tools/glgen/
H A Dgen117 if cmp -s $1/$3 $2/$3 ; then
/frameworks/native/services/sensorservice/
H A DSensorService.cpp340 static int cmp(void const* lhs, void const* rhs) { function in struct:android::compar
346 qsort(buffer, count, sizeof(sensors_event_t), compar::cmp);

Completed in 610 milliseconds

12