Searched refs:op (Results 76 - 100 of 2114) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/sqlite/src/
H A Dmkopcodeh.awk46 op[name] = -1
58 op[name] = tk[sym]
59 used[op[name]] = 1
60 sameas[op[name]] = sym
89 op["OP_Noop"] = -1;
91 op["OP_Explain"] = -1;
95 if( op[name]<0 ){
98 op[name] = cnt
100 used[op[name]] = 1;
101 if( op[nam
[all...]
/external/pixman/pixman/
H A Dpixman-mips-dspr2.h251 #define PIXMAN_MIPS_BIND_SCALED_NEAREST_SRC_DST(name, op, \
254 pixman_scaled_nearest_scanline_##name##_##op##_asm_mips ( \
262 scaled_nearest_scanline_mips_##name##_##op (dst_type * pd, \
270 pixman_scaled_nearest_scanline_##name##_##op##_asm_mips (pd, ps, w, \
274 FAST_NEAREST_MAINLOOP (mips_##name##_cover_##op, \
275 scaled_nearest_scanline_mips_##name##_##op, \
277 FAST_NEAREST_MAINLOOP (mips_##name##_none_##op, \
278 scaled_nearest_scanline_mips_##name##_##op, \
280 FAST_NEAREST_MAINLOOP (mips_##name##_pad_##op, \
281 scaled_nearest_scanline_mips_##name##_##op, \
[all...]
/external/chromium_org/content/browser/web_contents/
H A Dweb_drag_utils_win.cc39 DWORD WebDragOpToWinDragOp(WebDragOperation op) { argument
40 DCHECK(op == WebDragOperationNone ||
41 op == WebDragOperationCopy ||
42 op == WebDragOperationLink ||
43 op == WebDragOperationMove ||
44 op == (WebDragOperationMove | WebDragOperationGeneric));
46 return WebDragOpMaskToWinDragOpMask(op);
/external/chromium_org/third_party/angle/src/compiler/translator/
H A DRenameFunction.h25 TOperator op = node->getOp(); local
26 if ((op == EOpFunction || op == EOpFunctionCall) && node->getName() == mOldFunctionName)
/external/chromium_org/third_party/cython/src/Cython/Utility/
H A Darrayarray.h67 arrayobject *op; local
80 op = (arrayobject *) type->tp_alloc(type, 0);
81 if (op == NULL) {
84 op->ob_descr = descr;
85 op->allocated = size;
86 op->weakreflist = NULL;
87 op->ob_size = size;
89 op->data.ob_item = NULL;
92 op->data.ob_item = PyMem_NEW(char, nbytes);
93 if (op
[all...]
H A DCythonFunction.c76 __Pyx_CyFunction_get_doc(__pyx_CyFunctionObject *op, CYTHON_UNUSED void *closure) argument
78 if (unlikely(op->func_doc == NULL)) {
79 if (op->func.m_ml->ml_doc) {
81 op->func_doc = PyUnicode_FromString(op->func.m_ml->ml_doc);
83 op->func_doc = PyString_FromString(op->func.m_ml->ml_doc);
85 if (unlikely(op->func_doc == NULL))
92 Py_INCREF(op->func_doc);
93 return op
97 __Pyx_CyFunction_set_doc(__pyx_CyFunctionObject *op, PyObject *value) argument
109 __Pyx_CyFunction_get_name(__pyx_CyFunctionObject *op) argument
125 __Pyx_CyFunction_set_name(__pyx_CyFunctionObject *op, PyObject *value) argument
146 __Pyx_CyFunction_get_qualname(__pyx_CyFunctionObject *op) argument
153 __Pyx_CyFunction_set_qualname(__pyx_CyFunctionObject *op, PyObject *value) argument
186 __Pyx_CyFunction_get_dict(__pyx_CyFunctionObject *op) argument
198 __Pyx_CyFunction_set_dict(__pyx_CyFunctionObject *op, PyObject *value) argument
220 __Pyx_CyFunction_get_globals(__pyx_CyFunctionObject *op) argument
227 __Pyx_CyFunction_get_closure(CYTHON_UNUSED __pyx_CyFunctionObject *op) argument
234 __Pyx_CyFunction_get_code(__pyx_CyFunctionObject *op) argument
242 __Pyx_CyFunction_init_defaults(__pyx_CyFunctionObject *op) argument
257 __Pyx_CyFunction_set_defaults(__pyx_CyFunctionObject *op, PyObject* value) argument
275 __Pyx_CyFunction_get_defaults(__pyx_CyFunctionObject *op) argument
290 __Pyx_CyFunction_set_kwdefaults(__pyx_CyFunctionObject *op, PyObject* value) argument
308 __Pyx_CyFunction_get_kwdefaults(__pyx_CyFunctionObject *op) argument
323 __Pyx_CyFunction_set_annotations(__pyx_CyFunctionObject *op, PyObject* value) argument
340 __Pyx_CyFunction_get_annotations(__pyx_CyFunctionObject *op) argument
428 __pyx_CyFunctionObject *op = PyObject_GC_New(__pyx_CyFunctionObject, type); local
546 __Pyx_CyFunction_repr(__pyx_CyFunctionObject *op) argument
[all...]
/external/chromium_org/v8/src/compiler/
H A Dgraph.cc24 Node* Graph::NewNode(const Operator* op, int input_count, Node** inputs) { argument
25 DCHECK_LE(op->InputCount(), input_count);
27 result->Initialize(op);
H A Dsimplified-operator-unittest.cc92 const Operator* op = (simplified.*pop.constructor)(); local
94 EXPECT_EQ(pop.value_input_count, OperatorProperties::GetValueInputCount(op));
95 EXPECT_EQ(0, OperatorProperties::GetEffectInputCount(op));
96 EXPECT_EQ(0, OperatorProperties::GetControlInputCount(op));
97 EXPECT_EQ(pop.value_input_count, OperatorProperties::GetTotalInputCount(op));
99 EXPECT_EQ(1, OperatorProperties::GetValueOutputCount(op));
100 EXPECT_EQ(0, OperatorProperties::GetEffectOutputCount(op));
101 EXPECT_EQ(0, OperatorProperties::GetControlOutputCount(op));
108 const Operator* op = (simplified.*pop.constructor)(); local
109 EXPECT_EQ(pop.opcode, op
116 const Operator* op = (simplified.*pop.constructor)(); local
179 const Operator* op = simplified.LoadElement(access); local
199 const Operator* op = simplified.StoreElement(access); local
[all...]
H A Dgraph-replay.cc28 PrintReplayOpCreator(node->op());
29 PrintF(" Node* n%d = graph.NewNode(op", node->id());
43 void GraphReplayPrinter::PrintReplayOpCreator(const Operator* op) { argument
44 IrOpcode::Value opcode = static_cast<IrOpcode::Value>(op->opcode());
50 PrintF(" op = %s.%s(", builder, mnemonic);
63 PrintF("%d", op->InputCount());
66 PrintF("%d", OperatorProperties::GetEffectInputCount(op));
70 PrintF("%d", OperatorProperties::GetControlInputCount(op));
/external/libcxx/test/re/re.submatch/re.submatch.op/
H A DAndroid.mk17 test_makefile := external/libcxx/test/re/re.submatch/re.submatch.op/Android.mk
19 test_name := re/re.submatch/re.submatch.op/compare
23 test_name := re/re.submatch/re.submatch.op/stream
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/
H A Dx86id.c407 yasm_insn_operand *op = yasm_insn_ops_first(&id_insn->insn); local
408 while (op) {
409 op->type = YASM_INSN__OPERAND_REG;
410 op = yasm_insn_op_next(op);
422 yasm_insn_operand *op; local
429 op = yasm_insn_ops_first(&id_insn->insn);
431 if (op->type == YASM_INSN__OPERAND_IMM && op->seg) {
433 if (yasm_value_finalize_expr(&jmpfar->segment, op
509 yasm_insn_operand *op; local
638 yasm_insn_operand *op, **use_ops; local
1069 yasm_insn_operand *op, *ops[5], *rev_ops[5]; local
[all...]
/external/chromium_org/third_party/skia/gm/
H A Dsimpleaaclip.cpp68 void buildRgn(SkAAClip* clip, SkRegion::Op op) { argument
73 clip->op(clip2, op);
86 void drawRgnOped(SkCanvas* canvas, SkRegion::Op op, SkColor color) { argument
90 this->buildRgn(&clip, op);
98 void drawPathsOped(SkCanvas* canvas, SkRegion::Op op, SkColor color) { argument
104 // create the clip mask with the supplied boolean op
108 canvas->clipPath(fRectPath, op, true);
112 canvas->clipRect(fRect, op, true);
161 for (size_t op
[all...]
/external/skia/gm/
H A Dsimpleaaclip.cpp68 void buildRgn(SkAAClip* clip, SkRegion::Op op) { argument
73 clip->op(clip2, op);
86 void drawRgnOped(SkCanvas* canvas, SkRegion::Op op, SkColor color) { argument
90 this->buildRgn(&clip, op);
98 void drawPathsOped(SkCanvas* canvas, SkRegion::Op op, SkColor color) { argument
104 // create the clip mask with the supplied boolean op
108 canvas->clipPath(fRectPath, op, true);
112 canvas->clipRect(fRect, op, true);
164 for (size_t op
[all...]
/external/chromium_org/third_party/skia/tests/
H A DPathOpsInverseTest.cpp11 for (int op = kDifference_PathOp; op <= kReverseDifference_PathOp; ++op) {
25 testPathOp(reporter, one, two, (SkPathOp) op, "inverseTest");
/external/clang/test/SemaCXX/
H A Dnamespace.cpp74 namespace op { namespace in namespace:PR6620::numeric
78 extern op::greater const greater;
84 op::greater const greater = op::greater();
/external/deqp/modules/gles2/scripts/
H A Dgen-reserved_operators.py31 def __init__(self, op):
32 self.name = op.name
33 if op.operator == "~":
36 self.operation = 'value ' + op.operator + ' 1;'
/external/skia/tests/
H A DPathOpsInverseTest.cpp11 for (int op = kDifference_PathOp; op <= kReverseDifference_PathOp; ++op) {
25 testPathOp(reporter, one, two, (SkPathOp) op, "inverseTest");
/external/chromium_org/third_party/WebKit/Source/core/clipboard/
H A DDataTransfer.cpp48 static DragOperation convertEffectAllowedToDragOperation(const String& op) argument
51 if (op == "uninitialized")
53 if (op == "none")
55 if (op == "copy")
57 if (op == "link")
59 if (op == "move")
61 if (op == "copyLink")
63 if (op == "copyMove")
65 if (op == "linkMove")
67 if (op
72 convertDragOperationToEffectAllowed(DragOperation op) argument
418 DragOperation op = convertEffectAllowedToDragOperation(m_effectAllowed); local
425 DragOperation op = convertEffectAllowedToDragOperation(m_dropEffect); local
430 setSourceOperation(DragOperation op) argument
436 setDestinationOperation(DragOperation op) argument
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/d3d1xshader/src/
H A Dsm4_parse.cpp78 sm4_op& op = *pop;
82 op.swizzle[0] = 0;
83 op.swizzle[1] = 1;
84 op.swizzle[2] = 2;
85 op.swizzle[3] = 3;
86 op.mask = 0xf;
90 op.comps = 0;
93 op.comps = 1;
94 op.swizzle[1] = op
[all...]
/external/chromium_org/third_party/skia/src/utils/
H A DSkCanvasStack.cpp37 fCanvasData[i-1].requiredClip.op(localBounds, SkRegion::kDifference_Op);
80 void SkCanvasStack::onClipRect(const SkRect& r, SkRegion::Op op, ClipEdgeStyle edgeStyle) { argument
81 this->INHERITED::onClipRect(r, op, edgeStyle);
85 void SkCanvasStack::onClipRRect(const SkRRect& rr, SkRegion::Op op, ClipEdgeStyle edgeStyle) { argument
86 this->INHERITED::onClipRRect(rr, op, edgeStyle);
90 void SkCanvasStack::onClipPath(const SkPath& p, SkRegion::Op op, ClipEdgeStyle edgeStyle) { argument
91 this->INHERITED::onClipPath(p, op, edgeStyle);
95 void SkCanvasStack::onClipRegion(const SkRegion& deviceRgn, SkRegion::Op op) { argument
101 tempRegion.op(fCanvasData[i].requiredClip, SkRegion::kIntersect_Op);
102 fList[i]->clipRegion(tempRegion, op);
[all...]
/external/mesa3d/src/gallium/state_trackers/d3d1x/d3d1xshader/src/
H A Dsm4_parse.cpp78 sm4_op& op = *pop;
82 op.swizzle[0] = 0;
83 op.swizzle[1] = 1;
84 op.swizzle[2] = 2;
85 op.swizzle[3] = 3;
86 op.mask = 0xf;
90 op.comps = 0;
93 op.comps = 1;
94 op.swizzle[1] = op
[all...]
/external/skia/src/utils/
H A DSkCanvasStack.cpp37 fCanvasData[i-1].requiredClip.op(localBounds, SkRegion::kDifference_Op);
80 void SkCanvasStack::onClipRect(const SkRect& r, SkRegion::Op op, ClipEdgeStyle edgeStyle) { argument
81 this->INHERITED::onClipRect(r, op, edgeStyle);
85 void SkCanvasStack::onClipRRect(const SkRRect& rr, SkRegion::Op op, ClipEdgeStyle edgeStyle) { argument
86 this->INHERITED::onClipRRect(rr, op, edgeStyle);
90 void SkCanvasStack::onClipPath(const SkPath& p, SkRegion::Op op, ClipEdgeStyle edgeStyle) { argument
91 this->INHERITED::onClipPath(p, op, edgeStyle);
95 void SkCanvasStack::onClipRegion(const SkRegion& deviceRgn, SkRegion::Op op) { argument
101 tempRegion.op(fCanvasData[i].requiredClip, SkRegion::kIntersect_Op);
102 fList[i]->clipRegion(tempRegion, op);
[all...]
/external/chromium_org/cc/output/
H A Drender_surface_filters.cc164 const FilterOperation& op = filters.at(i); local
165 switch (op.type()) {
167 GetGrayscaleMatrix(1.f - op.amount(), matrix);
171 GetSepiaMatrix(1.f - op.amount(), matrix);
175 GetSaturateMatrix(op.amount(), matrix);
179 GetHueRotateMatrix(op.amount(), matrix);
183 GetInvertMatrix(op.amount(), matrix);
187 GetOpacityMatrix(op.amount(), matrix);
191 GetBrightnessMatrix(op.amount(), matrix);
195 GetContrastMatrix(op
[all...]
/external/kernel-headers/original/uapi/rdma/
H A Drdma_netlink.h12 #define RDMA_NL_GET_TYPE(client, op) ((client << 10) + op)
/external/libvorbis/lib/
H A Danalysis.c30 int vorbis_analysis(vorbis_block *vb, ogg_packet *op){ argument
50 if(op){
56 op->packet=oggpack_get_buffer(&vb->opb);
57 op->bytes=oggpack_bytes(&vb->opb);
58 op->b_o_s=0;
59 op->e_o_s=vb->eofflag;
60 op->granulepos=vb->granulepos;
61 op->packetno=vb->sequence; /* for sake of completeness */

Completed in 4203 milliseconds

1234567891011>>