Searched refs:cmp (Results 76 - 100 of 923) sorted by relevance

1234567891011>>

/external/lldb/tools/debugserver/source/MacOSX/
H A DHasAVX.s27 cmp $0x018000000, %ecx
32 cmp $0x06, %eax
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/cm/
H A Dmarkselection.js47 var cmp = CodeMirror.cmpPos;
50 if (cmp(from, to) == 0) return;
89 cmp(from, coverEnd.to) >= 0 || cmp(to, coverStart.from) <= 0)
92 while (cmp(from, coverStart.from) > 0) {
96 if (cmp(from, coverStart.from) < 0) {
105 while (cmp(to, coverEnd.to) < 0) {
109 if (cmp(to, coverEnd.to) > 0) {
/external/chromium_org/tools/traceline/traceline/
H A Dstubs.asm87 cmp eax, 0x1234567 label
88 cmp ecx, 0x1234567 label
97 cmp eax, 12 label
98 cmp ecx, BYTE 12 label
100 cmp WORD [esp+6], 0x6666 label
113 cmp ecx, ecx label
114 cmp ecx, ebx label
115 cmp ebx, ebx label
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_atomic_clang_other.h84 typename T::Type cmp = a->val_dont_use; local
87 cur = __sync_val_compare_and_swap(&a->val_dont_use, cmp, v);
88 if (cmp == v)
90 cmp = cur;
/external/llvm/test/MC/ELF/
H A Drelax-arith.s98 // CHECK: Name: cmp
105 .section cmp
106 cmp $foo, %bx
108 cmp $foo, %ebx
110 cmp $foo, %rbx
/external/llvm/test/MC/X86/
H A Dx86_errors.s9 cmp $0, 0(%eax) label
/external/zlib/src/contrib/gcc_gvmat64/
H A Dgvmat64.S223 cmp edi, esi
245 cmp r10d, eax
298 cmp bx,word ptr [rsi + r8 - 1]
307 cmp r8d, ebp
318 cmp bx,word ptr [rsi + r8 - 1]
327 cmp r8d, ebp
337 cmp bx,word ptr [rsi + r8 - 1]
346 cmp r8d, ebp
357 cmp bx,word ptr [rsi + r8 - 1]
388 cmp r8
[all...]
/external/chromium_org/third_party/mesa/src/src/glsl/
H A Dloop_controls.cpp137 ir_expression *const cmp = local
140 ir_constant *const cmp_result = cmp->constant_expression_value();
191 max_iterations = calculate_iterations(ir->from, ir->to, ir->increment, (ir_expression_operation)ir->cmp);
218 enum ir_expression_operation cmp = cond->operation; local
224 switch (cmp) {
225 case ir_binop_less: cmp = ir_binop_gequal; break;
226 case ir_binop_greater: cmp = ir_binop_lequal; break;
227 case ir_binop_lequal: cmp = ir_binop_greater; break;
228 case ir_binop_gequal: cmp = ir_binop_less; break;
246 cmp);
[all...]
/external/dexmaker/src/dx/java/com/android/dx/rop/cst/
H A DCstBaseMethodRef.java90 int cmp = super.compareTo0(other);
92 if (cmp != 0) {
93 return cmp;
H A DCstMemberRef.java76 int cmp = definingClass.compareTo(otherMember.definingClass);
78 if (cmp != 0) {
79 return cmp;
H A DCstNat.java81 int cmp = name.compareTo(otherNat.name);
83 if (cmp != 0) {
84 return cmp;
/external/mesa3d/src/glsl/
H A Dloop_controls.cpp137 ir_expression *const cmp = local
140 ir_constant *const cmp_result = cmp->constant_expression_value();
191 max_iterations = calculate_iterations(ir->from, ir->to, ir->increment, (ir_expression_operation)ir->cmp);
218 enum ir_expression_operation cmp = cond->operation; local
224 switch (cmp) {
225 case ir_binop_less: cmp = ir_binop_gequal; break;
226 case ir_binop_greater: cmp = ir_binop_lequal; break;
227 case ir_binop_lequal: cmp = ir_binop_greater; break;
228 case ir_binop_gequal: cmp = ir_binop_less; break;
246 cmp);
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/vpx_mem/memory_manager/include/
H A Dcavl_impl.h336 int cmp; variable
345 cmp = AVL_COMPARE_NODE_NODE(h, hh);
347 if (cmp == 0)
353 if (cmp > 0) {
366 if (cmp < 0)
376 cmp = L_BIT_ARR_VAL(branch, depth) ? 1 : -1;
380 if (cmp < 0)
382 else /* cmp > 0 */
385 hh = cmp < 0 ? AVL_GET_LESS(unbal, 1) : AVL_GET_GREATER(unbal, 1);
397 cmp
528 int cmp, cmp_shortened_sub_with_path; variable
724 int cmp, last_cmp; variable
935 int cmp, target_cmp; variable
[all...]
/external/libvpx/libvpx/vpx_mem/memory_manager/include/
H A Dcavl_impl.h336 int cmp; variable
345 cmp = AVL_COMPARE_NODE_NODE(h, hh);
347 if (cmp == 0)
353 if (cmp > 0) {
366 if (cmp < 0)
376 cmp = L_BIT_ARR_VAL(branch, depth) ? 1 : -1;
380 if (cmp < 0)
382 else /* cmp > 0 */
385 hh = cmp < 0 ? AVL_GET_LESS(unbal, 1) : AVL_GET_GREATER(unbal, 1);
397 cmp
528 int cmp, cmp_shortened_sub_with_path; variable
724 int cmp, last_cmp; variable
935 int cmp, target_cmp; variable
[all...]
/external/chromium_org/v8/src/
H A Dsplay-tree-inl.h32 int cmp = Config::Compare(key, root_->key_); local
33 if (cmp == 0) {
39 InsertInternal(cmp, node);
47 void SplayTree<Config, Allocator>::InsertInternal(int cmp, Node* node) { argument
48 if (cmp > 0) {
97 int cmp = Config::Compare(root_->key_, key); local
98 if (cmp <= 0) {
121 int cmp = Config::Compare(root_->key_, key); local
122 if (cmp >= 0) {
167 int cmp local
224 int cmp = Config::Compare(key, current->key_); local
[all...]
/external/linux-tools-perf/perf-3.12.0/arch/ia64/lib/
H A Dmemset.S66 cmp.ne p_nz, p_zr = value, r0 // use stf.spill if value is zero
67 cmp.eq p_scr, p0 = cnt, r0
79 cmp.ne p_unalgn, p0 = tmp, r0 //
82 cmp.gt p_scr, p0 = 16, cnt // is it a minimalistic task?
116 cmp.gt p_scr, p0 = tmp, cnt // is it a minimalistic task?
135 cmp.gt p_scr, p0 = PREF_AHEAD, linecnt // check against actual value
184 cmp.lt p_scr, p0 = ptr9, ptr1 // do we need more prefetching?
192 cmp.le p_scr, p0 = 8, cnt // just a few bytes left ?
205 cmp.gt p_scr, p0 = PREF_AHEAD, linecnt // check against actual value
238 cmp
[all...]
H A Dmemcpy_mck.S92 cmp.gt p15,p0=8,in2 // check for small size
93 cmp.ne p13,p0=0,r28 // check dest alignment
94 cmp.ne p14,p0=0,r29 // check src alignment
101 cmp.le p6,p0 = 1,r30 // for .align_dest
116 cmp.lt p6,p0=2*PREFETCH_DIST,cnt
117 cmp.lt p7,p8=1,cnt
142 cmp.eq p10,p0=r29,r0 // do we really need to loop?
144 cmp.le p6,p0=8,tmp
146 cmp.le p7,p0=16,tmp
148 cmp
[all...]
/external/chromium_org/v8/test/cctest/
H A Dtest-macro-assembler-ia32.cc74 __ cmp(ebx, edx);
77 __ cmp(ebx, edx);
88 __ cmp(ebx, edx);
92 __ cmp(ebx, edx);
102 __ cmp(ebx, edx);
106 __ cmp(ebx, edx);
116 __ cmp(ebx, edx);
119 __ cmp(ebx, edx);
138 __ cmp(edx, Immediate(0));
141 __ cmp(ec
[all...]
H A Dtest-macro-assembler-x87.cc74 __ cmp(ebx, edx);
77 __ cmp(ebx, edx);
88 __ cmp(ebx, edx);
92 __ cmp(ebx, edx);
102 __ cmp(ebx, edx);
106 __ cmp(ebx, edx);
116 __ cmp(ebx, edx);
119 __ cmp(ebx, edx);
125 __ cmp(edx, Immediate(0));
128 __ cmp(ec
[all...]
/external/jemalloc/include/jemalloc/internal/
H A Drb.h341 int cmp = (a_cmp)(node, tnode); \
342 if (cmp < 0) { \
345 } else if (cmp > 0) { \
369 int cmp = (a_cmp)(node, tnode); \
370 if (cmp < 0) { \
372 } else if (cmp > 0) { \
389 int cmp; \
392 && (cmp = (a_cmp)(key, ret)) != 0) { \
393 if (cmp < 0) { \
410 int cmp
[all...]
/external/chromium_org/third_party/skia/src/opts/
H A Dmemset32_neon.S15 cmp r2, #1
19 cmp r2, #4
21 cmp r2, #0
29 cmp r2, #16
33 cmp r2, #32
35 cmp r2, #64
37 cmp r2, #128
/external/skia/src/opts/
H A Dmemset32_neon.S16 cmp r2, #1
20 cmp r2, #4
22 cmp r2, #0
30 cmp r2, #16
34 cmp r2, #32
36 cmp r2, #64
38 cmp r2, #128
/external/valgrind/main/none/tests/ppc32/
H A Dtw.c298 #define TW_GROUP(cmp) \
299 try("tw_" #cmp "", tw_##cmp, -150, -100); \
300 try("tw_" #cmp "", tw_##cmp, -100, -100); \
301 try("tw_" #cmp "", tw_##cmp, -50, -100);
336 #define TD_GROUP(cmp) \
337 try("td_" #cmp "", td_##cmp,
[all...]
/external/valgrind/main/none/tests/ppc64/
H A Dtw_td.c298 #define TW_GROUP(cmp) \
299 try("tw_" #cmp "", tw_##cmp, -150, -100); \
300 try("tw_" #cmp "", tw_##cmp, -100, -100); \
301 try("tw_" #cmp "", tw_##cmp, -50, -100);
336 #define TD_GROUP(cmp) \
337 try("td_" #cmp "", td_##cmp,
[all...]
/external/openssl/crypto/bn/asm/
H A Dia64.S198 (p19) cmp.ltu.unc p56,p0=r40,r38 }
203 (p58) cmp.eq.or p57,p0=-1,r41 // (p20)
251 (p19) cmp.gtu.unc p56,p0=r40,r38 }
256 (p58) cmp.eq.or p57,p0=0,r41 // (p20)
331 (p28) cmp.ltu p54,p50=r41,r39 }
442 (p40) cmp.ltu p41,p39=r39,r35 } // (p27)
444 (p42) cmp.leu p41,p39=r39,r35 // (p27)
471 { .mii; cmp.le p6,p0=r34,r0
717 { .mfi; cmp.ltu p6,p0=r25,r24
741 cmp
[all...]

Completed in 6507 milliseconds

1234567891011>>