HomeSort by relevance Sort by last modified time
    Searched defs:CMP (Results 1 - 11 of 11) sorted by null

  /external/blktrace/
strverscmp.c 79 /* result_type: CMP: return diff; LEN: compare using len_diff/diff */
80 #define CMP 2
113 /* S_N */ CMP, CMP, CMP, CMP, CMP, LEN, CMP, CMP,
114 CMP, CMP, CMP, CMP, CMP, CMP, CMP, CMP,
    [all...]
  /external/bison/lib/
strverscmp.c 34 /* result_type: CMP: return diff; LEN: compare using len_diff/diff */
35 #define CMP 2
85 /* S_N */ CMP, CMP, CMP, CMP, CMP, LEN, CMP, CMP,
86 CMP, CMP, CMP, CMP, CMP, CMP, CMP, CMP
    [all...]
  /external/llvm/lib/Target/MSP430/
MSP430ISelLowering.h 47 /// CMP - Compare instruction.
48 CMP,
51 /// operand produced by a CMP instruction.
56 /// condition code, and operand 3 is the flag operand produced by a CMP
  /bionic/libc/upstream-freebsd/lib/libc/stdlib/
qsort.c 87 #define CMP(t, x, y) (cmp((t), (x), (y)))
89 #define CMP(t, x, y) (cmp((x), (y)))
93 med3(char *a, char *b, char *c, cmp_t *cmp, void *thunk
99 return CMP(thunk, a, b) < 0 ?
100 (CMP(thunk, b, c) < 0 ? b : (CMP(thunk, a, c) < 0 ? c : a ))
101 :(CMP(thunk, b, c) > 0 ? b : (CMP(thunk, a, c) < 0 ? a : c ))
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
brw_vec4_visitor.cpp 154 * CMP: Sets the low bit of the destination channels with the result
159 vec4_visitor::CMP(dst_reg dst, src_reg src0, src_reg src1, uint32_t condition)
639 emit(CMP(dst_null_d(), op[0], src_reg(0.0f), BRW_CONDITIONAL_NZ));
648 emit(CMP(dst_null_d(), op[0], src_reg(0), BRW_CONDITIONAL_NZ));
656 inst = emit(CMP(dst_null_d(), op[0], op[1], BRW_CONDITIONAL_Z));
661 inst = emit(CMP(dst_null_d(), op[0], op[1], BRW_CONDITIONAL_NZ));
666 inst = emit(CMP(dst_null_d(), op[0], src_reg(0), BRW_CONDITIONAL_NZ));
676 emit(CMP(dst_null_d(), op[0], op[1],
760 emit(CMP(dst_null_d(), op[0], op[1], BRW_CONDITIONAL_Z));
765 emit(CMP(dst_null_d(), op[0], op[1], BRW_CONDITIONAL_NZ))
    [all...]
  /external/llvm/lib/Target/ARM/
ARMISelLowering.h 55 CMP, // ARM compare instructions.
569 SDValue duplicateCmp(SDValue Cmp, SelectionDAG &DAG) const;
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_vec4_visitor.cpp 154 * CMP: Sets the low bit of the destination channels with the result
159 vec4_visitor::CMP(dst_reg dst, src_reg src0, src_reg src1, uint32_t condition)
639 emit(CMP(dst_null_d(), op[0], src_reg(0.0f), BRW_CONDITIONAL_NZ));
648 emit(CMP(dst_null_d(), op[0], src_reg(0), BRW_CONDITIONAL_NZ));
656 inst = emit(CMP(dst_null_d(), op[0], op[1], BRW_CONDITIONAL_Z));
661 inst = emit(CMP(dst_null_d(), op[0], op[1], BRW_CONDITIONAL_NZ));
666 inst = emit(CMP(dst_null_d(), op[0], src_reg(0), BRW_CONDITIONAL_NZ));
676 emit(CMP(dst_null_d(), op[0], op[1],
760 emit(CMP(dst_null_d(), op[0], op[1], BRW_CONDITIONAL_Z));
765 emit(CMP(dst_null_d(), op[0], op[1], BRW_CONDITIONAL_NZ))
    [all...]
  /art/compiler/utils/arm/
constants_arm.h 141 CMP = 10, // Compare
  /external/elfutils/0.153/src/
unstrip.c 807 #define CMP(value) \
821 CMP (value);
822 CMP (size);
823 CMP (shndx);
834 int cmp;
837 cmp = (s1->name == NULL) - (s2->name == NULL);
839 if (cmp == 0)
841 cmp = ((GELF_ST_BIND (s2->info.info) == STB_LOCAL)
844 if (cmp == 0)
846 cmp = ((GELF_ST_TYPE (s2->info.info) == STT_SECTION
832 int cmp; local
1284 int cmp = compare_unalloc_sections (shdr, &sec->shdr, local
    [all...]
  /external/llvm/lib/Target/X86/
X86ISelLowering.h 93 CMP, COMI, UCOMI,
99 /// operand, usually produced by a CMP instruction.
109 /// X86 FP SETCC, implemented with CMP{cc}SS/CMP{cc}SD.
120 /// flag operand produced by a CMP or TEST instruction. It also writes a
126 /// condition code, and operand 3 is the flag operand produced by a CMP
    [all...]
  /external/chromium_org/v8/src/arm/
constants-arm.h 140 CMP = 10 << 21, // Compare.

Completed in 490 milliseconds