/prebuilts/ndk/9/platforms/android-21/arch-arm64/usr/include/linux/ |
futex.h | 90 #define FUTEX_OP(op, oparg, cmp, cmparg) (((op & 0xf) << 28) | ((cmp & 0xf) << 24) | ((oparg & 0xfff) << 12) | (cmparg & 0xfff))
|
/prebuilts/ndk/9/platforms/android-21/arch-mips/usr/include/linux/ |
futex.h | 90 #define FUTEX_OP(op, oparg, cmp, cmparg) (((op & 0xf) << 28) | ((cmp & 0xf) << 24) | ((oparg & 0xfff) << 12) | (cmparg & 0xfff))
|
/prebuilts/ndk/9/platforms/android-21/arch-mips64/usr/include/linux/ |
futex.h | 90 #define FUTEX_OP(op, oparg, cmp, cmparg) (((op & 0xf) << 28) | ((cmp & 0xf) << 24) | ((oparg & 0xfff) << 12) | (cmparg & 0xfff))
|
/prebuilts/ndk/9/platforms/android-21/arch-x86/usr/include/linux/ |
futex.h | 90 #define FUTEX_OP(op, oparg, cmp, cmparg) (((op & 0xf) << 28) | ((cmp & 0xf) << 24) | ((oparg & 0xfff) << 12) | (cmparg & 0xfff))
|
/prebuilts/ndk/9/platforms/android-21/arch-x86_64/usr/include/linux/ |
futex.h | 90 #define FUTEX_OP(op, oparg, cmp, cmparg) (((op & 0xf) << 28) | ((cmp & 0xf) << 24) | ((oparg & 0xfff) << 12) | (cmparg & 0xfff))
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_undocumented_details.py | 9 self.assertTrue(cmp(int, str) != 0) 28 self.assertEqual(cmp(g_cell, h_cell), 1)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_undocumented_details.py | 9 self.assertTrue(cmp(int, str) != 0) 28 self.assertEqual(cmp(g_cell, h_cell), 1)
|
/bionic/libc/arch-arm/cortex-a9/bionic/ |
strcmp.S | 109 cmp \reg, #0 118 cmp \reg, #0 139 cmp \w1, \w2 /* Are w1 and w2 the same? */ 290 cmp r7, ip, S2HIMEM #\offsetlo 296 cmp ip, #0 351 cmp r1, r2 387 cmp t1, #2 395 cmp t1, w2, S2LOMEM #8 404 cmp t1, w2, S2HIMEM #24 445 cmp t1, w2, S2LOMEM #1 [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/sqlite3/test/ |
hooks.py | 45 con.create_collation("coll?", cmp) 55 return -cmp(x, y) 104 con.create_collation("mycoll", cmp) 105 con.create_collation("mycoll", lambda x, y: -cmp(x, y)) 118 con.create_collation("mycoll", cmp)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/sqlite3/test/ |
hooks.py | 45 con.create_collation("coll?", cmp) 55 return -cmp(x, y) 104 con.create_collation("mycoll", cmp) 105 con.create_collation("mycoll", lambda x, y: -cmp(x, y)) 118 con.create_collation("mycoll", cmp)
|
/system/vold/ |
vdc.c | 87 char *cmp; local 90 asprintf(&cmp, "%s%s", argv[i], (i == (argc -1)) ? "" : " "); 92 asprintf(&cmp, "\"%s\"%s", argv[i], (i == (argc -1)) ? "" : " "); 94 ret = strlcat(final_cmd, cmp, sizeof(final_cmd)); 97 free(cmp);
|
/bionic/libc/arch-x86_64/string/ |
sse2-memcpy-slm.S | 94 cmp %rsi, %rdi 97 cmp $16, %rdx 100 cmp $SHARED_CACHE_SIZE_HALF, %rdx 105 cmp $32, %rdx 112 cmp $64, %rdx 121 cmp $128, %rdx 140 cmp %r8, %rdx 144 cmp %r8, %rdx 162 cmp %r8, %rdx 259 cmp %r8, %rd [all...] |
sse2-memmove-slm.S | 100 cmp %rsi, %rdi 106 cmp $16, %rdx 109 cmp $32, %rdx 120 cmp $64, %rdx 135 cmp $128, %rdx 186 cmp %r8, %rbx 189 cmp $SHARED_CACHE_SIZE_HALF, %rdx 206 cmp %r8, %rbx 218 cmp $32, %rdx 220 cmp $16, %rd [all...] |
sse4-memcmp-slm.S | 87 cmp $79, %rdx 90 cmp $1, %rdx 123 cmp $128, %rdx 147 cmp $32, %rdx 170 cmp $512, %rdx 172 cmp $256, %rdx 220 cmp $64, %rdx 223 cmp $32, %rdx 328 cmp $128, %rdx 331 cmp $64, %rd [all...] |
/external/v8/test/mjsunit/regress/ |
regress-crbug-240032.js | 42 function cmp(o, f) { function 45 assertTrue(cmp(o, o.func)); 46 assertTrue(cmp(o, o.func)); 47 %OptimizeFunctionOnNextCall(cmp); 48 assertTrue(cmp(o, o.func));
|
/libcore/luni/src/main/java/java/util/concurrent/ |
PriorityBlockingQueue.java | 292 Comparator<? super E> cmp = comparator; local 293 if (cmp == null) 296 siftDownUsingComparator(0, x, array, n, cmp); 331 Comparator<? super T> cmp) { 335 if (cmp.compare(x, (T) e) >= 0) 376 Comparator<? super T> cmp) { 383 if (right < n && cmp.compare((T) c, (T) array[right]) > 0) 385 if (cmp.compare(x, (T) c) <= 0) 402 Comparator<? super E> cmp = comparator; local 403 if (cmp == null) 448 Comparator<? super E> cmp = comparator; local 595 Comparator<? super E> cmp = comparator; local [all...] |
/external/libavc/encoder/arm/ |
ih264e_fmt_conv.s | 73 cmp r4, #1 92 cmp r6, #15 95 cmp r6, #0 146 cmp r6, #7 149 cmp r6, #0 305 cmp r12, #15 307 cmp r12, #0
|
/external/toybox/toys/pending/ |
expr.c | 74 static int cmp(struct value *lhs, struct value *rhs) function 139 lhs->i = cmp(lhs, rhs) != 0; 145 lhs->i = cmp(lhs, rhs) <= 0; 151 lhs->i = cmp(lhs, rhs) < 0; 157 lhs->i = cmp(lhs, rhs) >= 0; 163 lhs->i = cmp(lhs, rhs) > 0; 169 lhs->i = !cmp(lhs, rhs);
|
/bionic/libc/arch-arm64/generic/bionic/ |
memmove.S | 74 cmp dstin, src 77 cmp dstin, tmp1 85 cmp count, #64 97 cmp tmp1w, #0x20 156 cmp count, #63 208 cmp dstin, tmp1 212 cmp count, #64 224 cmp tmp1w, #0x20 284 cmp count, #63
|
/external/compiler-rt/lib/tsan/rtl/ |
tsan_interface_atomic.cc | 110 T cmp = *v; local 112 T newv = ~(cmp & op); 113 T cur = __sync_val_compare_and_swap(v, cmp, newv); 114 if (cmp == cur) 115 return cmp; 116 cmp = cur; 120 template<typename T> T func_cas(volatile T *v, T cmp, T xch) { 121 return __sync_val_compare_and_swap(v, cmp, xch); 132 a128 cmp = *v; local 134 return cmp; 139 a128 cmp = *v; local 146 a128 cmp = *v; local 153 a128 cmp = *v; local 160 a128 cmp = *v; local 167 a128 cmp = *v; local 174 a128 cmp = *v; local 940 a32 cmp = *(a32*)(a+8); local 949 a64 cmp = *(a64*)(a+8); local [all...] |
/external/zlib/src/contrib/masmx64/ |
inffasx64.asm | 62 cmp r10, rdi
64 cmp r9, rsi
71 cmp bl, 32
83 cmp r10, rdi
85 cmp r9, rsi
90 cmp bl, 32
153 cmp bl, 32
194 cmp eax, r15d
219 cmp r15d, 1 ; /* if dist 1, is a memset */
221 cmp [rsp+40], rdi ; /* if out == beg, outside window */ [all...] |
/bionic/libc/upstream-openbsd/lib/libc/stdlib/ |
tsearch.c | 62 int cmp; local 66 while ((cmp = (*compar)(key, (*rootp)->key)) != 0) { 68 rootp = (cmp < 0) ?
|
/external/boringssl/src/ssl/pqueue/ |
pqueue.c | 164 int cmp = memcmp(next->priority, item->priority, sizeof(item->priority)); local 165 if (cmp > 0) { 176 } else if (cmp == 0) {
|
/external/guava/guava/src/com/google/common/collect/ |
TreeMultiset.java | 177 int cmp = comparator().compare(range.getLowerEndpoint(), node.elem); local 178 if (cmp < 0) { 180 } else if (cmp == 0) { 199 int cmp = comparator().compare(range.getUpperEndpoint(), node.elem); local 200 if (cmp > 0) { 202 } else if (cmp == 0) { 545 int cmp = comparator.compare(e, elem); 546 if (cmp < 0) { 548 } else if (cmp > 0) { 578 int cmp = comparator.compare(e, elem) [all...] |
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ |
TreeMultiset.java | 173 int cmp = comparator().compare(range.getLowerEndpoint(), node.elem); local 174 if (cmp < 0) { 176 } else if (cmp == 0) { 195 int cmp = comparator().compare(range.getUpperEndpoint(), node.elem); local 196 if (cmp > 0) { 198 } else if (cmp == 0) { 541 int cmp = comparator.compare(e, elem); 542 if (cmp < 0) { 544 } else if (cmp > 0) { 574 int cmp = comparator.compare(e, elem) [all...] |