Searched defs:ir (Results 1 - 25 of 25) sorted by relevance

/external/skia/src/core/
H A DSkScan.cpp68 SkIRect ir; local
70 r.round(&ir);
71 SkScan::FillIRect(ir, clip, blitter);
H A DSkScan_AntiPath.cpp33 BaseSuperBlitter(SkBlitter* realBlitter, const SkIRect& ir,
56 BaseSuperBlitter::BaseSuperBlitter(SkBlitter* realBlitter, const SkIRect& ir, argument
60 // take the union of the ir bounds and clip, since we may be called with an
62 const int left = SkMin32(ir.fLeft, clip.getBounds().fLeft);
63 const int right = SkMax32(ir.fRight, clip.getBounds().fRight);
74 SuperBlitter(SkBlitter* realBlitter, const SkIRect& ir,
90 SuperBlitter::SuperBlitter(SkBlitter* realBlitter, const SkIRect& ir, argument
92 : BaseSuperBlitter(realBlitter, ir, clip) {
196 MaskSuperBlitter(SkBlitter* realBlitter, const SkIRect& ir,
226 MaskSuperBlitter::MaskSuperBlitter(SkBlitter* realBlitter, const SkIRect& ir, argument
[all...]
H A DSkScalerContext.cpp334 SkIRect ir; local
335 devPath.getBounds().roundOut(&ir);
337 if (ir.isEmpty() || !ir.is16Bit()) {
340 glyph->fLeft = ir.fLeft;
341 glyph->fTop = ir.fTop;
342 glyph->fWidth = SkToU16(ir.width());
343 glyph->fHeight = SkToU16(ir.height());
H A DSkScan_Path.cpp552 void sk_blit_above_and_below(SkBlitter* blitter, const SkIRect& ir, argument
561 tmp.fBottom = ir.fTop;
566 tmp.fTop = ir.fBottom;
575 SkScanClipper::SkScanClipper(SkBlitter* blitter, const SkRegion* clip, const SkIRect& ir) argument
583 if (!SkIRect::Intersects(*fClipRect, ir)) // completely clipped out
588 if (fClipRect->contains(ir))
593 if (fClipRect->fLeft > ir.fLeft || fClipRect->fRight < ir.fRight)
617 SkIRect ir; local
618 path.getBounds().round(&ir);
660 sk_fill_triangle(const SkPoint pts[], const SkIRect* clipRect, SkBlitter* blitter, const SkIRect& ir) argument
707 SkIRect ir; local
[all...]
H A DSkBlitter.cpp505 SkBlitter* SkBlitterClipper::apply(SkBlitter* blitter, const SkRegion* clip, const SkIRect* ir) argument
511 if (clip->isEmpty() || (ir && !SkIRect::Intersects(clipR, *ir)))
515 if (ir == NULL || !clipR.contains(*ir))
H A DSkCanvas.cpp629 SkIRect ir; local
636 r.roundOut(&ir);
638 if (!ir.intersect(clipBounds)) {
644 ir = clipBounds;
649 !fMCRec->fRegion->op(ir, SkRegion::kIntersect_Op)) {
654 SkBitmap::Config config = resolve_config(this, ir, flags, &isOpaque);
656 SkDevice* device = this->createDevice(config, ir.width(), ir.height(),
658 DeviceCM* layer = SkNEW_ARGS(DeviceCM, (device, ir.fLeft, ir
836 SkIRect ir; local
[all...]
H A DSkDraw.cpp695 SkIRect ir; local
696 devRect.roundOut(&ir);
699 ir.inset(-1, -1);
701 if (fClip->quickReject(ir))
1053 SkIRect ir; local
1056 ir.set(ix, iy, ix + bitmap.width(), iy + bitmap.height());
1057 if (!fBounder->doIRect(ir)) {
1079 SkIRect ir; local
1080 ir.set(ix, iy, ix + bitmap.width(), iy + bitmap.height());
1082 SkRegion::Cliperator iter(*fClip, ir);
[all...]
/external/webkit/WebKit/android/
H A DRenderSkinRadio.cpp68 void RenderSkinRadio::Draw(SkCanvas* canvas, Node* element, const IntRect& ir, argument
74 SkRect r(ir);
/external/icu4c/test/intltest/
H A Dtzoffloc.cpp141 InitialTimeZoneRule *ir = new InitialTimeZoneRule( local
146 RuleBasedTimeZone *rbPT = new RuleBasedTimeZone("Rule based Pacific Time", ir);
H A Dintltest.cpp1466 static int32_t iy, ir[98]; local
1474 ir[j]=(*seedp);
1481 iy=ir[j];
1483 ir[j]=(*seedp);
H A Dtzrulets.cpp154 InitialTimeZoneRule *ir = new InitialTimeZoneRule( local
160 RuleBasedTimeZone *rbtz1 = new RuleBasedTimeZone("RBTZ1", ir->clone());
185 RuleBasedTimeZone *rbtz2 = new RuleBasedTimeZone("RBTZ2", ir->clone());
206 RuleBasedTimeZone *rbtz3 = new RuleBasedTimeZone("RBTZ3", ir->clone());
360 RuleBasedTimeZone rbtz0("RBTZ1", ir->clone());
400 delete ir;
420 InitialTimeZoneRule *ir = new InitialTimeZoneRule("EST", -5*HOUR, 0); local
421 RuleBasedTimeZone *rbtz = new RuleBasedTimeZone("EST5EDT", ir);
1504 const InitialTimeZoneRule *ir = NULL; local
1527 stz1->getTimeZoneRules(ir, trrule
[all...]
/external/webkit/WebCore/page/win/
H A DFrameCGWin.cpp53 static HBITMAP imageFromRect(const Frame* frame, IntRect& ir) argument
60 int w = ir.width();
61 int h = ir.height();
74 drawRectIntoContext(ir, frame->view(), &gc);
91 IntRect ir(static_cast<int>(fr.x()), static_cast<int>(fr.y()),
93 HBITMAP image = imageFromRect(frame, ir);
/external/webkit/WebCore/platform/graphics/android/
H A Dandroid_graphics.cpp84 SkIRect ir; local
86 r.round(&ir);
87 ir.inset(-CURSOR_RING_OUTER_OUTSET, -CURSOR_RING_OUTER_OUTSET);
88 rgn.op(ir, SkRegion::kUnion_Op);
/external/skia/src/effects/
H A DSk2DPathEffect.cpp48 SkIRect ir; local
51 tmp.getBounds().round(&ir);
52 if (!ir.isEmpty()) {
55 SkRegion clip(ir);
57 this->begin(ir, dst);
/external/openssl/crypto/camellia/
H A Dcamellia.c134 #define CAMELLIA_F(xl, xr, kl, kr, yl, yr, il, ir, t0, t1) \
138 ir = xr ^ kr; \
140 t1 = ir >> 16; \
141 yl = CAMELLIA_SP1110(ir & 0xff) \
144 ^ CAMELLIA_SP4404((ir >> 8) & 0xff); \
177 #define CAMELLIA_ROUNDSM(xl, xr, kl, kr, yl, yr, il, ir, t0, t1) \
181 ir = xr; \
183 t1 = ir >> 16; \
184 ir = CAMELLIA_SP1110(ir
482 u32 il, ir, t0, t1, w0, w1; local
786 u32 il, ir, t0, t1, w0, w1; /* temporary variables */ local
1216 u32 il, ir, t0, t1; local
1306 u32 il,ir,t0,t1; /* temporary valiables */ local
1399 u32 il,ir,t0,t1; /* temporary valiables */ local
1513 u32 il,ir,t0,t1; /* temporary valiables */ local
[all...]
/external/quake/quake/src/QW/client/
H A Dsnd_mix.c235 int ir = endtime - paintedtime; local
237 ir += il;
243 // if ((dwNewpos >= il) && (dwNewpos <= ir))
244 // Con_Printf("%d-%d p %d c\n", il, ir, dwNewpos);
H A Dview.c544 int ir, ig, ib; local
592 ir = i*a + r;
595 if (ir > 255)
596 ir = 255;
602 ramps[0][i] = gammatable[ir];
612 ir = basepal[0];
617 newpal[0] = ramps[0][ir];
/external/quake/quake/src/WinQuake/
H A Dsnd_mix.cpp243 int ir = endtime - paintedtime; local
245 ir += il;
251 // if ((dwNewpos >= il) && (dwNewpos <= ir))
252 // Con_Printf("%d-%d p %d c\n", il, ir, dwNewpos);
/external/skia/src/views/
H A DSkWindow.cpp93 SkIRect ir; local
95 r.round(&ir);
96 fDirtyRgn.op(ir, SkRegion::kUnion_Op);
105 this->onHandleInval(ir);
/external/bluetooth/bluez/test/
H A Dhciemu.c655 read_ext_inquiry_response_rp ir; local
729 ir.status = 0x00;
730 ir.fec = vdev.eir_fec;
731 memcpy(ir.data, vdev.eir_data, 240);
732 command_complete(ogf, ocf, sizeof(ir), &ir);
/external/bluetooth/bluez/lib/
H A Dhci.c856 struct hci_inquiry_req *ir; local
878 buf = malloc(sizeof(*ir) + (sizeof(inquiry_info) * (nrsp)));
882 ir = buf;
883 ir->dev_id = dev_id;
884 ir->num_rsp = num_rsp;
885 ir->length = len;
886 ir->flags = flags;
889 memcpy(ir->lap, lap, 3);
891 ir->lap[0] = 0x33;
892 ir
[all...]
/external/libpng/
H A Dpngrtran.c498 int ir, ig, ib; local
503 for (ir = 0; ir < num_red; ir++)
505 /* int dr = abs(ir - r); */
506 int dr = ((ir > r) ? ir - r : r - ir);
507 int index_r = (ir << (PNG_DITHER_BLUE_BITS +
/external/qemu/distrib/libpng-1.2.19/
H A Dpngrtran.c474 int ir, ig, ib; local
479 for (ir = 0; ir < num_red; ir++)
481 /* int dr = abs(ir - r); */
482 int dr = ((ir > r) ? ir - r : r - ir);
483 int index_r = (ir << (PNG_DITHER_BLUE_BITS + PNG_DITHER_GREEN_BITS));
/external/qemu/tcg/ppc/
H A Dtcg-target.c694 int r2, ir; local
756 ir = 4;
761 ir = 5;
763 ir = 4;
770 | RA (ir)
778 | RA (ir)
785 tcg_out_mov (s, ir, data_reg);
789 ir = 5;
791 tcg_out_mov (s, ir++, data_reg2);
792 tcg_out_mov (s, ir, data_re
[all...]
/external/webkit/WebCore/platform/graphics/skia/
H A DGraphicsContextSkia.cpp191 SkIRect ir; local
195 ir.set(-rx, -ry, rx, ry);
198 ir.offset(rect.fRight - ir.fRight, rect.fBottom - ir.fBottom);
201 ir.offset(rect.fLeft - ir.fLeft, rect.fBottom - ir.fBottom);
204 ir.offset(rect.fLeft - ir
[all...]

Completed in 565 milliseconds