Home
last modified time | relevance | path

Searched defs:op (Results 1 – 25 of 1514) sorted by relevance

12345678910>>...61

/external/vixl/test/
Dtest-operands.cc44 aarch32::Operand op = aarch32::Operand::From(42); in TEST_AARCH32() local
50 aarch32::Operand op = aarch32::Operand::From(-42); in TEST_AARCH32() local
58 aarch32::Operand op = aarch32::Operand::From(-1); in TEST_AARCH32() local
64 aarch32::Operand op = aarch32::Operand::From(UINT32_MAX); in TEST_AARCH32() local
70 aarch32::Operand op = aarch32::Operand::From(INT32_MAX); in TEST_AARCH32() local
76 aarch32::Operand op = aarch32::Operand::From(INT32_MIN); in TEST_AARCH32() local
84 aarch32::Operand op = aarch32::Operand::From(INT64_C(-1)); in TEST_AARCH32() local
90 aarch32::Operand op = aarch32::Operand::From(INT64_C(-42)); in TEST_AARCH32() local
100 aarch32::Operand op = aarch32::Operand::From(&data); in TEST_AARCH32() local
108 aarch32::Operand op = aarch32::Operand::From(data); in TEST_AARCH32() local
/external/python/cpython2/Objects/
Dcellobject.c8 PyCellObject *op; in PyCell_New() local
21 PyCell_Get(PyObject *op) in PyCell_Get()
32 PyCell_Set(PyObject *op, PyObject *obj) in PyCell_Set()
47 cell_dealloc(PyCellObject *op) in cell_dealloc()
73 cell_repr(PyCellObject *op) in cell_repr()
84 cell_traverse(PyCellObject *op, visitproc visit, void *arg) in cell_traverse()
91 cell_clear(PyCellObject *op) in cell_clear()
98 cell_get_contents(PyCellObject *op, void *closure) in cell_get_contents()
Dfuncobject.c12 PyFunctionObject *op = PyObject_GC_New(PyFunctionObject, in PyFunction_New() local
64 PyFunction_GetCode(PyObject *op) in PyFunction_GetCode()
74 PyFunction_GetGlobals(PyObject *op) in PyFunction_GetGlobals()
84 PyFunction_GetModule(PyObject *op) in PyFunction_GetModule()
94 PyFunction_GetDefaults(PyObject *op) in PyFunction_GetDefaults()
104 PyFunction_SetDefaults(PyObject *op, PyObject *defaults) in PyFunction_SetDefaults()
124 PyFunction_GetClosure(PyObject *op) in PyFunction_GetClosure()
134 PyFunction_SetClosure(PyObject *op, PyObject *closure) in PyFunction_SetClosure()
185 func_get_dict(PyFunctionObject *op) in func_get_dict()
199 func_set_dict(PyFunctionObject *op, PyObject *value) in func_set_dict()
[all …]
/external/v8/src/parsing/
Dtoken.h228 static bool IsBinaryOp(Value op) { return COMMA <= op && op <= EXP; } in IsBinaryOp()
230 static bool IsTruncatingBinaryOp(Value op) { in IsTruncatingBinaryOp()
234 static bool IsCompareOp(Value op) { in IsCompareOp()
238 static bool IsOrderedRelationalCompareOp(Value op) { in IsOrderedRelationalCompareOp()
242 static bool IsEqualityOp(Value op) { in IsEqualityOp()
246 static bool IsInequalityOp(Value op) { in IsInequalityOp()
250 static bool IsArithmeticCompareOp(Value op) { in IsArithmeticCompareOp()
255 static Value NegateCompareOp(Value op) { in NegateCompareOp()
272 static Value ReverseCompareOp(Value op) { in ReverseCompareOp()
289 static bool EvalComparison(Value op, double op1, double op2) { in EvalComparison()
[all …]
/external/skia/src/core/
DSkRasterClip.cpp17 static MutateResult mutate_conservative_op(SkRegion::Op* op, bool inverseFilled) { in mutate_conservative_op()
63 void SkConservativeClip::op(const SkRect& localRect, const SkMatrix& ctm, const SkIRect& devBounds, in op() function in SkConservativeClip
64 SkRegion::Op op, bool doAA) { in op()
81 void SkConservativeClip::op(const SkRRect& rrect, const SkMatrix& ctm, const SkIRect& devBounds, in op() function in SkConservativeClip
82 SkRegion::Op op, bool doAA) { in op()
86 void SkConservativeClip::op(const SkPath& path, const SkMatrix& ctm, const SkIRect& devBounds, in op() function in SkConservativeClip
87 SkRegion::Op op, bool doAA) { in op()
105 void SkConservativeClip::op(const SkRegion& rgn, SkRegion::Op op) { in op() function in SkConservativeClip
109 void SkConservativeClip::op(const SkIRect& devRect, SkRegion::Op op) { in op() argument
214 SkRegion::Op op; in setConservativeRect() local
[all …]
/external/mesa3d/src/gallium/drivers/r600/
Dr600_isa.c520 r600_isa_alu(unsigned op) { in r600_isa_alu()
526 r600_isa_fetch(unsigned op) { in r600_isa_fetch()
532 r600_isa_cf(unsigned op) { in r600_isa_cf()
559 const struct alu_op_info *op = &r600_alu_op_table[i]; in r600_isa_init() local
572 const struct fetch_op_info *op = &fetch_op_table[i]; in r600_isa_init() local
580 const struct cf_op_info *op = &cf_op_table[i]; in r600_isa_init() local
/external/python/cpython2/Include/
Dtupleobject.h36 #define PyTuple_Check(op) \ argument
38 #define PyTuple_CheckExact(op) (Py_TYPE(op) == &PyTuple_Type) argument
50 #define PyTuple_GET_ITEM(op, i) (((PyTupleObject *)(op))->ob_item[i]) argument
51 #define PyTuple_GET_SIZE(op) Py_SIZE(op) argument
54 #define PyTuple_SET_ITEM(op, i, v) (((PyTupleObject *)(op))->ob_item[i] = v) argument
Dlistobject.h43 #define PyList_Check(op) \ argument
45 #define PyList_CheckExact(op) (Py_TYPE(op) == &PyList_Type) argument
61 #define PyList_GET_ITEM(op, i) (((PyListObject *)(op))->ob_item[i]) argument
62 #define PyList_SET_ITEM(op, i, v) (((PyListObject *)(op))->ob_item[i] = (v)) argument
63 #define PyList_GET_SIZE(op) Py_SIZE(op) argument
Dstringobject.h58 #define PyString_Check(op) \ argument
60 #define PyString_CheckExact(op) (Py_TYPE(op) == &PyString_Type) argument
88 #define PyString_CHECK_INTERNED(op) (((PyStringObject *)(op))->ob_sstate) argument
91 #define PyString_AS_STRING(op) (((PyStringObject *)(op))->ob_sval) argument
92 #define PyString_GET_SIZE(op) Py_SIZE(op) argument
Ddatetime.h170 #define PyDate_Check(op) PyObject_TypeCheck(op, &PyDateTime_DateType) argument
171 #define PyDate_CheckExact(op) (Py_TYPE(op) == &PyDateTime_DateType) argument
173 #define PyDateTime_Check(op) PyObject_TypeCheck(op, &PyDateTime_DateTimeType) argument
174 #define PyDateTime_CheckExact(op) (Py_TYPE(op) == &PyDateTime_DateTimeType) argument
176 #define PyTime_Check(op) PyObject_TypeCheck(op, &PyDateTime_TimeType) argument
177 #define PyTime_CheckExact(op) (Py_TYPE(op) == &PyDateTime_TimeType) argument
179 #define PyDelta_Check(op) PyObject_TypeCheck(op, &PyDateTime_DeltaType) argument
180 #define PyDelta_CheckExact(op) (Py_TYPE(op) == &PyDateTime_DeltaType) argument
182 #define PyTZInfo_Check(op) PyObject_TypeCheck(op, &PyDateTime_TZInfoType) argument
183 #define PyTZInfo_CheckExact(op) (Py_TYPE(op) == &PyDateTime_TZInfoType) argument
[all …]
Ddictobject.h99 #define PyDict_Check(op) \ argument
101 #define PyDict_CheckExact(op) (Py_TYPE(op) == &PyDict_Type) argument
102 #define PyDictKeys_Check(op) (Py_TYPE(op) == &PyDictKeys_Type) argument
103 #define PyDictItems_Check(op) (Py_TYPE(op) == &PyDictItems_Type) argument
104 #define PyDictValues_Check(op) (Py_TYPE(op) == &PyDictValues_Type) argument
106 # define PyDictViewSet_Check(op) \ argument
Dintobject.h30 #define PyInt_Check(op) \ argument
32 #define PyInt_CheckExact(op) ((op)->ob_type == &PyInt_Type) argument
52 #define PyInt_AS_LONG(op) (((PyIntObject *)(op))->ob_ival) argument
Dcellobject.h16 #define PyCell_Check(op) (Py_TYPE(op) == &PyCell_Type) argument
22 #define PyCell_GET(op) (((PyCellObject *)(op))->ob_ref) argument
23 #define PyCell_SET(op, v) (((PyCellObject *)(op))->ob_ref = v) argument
Dweakrefobject.h45 #define PyWeakref_CheckRef(op) PyObject_TypeCheck(op, &_PyWeakref_RefType) argument
46 #define PyWeakref_CheckRefExact(op) \ argument
48 #define PyWeakref_CheckProxy(op) \ argument
52 #define PyWeakref_Check(op) \ argument
Dmemoryobject.h11 #define PyMemoryView_Check(op) (Py_TYPE(op) == &PyMemoryView_Type) argument
14 #define PyMemoryView_GET_BUFFER(op) (&((PyMemoryViewObject *)(op))->view) argument
16 #define PyMemoryView_GET_BASE(op) (((PyMemoryViewObject *)(op))->view.obj) argument
/external/valgrind/none/tests/mips64/
Dmacro_fpu.h56 #define UNOPdd(op) \ argument
65 #define UNOPff(op) \ argument
74 #define UNOPfd(op) \ argument
83 #define UNOPdf(op) \ argument
92 #define UNOPfw(op) \ argument
103 #define UNOPdw(op) \ argument
114 #define UNOPwd(op) \ argument
125 #define UNOPwf(op) \ argument
136 #define UNOPld(op) \ argument
147 #define UNOPdl(op) \ argument
[all …]
/external/valgrind/none/tests/mips32/
Dround.c63 #define BINOP(op) \ argument
69 #define UNOPdd(op) \ argument
76 #define UNOPff(op) \ argument
83 #define UNOPfd(op) \ argument
90 #define UNOPdf(op) \ argument
97 #define UNOPfw(op) \ argument
106 #define UNOPdw(op) \ argument
115 #define UNOPwd(op) \ argument
124 #define UNOPwf(op) \ argument
165 int directedRoundingMode(flt_dir_op_t op) { in directedRoundingMode()
[all …]
/external/mesa3d/src/gallium/drivers/ilo/genhw/
Dgenhw.h41 #define GEN_MI_CMD(gen, op) (GEN6_MI_TYPE_MI | gen ## _MI_OPCODE_ ## op) argument
42 #define GEN6_MI_CMD(op) GEN_MI_CMD(GEN6, op) argument
43 #define GEN7_MI_CMD(op) GEN_MI_CMD(GEN7, op) argument
45 #define GEN_BLITTER_CMD(gen, op) \ argument
47 #define GEN6_BLITTER_CMD(op) GEN_BLITTER_CMD(GEN6, op) argument
49 #define GEN_RENDER_CMD(subtype, gen, op) \ argument
53 #define GEN6_RENDER_CMD(subtype, op) GEN_RENDER_CMD(subtype, GEN6, op) argument
54 #define GEN7_RENDER_CMD(subtype, op) GEN_RENDER_CMD(subtype, GEN7, op) argument
55 #define GEN75_RENDER_CMD(subtype, op) GEN_RENDER_CMD(subtype, GEN75, op) argument
56 #define GEN8_RENDER_CMD(subtype, op) GEN_RENDER_CMD(subtype, GEN8, op) argument
/external/v8/src/compiler/
Doperator-properties.cc16 bool OperatorProperties::HasContextInput(const Operator* op) { in HasContextInput()
23 bool OperatorProperties::HasFrameStateInput(const Operator* op) { in HasFrameStateInput()
118 int OperatorProperties::GetTotalInputCount(const Operator* op) { in GetTotalInputCount()
126 bool OperatorProperties::IsBasicBlockBegin(const Operator* op) { in IsBasicBlockBegin()
Dcode-generator-impl.h122 Label* ToLabel(InstructionOperand* op) { in ToLabel()
126 RpoNumber ToRpoNumber(InstructionOperand* op) { in ToRpoNumber()
130 Register ToRegister(InstructionOperand* op) { in ToRegister()
134 FloatRegister ToFloatRegister(InstructionOperand* op) { in ToFloatRegister()
138 DoubleRegister ToDoubleRegister(InstructionOperand* op) { in ToDoubleRegister()
142 Simd128Register ToSimd128Register(InstructionOperand* op) { in ToSimd128Register()
146 Constant ToConstant(InstructionOperand* op) { in ToConstant()
154 double ToDouble(InstructionOperand* op) { return ToConstant(op).ToFloat64(); } in ToDouble()
156 float ToFloat32(InstructionOperand* op) { return ToConstant(op).ToFloat32(); } in ToFloat32()
158 ExternalReference ToExternalReference(InstructionOperand* op) { in ToExternalReference()
[all …]
/external/javassist/src/main/javassist/compiler/ast/
DStmnt.java27 public Stmnt(int op, ASTree _head, ASTList _tail) { in Stmnt()
32 public Stmnt(int op, ASTree _head) { in Stmnt()
37 public Stmnt(int op) { in Stmnt()
41 public static Stmnt make(int op, ASTree oprand1, ASTree oprand2) { in make()
45 public static Stmnt make(int op, ASTree op1, ASTree op2, ASTree op3) { in make()
DExpr.java33 Expr(int op, ASTree _head, ASTList _tail) { in Expr()
38 Expr(int op, ASTree _head) { in Expr()
43 public static Expr make(int op, ASTree oprand1, ASTree oprand2) { in make()
47 public static Expr make(int op, ASTree oprand1) { in make()
53 public void setOperator(int op) { operatorId = op; } in setOperator()
/external/e2fsprogs/intl/
Dplural.y51 enum operator op; member
63 new_exp (int nargs, enum operator op, struct expression * const *args) in new_exp()
92 new_exp_0 (enum operator op) in new_exp_0()
98 new_exp_1 (enum operator op, struct expression *right) in new_exp_1()
107 new_exp_2 (enum operator op, struct expression *left, struct expression *right) in new_exp_2()
117 new_exp_3 (enum operator op, struct expression *bexp, in new_exp_3()
/external/swiftshader/third_party/subzero/crosstest/
Dtest_icmp.h20 #define X(cmp, op) \ argument
35 #define X(cmp, op) \ argument
50 #define X(cmp, op) \ argument
/external/python/cpython2/Lib/
Dopcode.py27 def def_op(name, op): argument
31 def name_op(name, op): argument
35 def jrel_op(name, op): argument
39 def jabs_op(name, op): argument

12345678910>>...61