Searched refs:op (Results 51 - 75 of 1703) sorted by relevance

1234567891011>>

/external/jmonkeyengine/engine/src/jogg/com/jme3/audio/plugins/
H A DUncachedOggStream.java76 OggPage op = OggPage.create(sourceStream);
77 if (!op.isBos()){
80 if (op.isEos()){
82 lastPage = op;
85 LogicalOggStreamImpl los = (LogicalOggStreamImpl) getLogicalStream(op.getStreamSerialNumber());
87 los = new LogicalOggStreamImpl(this, op.getStreamSerialNumber());
88 logicalStreams.put(op.getStreamSerialNumber(), los);
89 los.checkFormat(op);
92 pageCache.add(op);
/external/chromium_org/chrome/browser/extensions/api/image_writer_private/
H A Doperation_unittest.cc28 scoped_refptr<Operation> op(new DummyOperation(manager.AsWeakPtr(),
32 EXPECT_EQ(0, op->GetProgress());
33 EXPECT_EQ(image_writer_api::STAGE_UNKNOWN, op->GetStage());
/external/chromium_org/third_party/angle/src/compiler/
H A DRenameFunction.h25 TOperator op = node->getOp(); local
26 if ((op == EOpFunction || op == EOpFunctionCall) && node->getName() == mOldFunctionName)
/external/llvm/bindings/python/llvm/tests/
H A Dtest_core.py11 op = OpCode.from_value(1)
12 self.assertTrue(isinstance(op, OpCode))
13 self.assertEqual(op, OpCode.Ret)
/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/skia/gm/
H A Dsimpleaaclip.cpp70 void buildRgn(SkAAClip* clip, SkRegion::Op op) { argument
75 clip->op(clip2, op);
88 void drawRgnOped(SkCanvas* canvas, SkRegion::Op op, SkColor color) { argument
92 this->buildRgn(&clip, op);
100 void drawPathsOped(SkCanvas* canvas, SkRegion::Op op, SkColor color) { argument
106 // create the clip mask with the supplied boolean op
110 canvas->clipPath(fRectPath, op, true);
114 canvas->clipRect(fRect, op, true);
162 for (size_t op
[all...]
/external/chromium_org/content/browser/web_contents/
H A Ddrag_utils_gtk.h18 blink::WebDragOperationsMask op);
/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/skia/tests/
H A DPathOpsInverseTest.cpp11 for (int op = kDifference_PathOp; op <= kReverseDifference_PathOp; ++op) {
25 testPathOp(reporter, one, two, (SkPathOp) op);
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DClipboard.cpp49 static DragOperation dragOpFromIEOp(const String& op) argument
52 if (op == "uninitialized")
54 if (op == "none")
56 if (op == "copy")
58 if (op == "link")
60 if (op == "move")
62 if (op == "copyLink")
64 if (op == "copyMove")
66 if (op == "linkMove")
68 if (op
73 IEOpFromDragOp(DragOperation op) argument
408 DragOperation op = dragOpFromIEOp(m_effectAllowed); local
415 DragOperation op = dragOpFromIEOp(m_dropEffect); local
420 setSourceOperation(DragOperation op) argument
426 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 bool SkCanvasStack::clipRect(const SkRect& r, SkRegion::Op op, bool aa) { argument
81 bool result = this->INHERITED::clipRect(r, op, aa);
86 bool SkCanvasStack::clipRRect(const SkRRect& rr, SkRegion::Op op, bool aa) { argument
87 bool result = this->INHERITED::clipRRect(rr, op, aa);
92 bool SkCanvasStack::clipPath(const SkPath& p, SkRegion::Op op, bool aa) { argument
93 bool result = this->INHERITED::clipPath(p, op, aa);
98 bool SkCanvasStack::clipRegion(const SkRegion& deviceRgn, SkRegion::Op op) { argument
104 tempRegion.op(fCanvasData[i].requiredClip, SkRegion::kIntersect_Op);
105 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 bool SkCanvasStack::clipRect(const SkRect& r, SkRegion::Op op, bool aa) { argument
81 bool result = this->INHERITED::clipRect(r, op, aa);
86 bool SkCanvasStack::clipRRect(const SkRRect& rr, SkRegion::Op op, bool aa) { argument
87 bool result = this->INHERITED::clipRRect(rr, op, aa);
92 bool SkCanvasStack::clipPath(const SkPath& p, SkRegion::Op op, bool aa) { argument
93 bool result = this->INHERITED::clipPath(p, op, aa);
98 bool SkCanvasStack::clipRegion(const SkRegion& deviceRgn, SkRegion::Op op) { argument
104 tempRegion.op(fCanvasData[i].requiredClip, SkRegion::kIntersect_Op);
105 fList[i]->clipRegion(tempRegion, op);
[all...]
/external/kernel-headers/original/asm-x86/
H A Dpda.h60 #define pda_to_op(op,field,val) do { \
65 asm(op "w %1,%%gs:%c2" : \
71 asm(op "l %1,%%gs:%c2" : \
77 asm(op "q %1,%%gs:%c2": \
87 #define pda_from_op(op,field) ({ \
91 asm(op "w %%gs:%c1,%0" : \
97 asm(op "l %%gs:%c1,%0": \
103 asm(op "q %%gs:%c1,%0": \
/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 */
H A Dsynthesis.c26 int vorbis_synthesis(vorbis_block *vb,ogg_packet *op){ argument
40 oggpack_readinit(opb,op->packet,op->bytes);
75 vb->granulepos=op->granulepos;
76 vb->sequence=op->packetno;
77 vb->eofflag=op->e_o_s;
94 int vorbis_synthesis_trackonly(vorbis_block *vb,ogg_packet *op){ argument
104 oggpack_readinit(opb,op->packet,op->bytes);
128 vb->granulepos=op
139 vorbis_packet_blocksize(vorbis_info *vi,ogg_packet *op) argument
[all...]
/external/chromium_org/third_party/skia/src/core/
H A DSkRasterClip.cpp95 bool SkRasterClip::op(const SkIRect& rect, SkRegion::Op op) { argument
98 fIsBW ? fBW.op(rect, op) : fAA.op(rect, op);
102 bool SkRasterClip::op(const SkRegion& rgn, SkRegion::Op op) { argument
106 (void)fBW.op(rgn, op);
115 op(const SkRasterClip& clip, SkRegion::Op op) argument
152 op(const SkRect& r, SkRegion::Op op, bool doAA) argument
[all...]
/external/clang/tools/clang-format/
H A Dclang-format.py72 for op in reversed(sequence.get_opcodes()):
73 if op[0] is not 'equal':
74 vim.current.buffer[op[1]:op[2]] = lines[op[3]:op[4]]
/external/llvm/utils/TableGen/
H A DAsmWriterInst.h57 AsmWriterOperand(OpType op = isLiteralTextOperand):OperandType(op) {}
60 OpType op = isLiteralTextOperand)
61 : OperandType(op), Str(LitStr) {}
67 OpType op = isMachineInstrOperand)
68 : OperandType(op), Str(Printer), CGIOpNo(_CGIOpNo), MIOpNo(_MIOpNo),
/external/skia/src/core/
H A DSkRasterClip.cpp95 bool SkRasterClip::op(const SkIRect& rect, SkRegion::Op op) { argument
98 fIsBW ? fBW.op(rect, op) : fAA.op(rect, op);
102 bool SkRasterClip::op(const SkRegion& rgn, SkRegion::Op op) { argument
106 (void)fBW.op(rgn, op);
115 op(const SkRasterClip& clip, SkRegion::Op op) argument
152 op(const SkRect& r, SkRegion::Op op, bool doAA) argument
[all...]
/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
H A Dinsn.c128 yasm_insn_ops_append(yasm_insn *insn, yasm_insn_operand *op) argument
130 if (op) {
132 STAILQ_INSERT_TAIL(&insn->operands, op, link);
133 return op;
203 const yasm_insn_operand *op; local
205 STAILQ_FOREACH (op, &insn->operands, link) {
206 switch (op->type) {
209 /*yasm_arch_reg_print(arch, op->data.reg, f);*/
214 /*yasm_arch_segreg_print(arch, op->data.reg, f);*/
219 /*yasm_arch_ea_print(arch, op
239 yasm_insn_operand *op; local
[all...]
/external/e2fsprogs/intl/
H A Dplural.y51 enum operator op;
63 new_exp (int nargs, enum operator op, struct expression * const *args)
78 newp->operation = op;
92 new_exp_0 (enum operator op)
94 return new_exp (0, op, NULL);
98 new_exp_1 (enum operator op, struct expression *right)
103 return new_exp (1, op, args);
107 new_exp_2 (enum operator op, struct expression *left, struct expression *right)
113 return new_exp (2, op, args);
117 new_exp_3 (enum operator op, struc
[all...]
/external/liblzf/
H A Dlzf_c.c110 u8 *op = (u8 *)out_data; local
112 u8 *out_end = op + out_len;
137 lit = 0; op++; /* start run */
167 if (expect_false (op + 3 + 1 >= out_end)) /* first a faster conservative test */
168 if (op - !lit + 3 + 1 >= out_end) /* second the exact but rare test */
171 op [- lit - 1] = lit - 1; /* stop run */
172 op -= !lit; /* undo run if length is zero */
211 *op++ = (off >> 8) + (len << 5);
215 *op++ = (off >> 8) + ( 7 << 5);
216 *op
[all...]
/external/pixman/pixman/
H A Dpixman-arm-common.h231 #define PIXMAN_ARM_BIND_SCALED_NEAREST_SRC_DST(cputype, name, op, \
234 pixman_scaled_nearest_scanline_##name##_##op##_asm_##cputype ( \
243 scaled_nearest_scanline_##cputype##_##name##_##op (dst_type * pd, \
251 pixman_scaled_nearest_scanline_##name##_##op##_asm_##cputype (w, pd, ps, \
256 FAST_NEAREST_MAINLOOP (cputype##_##name##_cover_##op, \
257 scaled_nearest_scanline_##cputype##_##name##_##op, \
259 FAST_NEAREST_MAINLOOP (cputype##_##name##_none_##op, \
260 scaled_nearest_scanline_##cputype##_##name##_##op, \
262 FAST_NEAREST_MAINLOOP (cputype##_##name##_pad_##op, \
263 scaled_nearest_scanline_##cputype##_##name##_##op, \
[all...]

Completed in 888 milliseconds

1234567891011>>