Searched defs:op (Results 476 - 500 of 1255) sorted by relevance

<<11121314151617181920>>

/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/gd3d1x/
H A Dsm4_to_tgsi.cpp102 struct ureg_dst _reg(sm4_op& op) argument
104 switch(op.file)
114 check(op.has_simple_index());
115 check(op.indices[0].disp < temps.size());
116 return temps[op.indices[0].disp];
118 check(op.has_simple_index());
119 check(op.indices[0].disp < outputs.size());
120 return outputs[op.indices[0].disp];
130 sm4_op& op = *insn->ops[i]; local
131 check(op
141 sm4_op& op = *insn->ops[i]; local
190 sm4_op& op = *insn->ops[i]; local
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/xa/
H A Dxa_composite.c42 unsigned op : 8; member in struct:xa_composite_blend
103 enum xa_composite_op op,
125 if (xa_blends[i].op == op) {
140 * If there's no dst alpha channel, adjust the blend op so that we'll treat
240 if (blend_for_op(&blend, comp->op, comp->src, comp->mask, comp->dst)) {
261 if (!blend_for_op(&blend_opt, comp->op, comp->src, comp->mask, comp->dst))
363 if (!blend_for_op(&blend, comp->op, src_pic, mask_pic, NULL))
102 blend_for_op(struct xa_composite_blend *blend, enum xa_composite_op op, struct xa_picture *src_pic, struct xa_picture *mask_pic, struct xa_picture *dst_pic) argument
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i915/
H A Di915_program.c141 GLuint op,
195 *(p->csr++) = (op | A0_DEST(dest) | mask | saturate | A0_SRC0(src0));
223 GLuint op )
242 i915_emit_texld( p, 0, tmp, A0_DEST_CHANNEL_ALL, sampler, coord, op );
284 *(p->csr++) = (op |
140 i915_emit_arith(struct i915_fragment_program * p, GLuint op, GLuint dest, GLuint mask, GLuint saturate, GLuint src0, GLuint src1, GLuint src2) argument
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/intel/
H A Dintel_mipmap_tree.h494 * functions on a miptree without HiZ. In that case, each function is a no-op.
593 unsigned int level, unsigned int layer, enum gen6_hiz_op op)
602 unsigned int level, unsigned int layer, enum gen6_hiz_op op);
592 intel_hiz_exec(struct intel_context *intel, struct intel_mipmap_tree *mt, unsigned int level, unsigned int layer, enum gen6_hiz_op op) argument
/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Datifragshader.c101 GL_NONE as the op enum and just set some params to 0 - so nothing to do here */
150 static void debug_op(GLint optype, GLuint arg_count, GLenum op, GLuint dst, argument
160 fprintf(stderr, "%s(%s, %s", op_name, _mesa_lookup_enum_by_nr(op),
414 GLuint op = curProg->SetupInst[j][i].Opcode; local
415 const char *op_enum = op > 5 ? _mesa_lookup_enum_by_nr(op) : "0";
418 fprintf(stderr, "%2d %04X %s %d %04X\n", i, op, op_enum, src,
588 _mesa_FragmentOpXATI(GLint optype, GLuint arg_count, GLenum op, GLuint dst, argument
640 /* op checking? Actually looks like that's missing in the spec but we'll do it anyway */
641 if (((op < GL_ADD_AT
712 _mesa_ColorFragmentOp1ATI(GLenum op, GLuint dst, GLuint dstMask, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod) argument
721 _mesa_ColorFragmentOp2ATI(GLenum op, GLuint dst, GLuint dstMask, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod) argument
732 _mesa_ColorFragmentOp3ATI(GLenum op, GLuint dst, GLuint dstMask, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod, GLuint arg3, GLuint arg3Rep, GLuint arg3Mod) argument
744 _mesa_AlphaFragmentOp1ATI(GLenum op, GLuint dst, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod) argument
752 _mesa_AlphaFragmentOp2ATI(GLenum op, GLuint dst, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod) argument
762 _mesa_AlphaFragmentOp3ATI(GLenum op, GLuint dst, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod, GLuint arg3, GLuint arg3Rep, GLuint arg3Mod) argument
[all...]
/external/chromium_org/third_party/re2/re2/
H A Dprefilter.cc20 Prefilter::Prefilter(Op op) { argument
21 op_ = op;
68 // Combines two Prefilters together to create an "op" (AND or OR).
71 Prefilter* Prefilter::AndOr(Op op, Prefilter* a, Prefilter* b) { argument
72 // If a, b can be rewritten as op, do so.
76 // Canonicalize: a->op <= b->op.
77 if (a->op() > b->op()) {
90 if (a->op()
[all...]
/external/chromium_org/third_party/skia/include/core/
H A DSkClipStack.h63 Element(const SkRect& rect, SkRegion::Op op, bool doAA) { argument
64 this->initRect(0, rect, op, doAA);
67 Element(const SkRRect& rrect, SkRegion::Op op, bool doAA) { argument
68 this->initRRect(0, rrect, op, doAA);
71 Element(const SkPath& path, SkRegion::Op op, bool doAA) { argument
72 this->initPath(0, path, op, doAA);
110 void setOp(SkRegion::Op op) { fOp = op; } argument
213 Element(int saveCount, const SkRRect& rrect, SkRegion::Op op, bool doAA) { argument
214 this->initRRect(saveCount, rrect, op, doA
217 Element(int saveCount, const SkRect& rect, SkRegion::Op op, bool doAA) argument
221 Element(int saveCount, const SkPath& path, SkRegion::Op op, bool doAA) argument
225 initCommon(int saveCount, SkRegion::Op op, bool doAA) argument
237 initRect(int saveCount, const SkRect& rect, SkRegion::Op op, bool doAA) argument
243 initRRect(int saveCount, const SkRRect& rrect, SkRegion::Op op, bool doAA) argument
326 clipDevRect(const SkIRect& ir, SkRegion::Op op) argument
[all...]
/external/chromium_org/third_party/skia/samplecode/
H A DSampleRegion.cpp159 rc->op(*ra, *rb, SkRegion::kUnion_Op);
177 tmp.op(r, SkRegion::kUnion_Op);
211 rgn->op(r, SkRegion::kUnion_Op);
214 void build_rgn(SkRegion* rgn, SkRegion::Op op) { argument
216 rgn->op(fRect, op);
263 void drawRgnOped(SkCanvas* canvas, SkRegion::Op op, SkColor color) { argument
266 this->build_rgn(&rgn, op);
305 void drawPathOped(SkCanvas* canvas, SkRegion::Op op, SkColor color) { argument
309 this->build_rgn(&rgn, op);
[all...]
/external/chromium_org/third_party/skia/src/animator/
H A DSkAnimatorScript2.cpp142 SkOperand2* op = params->begin(); local
143 const char* script = op->fString->c_str();
/external/chromium_org/third_party/skia/src/core/
H A DSkPicturePlayback.cpp20 * Read the next op code and chunk size from 'reader'. The returned size
23 * to the next chunk's op code. This also means that the size of a chunk
28 uint32_t op; local
31 op = temp;
34 UNPACK_8_24(temp, op, *size);
39 return (DrawType)op;
159 DrawType op = ReadOpAndSize(&reader, &size); local
160 if (NOOP == op) {
166 this->handleOp(&reader, op, size, canvas, initialMatrix);
173 DrawType op,
172 handleOp(SkReader32* reader, DrawType op, uint32_t size, SkCanvas* canvas, const SkMatrix& initialMatrix) argument
[all...]
H A DSkRecordDraw.cpp81 DRAW(ClipPath, clipPath(r.path, r.op, r.doAA));
82 DRAW(ClipRRect, clipRRect(r.rrect, r.op, r.doAA));
83 DRAW(ClipRect, clipRect(r.rect, r.op, r.doAA));
84 DRAW(ClipRegion, clipRegion(r.region, r.op));
122 // don't execute this op, pixels in this rectangle might draw incorrectly. So
167 template <typename T> void operator()(const T& op) { argument
168 this->updateCTM(op);
169 this->updateClipBounds(op);
170 this->trackBounds(op);
185 void updateCTM(const Restore& op) { fCT argument
186 updateCTM(const SetMatrix& op) argument
192 updateClipBounds(const ClipPath& op) argument
193 updateClipBounds(const ClipRRect& op) argument
194 updateClipBounds(const ClipRect& op) argument
195 updateClipBounds(const ClipRegion& op) argument
206 updateClipBounds(const Restore& op) argument
218 updateClipBounds(const SaveLayer& op) argument
228 trackBounds(const SaveLayer& op) argument
244 trackBounds(const T& op) argument
[all...]
/external/chromium_org/third_party/skia/src/utils/
H A DSkProxyCanvas.cpp52 void SkProxyCanvas::onClipRect(const SkRect& rect, SkRegion::Op op, ClipEdgeStyle edgeStyle) { argument
53 fProxy->clipRect(rect, op, kSoft_ClipEdgeStyle == edgeStyle);
56 void SkProxyCanvas::onClipRRect(const SkRRect& rrect, SkRegion::Op op, ClipEdgeStyle edgeStyle) { argument
57 fProxy->clipRRect(rrect, op, kSoft_ClipEdgeStyle == edgeStyle);
60 void SkProxyCanvas::onClipPath(const SkPath& path, SkRegion::Op op, ClipEdgeStyle edgeStyle) { argument
61 fProxy->clipPath(path, op, kSoft_ClipEdgeStyle == edgeStyle);
64 void SkProxyCanvas::onClipRegion(const SkRegion& deviceRgn, SkRegion::Op op) { argument
65 fProxy->clipRegion(deviceRgn, op);
/external/chromium_org/third_party/skia/tests/
H A DAAClipTest.cpp103 rgn->op(rand_rect(rand, 100), SkRegion::kXOR_Op);
260 SkRegion::Op op = gRgnOps[j]; local
263 bool nonEmptyAA = clip2.op(clip0, clip1, op);
264 bool nonEmptyBW = rgn2.op(rgn0, rgn1, op);
338 clip.op(ir, SkRegion::kIntersect_Op);
385 rc0.op(r, baseSize, SkRegion::kIntersect_Op, false);
387 rc1.op(r, baseSize, SkRegion::kIntersect_Op, true);
389 rc2.op(
[all...]
/external/chromium_org/third_party/skia/third_party/lua/src/
H A Dldebug.c338 OpCode op = GET_OPCODE(i); local
340 switch (op) {
369 if (testAMode(op) && reg == a) /* any instruction that set A */
388 OpCode op = GET_OPCODE(i); local
389 switch (op) {
400 const char *vn = (op == OP_GETTABLE) /* name of indexed variable */
412 int b = (op == OP_LOADK) ? GETARG_Bx(i)
500 l_noret luaG_typeerror (lua_State *L, const TValue *o, const char *op) { argument
513 op, kind, name, t);
515 luaG_runerror(L, "attempt to %s a %s value", op,
[all...]
/external/chromium_org/third_party/sqlite/src/ext/fts3/
H A Dfts3_aux.c156 int op = pInfo->aConstraint[i].op; local
157 if( op==SQLITE_INDEX_CONSTRAINT_EQ ) iEq = i;
158 if( op==SQLITE_INDEX_CONSTRAINT_LT ) iLe = i;
159 if( op==SQLITE_INDEX_CONSTRAINT_LE ) iLe = i;
160 if( op==SQLITE_INDEX_CONSTRAINT_GT ) iGe = i;
161 if( op==SQLITE_INDEX_CONSTRAINT_GE ) iGe = i;
/external/chromium_org/third_party/sqlite/src/src/
H A Dos.c93 int sqlite3OsFileControl(sqlite3_file *id, int op, void *pArg){ argument
94 return id->pMethods->xFileControl(id, op, pArg);
280 /* No-op */
H A Dresolve.c64 if( pOrig->op!=TK_COLUMN && zType[0]!='G' ){
114 ** pExpr->op Set to TK_COLUMN.
231 int op = pParse->eTriggerOp; local
233 assert( op==TK_DELETE || op==TK_UPDATE || op==TK_INSERT );
234 if( op!=TK_DELETE && sqlite3StrICmp("new",zTab) == 0 ){
237 }else if( op!=TK_INSERT && sqlite3StrICmp("old",zTab)==0 ){
341 pExpr->op = TK_STRING;
386 pExpr->op
[all...]
H A Dtest_demovfs.c186 ** no-op if this particular file does not have a buffer (i.e. it is not
271 ** the buffer is a no-op if it is empty.
302 ** Truncate a file. This is a no-op for this VFS (see header comments at
372 static int demoFileControl(sqlite3_file *pFile, int op, void *pArg){ argument
H A Dtest_devsym.c50 static int devsymFileControl(sqlite3_file*, int op, void *pArg);
216 static int devsymFileControl(sqlite3_file *pFile, int op, void *pArg){ argument
218 return sqlite3OsFileControl(p->pReal, op, pArg);
/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
H A Dfloatnum.c230 /* acc *= op */
232 floatnum_mul(yasm_floatnum *acc, const yasm_floatnum *op) argument
239 acc->sign ^= op->sign;
242 if (BitVector_is_empty(acc->mantissa) || BitVector_is_empty(op->mantissa)) {
249 expon = (((int)acc->exponent)-EXP_BIAS) + (((int)op->exponent)-EXP_BIAS);
276 BitVector_Copy(op2, op->mantissa);
514 yasm_floatnum_calc(yasm_floatnum *acc, yasm_expr_op op, argument
517 if (op != YASM_EXPR_NEG) {
/external/chromium_org/third_party/yasm/source/patched-yasm/tools/re2c/
H A Dre.h9 char op; member in struct:extop
/external/chromium_org/v8/src/compiler/
H A Dcode-generator.cc272 InstructionOperand* op = instr->InputAt(frame_state_offset + 1 + i); local
273 CHECK(op->IsStackSlot() || op->IsImmediate());
371 InstructionOperand* op) {
372 if (op->IsStackSlot()) {
373 translation->StoreStackSlot(op->index());
374 } else if (op->IsDoubleStackSlot()) {
375 translation->StoreDoubleStackSlot(op->index());
376 } else if (op->IsRegister()) {
378 translation->StoreRegister(converter.ToRegister(op));
369 AddTranslationForOperand(Translation* translation, Instruction* instr, InstructionOperand* op) argument
[all...]
H A Dgraph-builder.h27 Node* NewNode(const Operator* op) { argument
28 return MakeNode(op, 0, static_cast<Node**>(NULL));
31 Node* NewNode(const Operator* op, Node* n1) { return MakeNode(op, 1, &n1); } argument
33 Node* NewNode(const Operator* op, Node* n1, Node* n2) { argument
35 return MakeNode(op, arraysize(buffer), buffer);
38 Node* NewNode(const Operator* op, Node* n1, Node* n2, Node* n3) { argument
40 return MakeNode(op, arraysize(buffer), buffer);
43 Node* NewNode(const Operator* op, Node* n1, Node* n2, Node* n3, Node* n4) { argument
45 return MakeNode(op, arraysiz
48 NewNode(const Operator* op, Node* n1, Node* n2, Node* n3, Node* n4, Node* n5) argument
54 NewNode(const Operator* op, Node* n1, Node* n2, Node* n3, Node* n4, Node* n5, Node* n6) argument
60 NewNode(const Operator* op, int value_input_count, Node** value_inputs) argument
[all...]
H A Dinstruction-selector-impl.h104 UnallocatedOperand* op = local
107 op->set_virtual_register(sequence()->NextVirtualRegister());
108 return op;
112 UnallocatedOperand* op = local
115 op->set_virtual_register(sequence()->NextVirtualRegister());
116 sequence()->MarkAsDouble(op->virtual_register());
117 return op;
/external/chromium_org/v8/src/compiler/ia32/
H A Dcode-generator-ia32.cc38 Operand ToOperand(InstructionOperand* op, int extra = 0) { argument
39 if (op->IsRegister()) {
41 return Operand(ToRegister(op));
42 } else if (op->IsDoubleRegister()) {
44 return Operand(ToDoubleRegister(op));
46 DCHECK(op->IsStackSlot() || op->IsDoubleStackSlot());
48 FrameOffset offset = linkage()->GetFrameOffset(op->index(), frame(), extra);
52 Operand HighOperand(InstructionOperand* op) { argument
53 DCHECK(op
[all...]

Completed in 534 milliseconds

<<11121314151617181920>>