HomeSort by relevance Sort by last modified time
    Searched refs:cmp (Results 326 - 350 of 771) sorted by null

<<11121314151617181920>>

  /external/bluetooth/glib/glib/
gslist.c 757 gint cmp; local
769 cmp = ((GCompareDataFunc) func) (data, tmp_list->data, user_data);
771 while ((tmp_list->next) && (cmp > 0))
776 cmp = ((GCompareDataFunc) func) (data, tmp_list->data, user_data);
782 if ((!tmp_list->next) && (cmp > 0))
855 gint cmp; local
861 cmp = ((GCompareDataFunc) compare_func) (l1->data, l2->data, user_data);
863 if (cmp <= 0)
  /external/e2fsprogs/tests/defaults/
e_script 34 cmp -s $EXPECT $OUT
  /external/openssl/crypto/rc4/asm/
rc4-586.pl 165 &cmp ($ty,0); # safety net
179 &cmp (&DWP(256,$dat),-1);
211 &cmp ($inp,&DWP(-4,$dat));
228 &cmp ($inp,&wparam(1)); # compare to input+len
240 &cmp ($inp,&wparam(2)); # compare to input+(len/4)*4-4
246 &cmp ($inp,&wparam(1)); # compare to input+len
262 &cmp ($inp,&wparam(1)); # compare to input+len
283 &cmp ($inp,&wparam(1));
  /external/skia/src/core/asm/
s32a_d565_opaque.S 35 cmp r1, #0
39 cmp lr, #255 // 0xff
  /external/v8/src/
list.h 139 void Sort(int (*cmp)(const T* x, const T* y));
178 const List<T>& list, T elem, int (*cmp)(const T* x, const T* y));
  /external/webkit/Tools/Scripts/webkitpy/tool/bot/
feeders.py 78 rollout_cmp = cmp(b.is_rollout(), a.is_rollout())
81 return cmp(a.attach_date(), b.attach_date())
  /libcore/luni/src/main/java/java/util/concurrent/
ConcurrentLinkedQueue.java 154 boolean casItem(E cmp, E val) {
155 return UNSAFE.compareAndSwapObject(this, itemOffset, cmp, val);
162 boolean casNext(Node<E> cmp, Node<E> val) {
163 return UNSAFE.compareAndSwapObject(this, nextOffset, cmp, val);
772 private boolean casTail(Node<E> cmp, Node<E> val) {
773 return UNSAFE.compareAndSwapObject(this, tailOffset, cmp, val);
776 private boolean casHead(Node<E> cmp, Node<E> val) {
777 return UNSAFE.compareAndSwapObject(this, headOffset, cmp, val);
  /libcore/luni/src/main/java/java/util/concurrent/atomic/
AtomicMarkableReference.java 170 private boolean casPair(Pair<V> cmp, Pair<V> val) {
171 return UNSAFE.compareAndSwapObject(this, pairOffset, cmp, val);
AtomicStampedReference.java 169 private boolean casPair(Pair<V> cmp, Pair<V> val) {
170 return UNSAFE.compareAndSwapObject(this, pairOffset, cmp, val);
  /ndk/sources/host-tools/sed-4.2.1/
Makefile.am 26 cmp bootstrap.sh $(srcdir)/bootstrap.sh > /dev/null 2>&1 || \
  /device/samsung/crespo/sec_mm/sec_omx/sec_codecs/video/mfc_c110/csc/
csc_nv12t_yuv420_uv_neon.s 76 cmp r3, #1024
84 cmp r10, #0x1
110 cmp r12, r11
272 cmp r6, r4
281 cmp r10, #512
289 cmp r10, #0x1
317 cmp r12, r11
414 cmp r6, r4
423 cmp r10, #256
431 cmp r10, #0x
    [all...]
csc_nv12t_yuv420_y_neon.s 71 cmp r2, #1024
81 cmp r10, #0x1
107 cmp r12, r11
232 cmp r5, r3
242 cmp r14, #512
250 cmp r10, #0x1
279 cmp r12, r11
355 cmp r5, r3
365 cmp r14, #256
373 cmp r10, #0x
    [all...]
  /frameworks/opt/calendar/tests/src/com/android/calendarcommon/
EventRecurrenceTest.java 680 private static void cmp(int vlen, int[] v, int[] correct, String name) { method in class:EventRecurrenceTest
753 cmp(eventRecurrence.bysecondCount, eventRecurrence.bysecond, bysecond, "bysecond"); method
754 cmp(eventRecurrence.byminuteCount, eventRecurrence.byminute, byminute, "byminute"); method
755 cmp(eventRecurrence.byhourCount, eventRecurrence.byhour, byhour, "byhour"); method
756 cmp(eventRecurrence.bydayCount, eventRecurrence.byday, byday, "byday"); method
757 cmp(eventRecurrence.bydayCount, eventRecurrence.bydayNum, bydayNum, "bydayNum"); method
758 cmp(eventRecurrence.bymonthdayCount, eventRecurrence.bymonthday, bymonthday, "bymonthday"); method
759 cmp(eventRecurrence.byyeardayCount, eventRecurrence.byyearday, byyearday, "byyearday"); method
760 cmp(eventRecurrence.byweeknoCount, eventRecurrence.byweekno, byweekno, "byweekno"); method
761 cmp(eventRecurrence.bymonthCount, eventRecurrence.bymonth, bymonth, "bymonth") method
762 cmp(eventRecurrence.bysetposCount, eventRecurrence.bysetpos, bysetpos, "bysetpos"); method
    [all...]
  /dalvik/vm/compiler/template/armv5te/
TEMPLATE_INVOKE_METHOD_NO_OPT.S 16 cmp r10, r9 @ bottom < interpStackEnd?
30 cmp r8, #0 @ breakFlags != 0
  /dalvik/vm/mterp/armv5te/
OP_SGET_WIDE.S 14 cmp r0, #0 @ is resolved entry null?
46 cmp r0, #0 @ success?
OP_SPUT_WIDE.S 16 cmp r2, #0 @ is resolved entry null?
47 cmp r0, #0 @ success?
  /dalvik/vm/mterp/x86-atom/
OP_SPUT_OBJECT.S 36 cmp $$0, (%ecx, %eax, 4) # check for null ptr; resolved StaticField
51 cmp $$0, %eax # check if initalization failed
  /external/bluetooth/glib/gio/xdgmime/
xdgmimecache.c 316 int i, min, max, mid, cmp; local
333 cmp = strcmp (ptr, alias);
335 if (cmp < 0)
337 else if (cmp > 0)
361 int i, min, max, mid, cmp; local
378 cmp = strcmp (ptr, file_name);
380 if (cmp < 0)
382 else if (cmp > 0)
773 int i, j, min, max, med, cmp; local
814 cmp = strcmp (cache->buffer + offset, umime)
912 int i, min, max, mid, cmp; local
    [all...]
  /external/clang/test/CodeGen/
atomic.c 10 int cmp = 0; local
  /external/dhcpcd/
dhcpcd-run-hooks.in 102 if type cmp >/dev/null 2>&1; then
103 cmp -s "$1" "$2"
  /external/linux-tools-perf/util/
hist.c 150 int cmp; local
156 cmp = hist_entry__cmp(&entry, he);
158 if (!cmp) {
164 if (cmp < 0)
185 int64_t cmp = 0; local
188 cmp = se->se_cmp(left, right);
189 if (cmp)
193 return cmp;
200 int64_t cmp = 0; local
207 cmp = f(left, right)
231 int64_t cmp; local
    [all...]
  /external/llvm/test/MC/ARM/
thumb.s 4 cmp r1, r2
5 @ CHECK: cmp r1, r2 @ encoding: [0x91,0x42]
  /external/openssh/regress/
reexec.sh 31 cmp ${DATA} ${COPY} || fail "corrupted copy"
sftp-badcmds.sh 56 cmp $DATA ${COPY} >/dev/null 2>&1 || fail "corrupted oldname after rename target exists (directory)"
63 cmp ${DATA2} ${COPY} || fail "put successed when it should have failed"
  /external/openssl/crypto/
armv4cpuid.S 28 cmp r2,#0
43 cmp r0,#0
61 cmp r1,#7
64 cmp r1,#0

Completed in 445 milliseconds

<<11121314151617181920>>