Home
last modified time | relevance | path

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

12345678910>>...84

/third_party/mesa3d/src/panfrost/midgard/
Dmidgard_ops.h35 #define OP_IS_ATOMIC(op) (load_store_opcode_props[op].props & LDST_ATOMIC) argument
36 #define OP_USES_ATTRIB(op) (load_store_opcode_props[op].props & LDST_ATTRIB) argument
37 #define OP_IS_STORE(op) (load_store_opcode_props[op].props & LDST_STORE) argument
38 #define OP_HAS_ADDRESS(op) (load_store_opcode_props[op].props & LDST_ADDRESS) argument
44 midgard_is_integer_op(int op) in midgard_is_integer_op()
50 midgard_is_unsigned_op(int op) in midgard_is_unsigned_op()
84 midgard_is_integer_out_op(int op) in midgard_is_integer_out_op()
95 effective_writemask(midgard_alu_op op, unsigned existing_mask) in effective_writemask()
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/test/reduce/
Dremove_unused_instruction_test.cpp79 for (auto& op : ops) { in TEST() local
115 for (auto& op : ops) { in TEST() local
144 for (auto& op : ops) { in TEST() local
172 for (auto& op : ops) { in TEST() local
199 for (auto& op : ops) { in TEST() local
265 for (auto& op : ops) { in TEST() local
296 for (auto& op : ops) { in TEST() local
324 for (auto& op : ops) { in TEST() local
351 for (auto& op : ops) { in TEST() local
444 for (auto& op : ops) { in TEST() local
[all …]
/third_party/skia/third_party/externals/spirv-tools/test/reduce/
Dremove_unused_instruction_test.cpp79 for (auto& op : ops) { in TEST() local
115 for (auto& op : ops) { in TEST() local
144 for (auto& op : ops) { in TEST() local
172 for (auto& op : ops) { in TEST() local
199 for (auto& op : ops) { in TEST() local
265 for (auto& op : ops) { in TEST() local
296 for (auto& op : ops) { in TEST() local
324 for (auto& op : ops) { in TEST() local
351 for (auto& op : ops) { in TEST() local
444 for (auto& op : ops) { in TEST() local
[all …]
/third_party/spirv-tools/test/reduce/
Dremove_unused_instruction_test.cpp79 for (auto& op : ops) { in TEST() local
115 for (auto& op : ops) { in TEST() local
144 for (auto& op : ops) { in TEST() local
172 for (auto& op : ops) { in TEST() local
199 for (auto& op : ops) { in TEST() local
265 for (auto& op : ops) { in TEST() local
296 for (auto& op : ops) { in TEST() local
324 for (auto& op : ops) { in TEST() local
351 for (auto& op : ops) { in TEST() local
444 for (auto& op : ops) { in TEST() local
[all …]
/third_party/python/Objects/
Dcellobject.c9 PyCellObject *op; in PyCell_New() local
53 PyCell_Get(PyObject *op) in PyCell_Get()
64 PyCell_Set(PyObject *op, PyObject *obj) in PyCell_Set()
79 cell_dealloc(PyCellObject *op) in cell_dealloc()
87 cell_richcompare(PyObject *a, PyObject *b, int op) in cell_richcompare()
107 cell_repr(PyCellObject *op) in cell_repr()
118 cell_traverse(PyCellObject *op, visitproc visit, void *arg) in cell_traverse()
125 cell_clear(PyCellObject *op) in cell_clear()
132 cell_get_contents(PyCellObject *op, void *closure) in cell_get_contents()
144 cell_set_contents(PyCellObject *op, PyObject *obj, void *Py_UNUSED(ignored)) in cell_set_contents()
Dfuncobject.c59 PyFunctionObject *op = PyObject_GC_New(PyFunctionObject, &PyFunction_Type); in PyFunction_NewWithQualName() local
102 PyFunction_GetCode(PyObject *op) in PyFunction_GetCode()
112 PyFunction_GetGlobals(PyObject *op) in PyFunction_GetGlobals()
122 PyFunction_GetModule(PyObject *op) in PyFunction_GetModule()
132 PyFunction_GetDefaults(PyObject *op) in PyFunction_GetDefaults()
142 PyFunction_SetDefaults(PyObject *op, PyObject *defaults) in PyFunction_SetDefaults()
162 PyFunction_GetKwDefaults(PyObject *op) in PyFunction_GetKwDefaults()
172 PyFunction_SetKwDefaults(PyObject *op, PyObject *defaults) in PyFunction_SetKwDefaults()
193 PyFunction_GetClosure(PyObject *op) in PyFunction_GetClosure()
203 PyFunction_SetClosure(PyObject *op, PyObject *closure) in PyFunction_SetClosure()
[all …]
/third_party/python/Include/
Ddictobject.h17 #define PyDict_Check(op) \ argument
19 #define PyDict_CheckExact(op) Py_IS_TYPE(op, &PyDict_Type) argument
70 #define PyDictKeys_Check(op) PyObject_TypeCheck(op, &PyDictKeys_Type) argument
71 #define PyDictValues_Check(op) PyObject_TypeCheck(op, &PyDictValues_Type) argument
72 #define PyDictItems_Check(op) PyObject_TypeCheck(op, &PyDictItems_Type) argument
74 # define PyDictViewSet_Check(op) \ argument
/third_party/skia/src/core/
DSkRasterClip.cpp107 bool SkRasterClip::op(const SkIRect& rect, SkClipOp op) { in op() function in SkRasterClip
118 bool SkRasterClip::op(const SkRegion& rgn, SkClipOp op) { in op() function in SkRasterClip
144 bool SkRasterClip::op(const SkRect& localRect, const SkMatrix& matrix, SkClipOp op, bool doAA) { in op() argument
173 bool SkRasterClip::op(const SkRRect& rrect, const SkMatrix& matrix, SkClipOp op, bool doAA) { in op() argument
177 bool SkRasterClip::op(const SkPath& path, const SkMatrix& matrix, SkClipOp op, bool doAA) { in op() function in SkRasterClip
203 bool SkRasterClip::op(sk_sp<SkShader> sh) { in op() function in SkRasterClip
214 bool SkRasterClip::op(const SkRasterClip& clip, SkClipOp op) { in op() argument
/third_party/python/Include/internal/
Dpycore_object.h41 _PyObject_Init(PyObject *op, PyTypeObject *typeobj) in _PyObject_Init()
52 _PyObject_InitVar(PyVarObject *op, PyTypeObject *typeobj, Py_ssize_t size) in _PyObject_InitVar()
78 PyObject *op) in _PyObject_GC_TRACK()
114 PyObject *op) in _PyObject_GC_UNTRACK()
133 # define _PyObject_GC_TRACK(op) \ argument
135 # define _PyObject_GC_UNTRACK(op) \ argument
138 # define _PyObject_GC_TRACK(op) \ argument
140 # define _PyObject_GC_UNTRACK(op) \ argument
155 _PyObject_GET_WEAKREFS_LISTPTR(PyObject *op) in _PyObject_GET_WEAKREFS_LISTPTR()
/third_party/glslang/glslang/HLSL/
DhlslOpMap.cpp44 TOperator HlslOpMap::assignment(EHlslTokenClass op) in assignment()
65 TOperator HlslOpMap::binary(EHlslTokenClass op) in binary()
95 TOperator HlslOpMap::preUnary(EHlslTokenClass op) in preUnary()
112 TOperator HlslOpMap::postUnary(EHlslTokenClass op) in postUnary()
128 PrecedenceLevel HlslOpMap::precedenceLevel(TOperator op) in precedenceLevel()
/third_party/flutter/skia/src/core/
DSkRasterClip.cpp18 static MutateResult mutate_conservative_op(SkRegion::Op* op, bool inverseFilled) { in mutate_conservative_op()
65 const SkIRect& devBounds, SkRegion::Op op, bool doAA) { in opRect()
83 const SkIRect& devBounds, SkRegion::Op op, bool doAA) { in opRRect()
88 SkRegion::Op op, bool doAA) { in opPath()
106 void SkConservativeClip::opRegion(const SkRegion& rgn, SkRegion::Op op) { in opRegion()
110 void SkConservativeClip::opIRect(const SkIRect& devRect, SkRegion::Op op) { in opIRect()
215 SkRegion::Op op; in setConservativeRect() local
244 bool SkRasterClip::op(const SkRRect& rrect, const SkMatrix& matrix, const SkIRect& devBounds, in op() function in SkRasterClip
245 SkRegion::Op op, bool doAA) { in op()
255 bool SkRasterClip::op(const SkPath& path, const SkMatrix& matrix, const SkIRect& devBounds, in op() function in SkRasterClip
[all …]
/third_party/mesa3d/src/gallium/drivers/r600/
Dr600_isa.c521 r600_isa_alu(unsigned op) { in r600_isa_alu()
527 r600_isa_fetch(unsigned op) { in r600_isa_fetch()
533 r600_isa_cf(unsigned op) { in r600_isa_cf()
560 const struct alu_op_info *op = &r600_alu_op_table[i]; in r600_isa_init() local
573 const struct fetch_op_info *op = &fetch_op_table[i]; in r600_isa_init() local
581 const struct cf_op_info *op = &cf_op_table[i]; in r600_isa_init() local
/third_party/glslang/glslang/MachineIndependent/
DVersions.cpp1109 void TParseVersions::fullIntegerCheck(const TSourceLoc& loc, const char* op) in fullIntegerCheck()
1116 void TParseVersions::doubleCheck(const TSourceLoc& loc, const char* op) in doubleCheck()
1128 void TParseVersions::float16Check(const TSourceLoc& loc, const char* op, bool builtIn) in float16Check()
1165 void TParseVersions::requireFloat16Arithmetic(const TSourceLoc& loc, const char* op, const char* fe… in requireFloat16Arithmetic()
1179 void TParseVersions::requireInt16Arithmetic(const TSourceLoc& loc, const char* op, const char* feat… in requireInt16Arithmetic()
1193 void TParseVersions::requireInt8Arithmetic(const TSourceLoc& loc, const char* op, const char* featu… in requireInt8Arithmetic()
1206 void TParseVersions::float16ScalarVectorCheck(const TSourceLoc& loc, const char* op, bool builtIn) in float16ScalarVectorCheck()
1219 void TParseVersions::explicitFloat32Check(const TSourceLoc& loc, const char* op, bool builtIn) in explicitFloat32Check()
1229 void TParseVersions::explicitFloat64Check(const TSourceLoc& loc, const char* op, bool builtIn) in explicitFloat64Check()
1241 void TParseVersions::explicitInt8Check(const TSourceLoc& loc, const char* op, bool builtIn) in explicitInt8Check()
[all …]
/third_party/python/Include/cpython/
Dunicodeobject.h258 #define PyUnicode_GET_SIZE(op) \ argument
267 #define PyUnicode_GET_DATA_SIZE(op) \ argument
276 #define PyUnicode_AS_UNICODE(op) \ argument
282 #define PyUnicode_AS_DATA(op) \ argument
298 #define PyUnicode_IS_ASCII(op) \ argument
305 #define PyUnicode_IS_COMPACT(op) \ argument
310 #define PyUnicode_IS_COMPACT_ASCII(op) \ argument
329 #define PyUnicode_1BYTE_DATA(op) ((Py_UCS1*)PyUnicode_DATA(op)) argument
330 #define PyUnicode_2BYTE_DATA(op) ((Py_UCS2*)PyUnicode_DATA(op)) argument
331 #define PyUnicode_4BYTE_DATA(op) ((Py_UCS4*)PyUnicode_DATA(op)) argument
[all …]
Dtupleobject.h19 #define _PyTuple_CAST(op) (assert(PyTuple_Check(op)), (PyTupleObject *)(op)) argument
21 #define PyTuple_GET_SIZE(op) Py_SIZE(_PyTuple_CAST(op)) argument
23 #define PyTuple_GET_ITEM(op, i) (_PyTuple_CAST(op)->ob_item[i]) argument
26 #define PyTuple_SET_ITEM(op, i, v) ((void)(_PyTuple_CAST(op)->ob_item[i] = v)) argument
Dlistobject.h30 #define _PyList_CAST(op) (assert(PyList_Check(op)), (PyListObject *)(op)) argument
32 #define PyList_GET_ITEM(op, i) (_PyList_CAST(op)->ob_item[i]) argument
33 #define PyList_SET_ITEM(op, i, v) ((void)(_PyList_CAST(op)->ob_item[i] = (v))) argument
34 #define PyList_GET_SIZE(op) Py_SIZE(_PyList_CAST(op)) argument
/third_party/cJSON/tests/json-patch-tests/
Dtests.json29 "patch": [{"op": "add", "path": "/foo", "value":1}], string
34 "patch": [{"op": "add", "path": "/0", "value": "foo"}], string
44 "patch": [{"op": "add", "path": "/foo", "value": "1"}], string
49 "patch": [{"op": "add", "path": "/foo", "value": 1}], string
54 "patch": [{"op": "replace", "path": "", "value": "bar"}], string
60 "patch": [{"op": "add", "path": "", "value": []}], string
65 "patch": [{"op": "add", "path": "", "value": {}}], string
70 "patch": [{"op": "add", "path": "/-", "value": "hi"}], string
75 "patch": [ {"op": "add", "path": "/", "value":1 } ], string
80 "patch": [ {"op": "add", "path": "/foo/", "value":1 } ], string
[all …]
/third_party/skia/third_party/externals/angle2/src/compiler/translator/
Demulated_builtin_function_data_hlsl.json3 "op":"mod", string
14 "op":"mod", string
25 "op":"mod", string
36 "op":"mod", string
47 "op":"mod", string
58 "op":"mod", string
69 "op":"mod", string
80 "op":"frexp", string
94 "op":"frexp", string
108 "op":"frexp", string
[all …]
/third_party/flutter/skia/third_party/externals/angle2/src/compiler/translator/
Demulated_builtin_function_data_hlsl.json3 "op":"mod", string
14 "op":"mod", string
25 "op":"mod", string
36 "op":"mod", string
47 "op":"mod", string
58 "op":"mod", string
69 "op":"mod", string
80 "op":"frexp", string
94 "op":"frexp", string
108 "op":"frexp", string
[all …]
DOperator.cpp9 const char *GetOperatorString(TOperator op) in GetOperatorString()
375 bool IsAssignment(TOperator op) in IsAssignment()
404 bool IsAtomicFunction(TOperator op) in IsAtomicFunction()
/third_party/skia/third_party/externals/tint/src/writer/msl/
Dgenerator_impl_unary_op_test.cc26 auto* op = in TEST_F() local
39 auto* op = in TEST_F() local
55 auto* op = in TEST_F() local
68 auto* op = create<ast::UnaryOpExpression>(ast::UnaryOp::kNot, Expr("expr")); in TEST_F() local
80 auto* op = in TEST_F() local
92 auto* op = create<ast::UnaryOpExpression>( in TEST_F() local
/third_party/mesa3d/src/compiler/spirv/
Dvtn_subgroup.c132 nir_intrinsic_op op; in vtn_handle_subgroup() local
213 nir_intrinsic_op op; in vtn_handle_subgroup() local
279 nir_intrinsic_op op; in vtn_handle_subgroup() local
304 nir_intrinsic_op op = opcode == SpvOpSubgroupShuffleINTEL ? in vtn_handle_subgroup() local
354 nir_intrinsic_op op; in vtn_handle_subgroup() local
469 nir_intrinsic_op op; in vtn_handle_subgroup() local
/third_party/mesa3d/src/gallium/drivers/etnaviv/
Detnaviv_compiler_nir_emit.c53 #define OPCT(nir, op, src, cond, type) [nir_op_##nir] = { \ argument
59 #define OPC(nir, op, src, cond) OPCT(nir, op, src, cond, F32) argument
60 #define IOPC(nir, op, src, cond) OPCT(nir, op, src, cond, S32) argument
61 #define UOPC(nir, op, src, cond) OPCT(nir, op, src, cond, U32) argument
62 #define OP(nir, op, src) OPC(nir, op, src, TRUE) argument
63 #define IOP(nir, op, src) IOPC(nir, op, src, TRUE) argument
64 #define UOP(nir, op, src) UOPC(nir, op, src, TRUE) argument
126 etna_emit_alu(struct etna_compile *c, nir_op op, struct etna_inst_dst dst, in etna_emit_alu()
195 etna_emit_tex(struct etna_compile *c, nir_texop op, unsigned texid, unsigned dst_swiz, in etna_emit_tex()
/third_party/mesa3d/src/panfrost/bifrost/
Dbi_builder.h.py178 def should_skip(mod, op): argument
186 def modifier_signature(op): argument
189 def signature(op, modifiers, typeful = False, sized = False, no_dests = False): argument
203 def arguments(op, temp_dest = True): argument
/third_party/mesa3d/src/compiler/nir/
Dnir_opt_phi_precision.c96 concrete_conversion(nir_op op) in concrete_conversion()
115 nir_op op = nir_instr_as_alu(instr)->op; in narrowing_conversion_op() local
186 op_to_type(nir_op op) in op_to_type()
197 nir_op op = INVALID_OP; in try_move_narrowing_dst() local
267 can_convert_load_const(nir_load_const_instr *lc, nir_op op) in can_convert_load_const()
304 nir_op op = INVALID_OP; in find_widening_op() local
374 nir_op op = find_widening_op(phi, &bit_size); in try_move_widening_src() local

12345678910>>...84