HomeSort by relevance Sort by last modified time
    Searched refs:cmp_op (Results 1 - 25 of 28) sorted by null

1 2

  /toolchain/binutils/binutils-2.25/gas/config/
xtensa-relax.h 95 typedef enum cmp_op CmpOp;
112 enum cmp_op enum
  /prebuilts/gdb/darwin-x86/include/python2.7/
opcode.h 154 enum cmp_op {PyCmp_LT=Py_LT, PyCmp_LE=Py_LE, PyCmp_EQ=Py_EQ, PyCmp_NE=Py_NE, PyCmp_GT=Py_GT, PyCmp_GE=Py_GE, enum
  /prebuilts/gdb/linux-x86/include/python2.7/
opcode.h 154 enum cmp_op {PyCmp_LT=Py_LT, PyCmp_LE=Py_LE, PyCmp_EQ=Py_EQ, PyCmp_NE=Py_NE, PyCmp_GT=Py_GT, PyCmp_GE=Py_GE, enum
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
opcode.h 154 enum cmp_op {PyCmp_LT=Py_LT, PyCmp_LE=Py_LE, PyCmp_EQ=Py_EQ, PyCmp_NE=Py_NE, PyCmp_GT=Py_GT, PyCmp_GE=Py_GE, enum
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
opcode.h 154 enum cmp_op {PyCmp_LT=Py_LT, PyCmp_LE=Py_LE, PyCmp_EQ=Py_EQ, PyCmp_NE=Py_NE, PyCmp_GT=Py_GT, PyCmp_GE=Py_GE, enum
  /external/opencv/cxcore/src/
cxcmp.cpp 554 void* dstarr, int cmp_op )
602 switch( cmp_op )
618 cmp_op = CV_CMP_EQ;
654 func = (CvFunc2D_3A)(cmp_tab[cmp_op == CV_CMP_EQ].fn_2d[type]);
659 ipp_cmp_op = cmp_op == CV_CMP_EQ ? cvCmpEq : cvCmpGreater;
693 cvCmpS( const void* srcarr, double value, void* dstarr, int cmp_op )
732 switch( cmp_op )
740 cmp_op = CV_CMP_GE;
744 cmp_op = CV_CMP_GT;
748 cmp_op = CV_CMP_EQ
    [all...]
_cxipp.h 450 arrtype* dst, int dststep, CvSize size, int cmp_op )) \
454 arrtype* dst, int dststep, CvSize size, int cmp_op )) \
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
opcode.py 7 __all__ = ["cmp_op", "hasconst", "hasname", "hasjrel", "hasjabs",
11 cmp_op = ('<', '<=', '==', '!=', '>', '>=', 'in', 'not in', 'is', variable
dis.py 103 print '(' + cmp_op[oparg] + ')',
147 print '(' + cmp_op[oparg] + ')',
  /prebuilts/gdb/linux-x86/lib/python2.7/
opcode.py 7 __all__ = ["cmp_op", "hasconst", "hasname", "hasjrel", "hasjabs",
11 cmp_op = ('<', '<=', '==', '!=', '>', '>=', 'in', 'not in', 'is', variable
dis.py 103 print '(' + cmp_op[oparg] + ')',
147 print '(' + cmp_op[oparg] + ')',
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
opcode.py 7 __all__ = ["cmp_op", "hasconst", "hasname", "hasjrel", "hasjabs",
11 cmp_op = ('<', '<=', '==', '!=', '>', '>=', 'in', 'not in', 'is', variable
dis.py 103 print '(' + cmp_op[oparg] + ')',
147 print '(' + cmp_op[oparg] + ')',
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
opcode.py 7 __all__ = ["cmp_op", "hasconst", "hasname", "hasjrel", "hasjabs",
11 cmp_op = ('<', '<=', '==', '!=', '>', '>=', 'in', 'not in', 'is', variable
dis.py 103 print '(' + cmp_op[oparg] + ')',
147 print '(' + cmp_op[oparg] + ')',
  /external/mesa3d/src/gallium/auxiliary/gallivm/
lp_bld_flow.c 280 * e.g. for(i = start; i cmp_op end; i += step)
284 * \param cmp_op comparison operator used for comparing current value with end value
292 LLVMIntPredicate cmp_op,
305 state->cond = cmp_op;
  /external/opencv/cvaux/src/
cvmat.cpp 816 cvCmp( a, b, this, mat_cmp.cmp_op );
818 cvCmpS( a, mat_cmp.alpha, this, mat_cmp.cmp_op );
  /external/opencv3/modules/hal/include/opencv2/hal/
intrin_cpp.hpp 233 #define OPENCV_HAL_IMPL_CMP_OP(cmp_op) \
235 inline v_reg<_Tp, n> operator cmp_op(const v_reg<_Tp, n>& a, const v_reg<_Tp, n>& b) \
240 c.s[i] = V_TypeTraits<_Tp>::reinterpret_from_int((itype)-(int)(a.s[i] cmp_op b.s[i])); \
  /external/opencv/cvaux/include/
cvmat.hpp 855 explicit _CvMAT_CMP_( const CvMAT* a, const CvMAT* b, int cmp_op );
856 explicit _CvMAT_CMP_( const CvMAT* a, double alpha, int cmp_op );
862 int cmp_op;
    [all...]
  /external/valgrind/memcheck/
mc_translate.c     [all...]
  /external/opencv/cxcore/include/
cxcore.h 600 CVAPI(void) cvCmp( const CvArr* src1, const CvArr* src2, CvArr* dst, int cmp_op );
603 CVAPI(void) cvCmpS( const CvArr* src, double value, CvArr* dst, int cmp_op );
    [all...]
  /external/opencv/cv/src/
_cvipp.h 620 uchar* dst, int dststep, CvSize size, int cmp_op ))
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/compiler/
pyassem.py 492 _cmp = list(dis.cmp_op)
  /prebuilts/gdb/linux-x86/lib/python2.7/compiler/
pyassem.py 492 _cmp = list(dis.cmp_op)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/compiler/
pyassem.py 492 _cmp = list(dis.cmp_op)

Completed in 348 milliseconds

1 2