HomeSort by relevance Sort by last modified time
    Searched refs:clip1 (Results 1 - 10 of 10) sorted by null

  /external/skia/tests/
ImageFilterCacheTest.cpp 59 SkIRect clip1 = SkIRect::MakeWH(100, 100); local
61 SkImageFilter::Cache::Key key0(0, SkMatrix::I(), clip1, image->uniqueID(), image->subset());
62 SkImageFilter::Cache::Key key1(1, SkMatrix::I(), clip1, image->uniqueID(), image->subset());
63 SkImageFilter::Cache::Key key2(0, SkMatrix::MakeTrans(5, 5), clip1,
66 SkImageFilter::Cache::Key key4(0, SkMatrix::I(), clip1, subset->uniqueID(), subset->subset());
AAClipTest.cpp 207 SkAAClip clip0, clip1; local
211 REPORTER_ASSERT(reporter, clip1 == clip0);
216 REPORTER_ASSERT(reporter, clip1 == clip0);
222 REPORTER_ASSERT(reporter, clip0 != clip1);
228 REPORTER_ASSERT(reporter, clip1 == clip0);
248 SkAAClip clip0, clip1; local
255 clip1.setRect(r1);
262 bool nonEmptyAA = clip2.op(clip0, clip1, op);
CanvasTest.cpp 750 SkRect clip1, clip2; local
754 REPORTER_ASSERT(reporter, canvas.getClipBounds(&clip1) == filterCanvas.getClipBounds(&clip2));
755 REPORTER_ASSERT(reporter, clip1 == clip2);
760 REPORTER_ASSERT(reporter, canvas.getClipBounds(&clip1) == filterCanvas.getClipBounds(&clip2));
761 REPORTER_ASSERT(reporter, clip1 == clip2);
  /external/opencv3/3rdparty/libwebp/dsp/
dec.c 28 static uint8_t clip1[255 + 510 + 1]; // clips [-255,510] to [0,255] variable
48 clip1[255 + i] = (i < 0) ? 0 : (i > 255) ? 255 : i;
178 const uint8_t* const clip0 = clip1 + 255 - top[-1];
500 p[-step] = clip1[255 + p0 + a2];
501 p[ 0] = clip1[255 + q0 - a1];
511 p[-2*step] = clip1[255 + p1 + a3];
512 p[- step] = clip1[255 + p0 + a2];
513 p[ 0] = clip1[255 + q0 - a1];
514 p[ step] = clip1[255 + q1 - a3];
525 p[-3*step] = clip1[255 + p2 + a3]
    [all...]
enc.c 67 static uint8_t clip1[255 + 510 + 1]; // clips [-255,510] to [0,255] variable
77 clip1[255 + i] = clip_8b(i);
263 const uint8_t* const clip = clip1 + 255 - left[-1];
501 const uint8_t* const clip = clip1 + 255 - top[-1];
  /external/opencv3/3rdparty/libwebp/enc/
filter.c 20 // NOTE: clip1, tables and InitTables are repeated entries of dsp.c
25 static uint8_t clip1[255 + 510 + 1]; // clips [-255,510] to [0,255] variable
43 clip1[255 + i] = (i < 0) ? 0 : (i > 255) ? 255 : i;
58 p[-step] = clip1[255 + p0 + a2];
59 p[ 0] = clip1[255 + q0 - a1];
69 p[-2*step] = clip1[255 + p1 + a3];
70 p[- step] = clip1[255 + p0 + a2];
71 p[ 0] = clip1[255 + q0 - a1];
72 p[ step] = clip1[255 + q1 - a3];
  /external/webp/src/dsp/
enc.c 83 static uint8_t clip1[255 + 510 + 1]; // clips [-255,510] to [0,255] variable
93 clip1[255 + i] = clip_8b(i);
255 const uint8_t* const clip = clip1 + 255 - left[-1];
494 const uint8_t* const clip = clip1 + 255 - top[-1];
dec_clip_tables.c 261 static const uint8_t clip1[255 + 511 + 1] = { variable
334 static uint8_t clip1[255 + 511 + 1]; variable
344 const uint8_t* const VP8kclip1 = &clip1[255];
361 clip1[255 + i] = (i < 0) ? 0 : (i > 255) ? 255 : i;
  /external/libavc/common/x86/
ih264_deblk_luma_ssse3.c 1162 UWORD8 clip0, clip1, clip2, clip3; local
1777 UWORD8 clip0, clip1, clip2, clip3; local
    [all...]
  /cts/tests/tests/graphics/src/android/graphics/cts/
CanvasTest.java 370 Rect clip1 = new Rect(); local
371 assertTrue(mCanvas.getClipBounds(clip1));
372 assertTrue(clip1 != clip0);
373 assertTrue(clip0.contains(clip1));
379 assertEquals(clip2, clip1);
402 Rect clip1 = new Rect(); local
403 assertTrue(mCanvas.getClipBounds(clip1));
404 assertTrue(clip1 != clip0);
413 assertTrue(clip2 != clip1);
451 // clip1 does _not_ survive the preceding restor
    [all...]

Completed in 1009 milliseconds