Searched refs:border (Results 1 - 14 of 14) sorted by relevance

/packages/apps/Camera/jni/feature_mos/src/mosaic/
H A DPyramid.cpp28 real width, real height, real border)
30 real border2 = (real) (border << 1);
44 curr->border = border;
46 curr->ptr = y + border;
50 *y = position + border;
62 PyramidShort *PyramidShort::allocateImage(real width, real height, real border) argument
64 real border2 = (real) (border << 1);
74 img->border = border;
27 allocatePyramidPacked(real levels, real width, real height, real border) argument
[all...]
H A DGeometry.h50 // Clip x to be within [-border,width+border-1]
51 inline void clipToSegment(int &x, int width, int border) argument
53 if(x < -border)
54 x = -border;
55 else if(x >= width+border)
56 x = width + border - 1;
59 // Return true if x within [-border,width+border-1]
60 inline bool inSegment(int x, int width, int border) argument
[all...]
H A DPyramid.h37 real border; // border size member in class:PyramidShort
40 static PyramidShort *allocatePyramidPacked(real width, real height, real levels, real border = 0);
41 static PyramidShort *allocateImage(real width, real height, real border);
H A DImageUtils.h107 static ImageType allocateImage(int width, int height, int numChannels, short int border = 0);
145 unsigned short border; member in struct:__anon3
H A DImageUtils.cpp333 ImageType ImageUtils::allocateImage(int width, int height, int numChannels, short int border) argument
374 yuv->Y.border = yuv->U.border = yuv->V.border = (unsigned short) 0;
/packages/apps/LegacyCamera/jni/feature_mos/src/mosaic/
H A DPyramid.cpp28 real width, real height, real border)
30 real border2 = (real) (border << 1);
44 curr->border = border;
46 curr->ptr = y + border;
50 *y = position + border;
62 PyramidShort *PyramidShort::allocateImage(real width, real height, real border) argument
64 real border2 = (real) (border << 1);
74 img->border = border;
27 allocatePyramidPacked(real levels, real width, real height, real border) argument
[all...]
H A DGeometry.h50 // Clip x to be within [-border,width+border-1]
51 inline void clipToSegment(int &x, int width, int border) argument
53 if(x < -border)
54 x = -border;
55 else if(x >= width+border)
56 x = width + border - 1;
59 // Return true if x within [-border,width+border-1]
60 inline bool inSegment(int x, int width, int border) argument
[all...]
H A DPyramid.h37 real border; // border size member in class:PyramidShort
40 static PyramidShort *allocatePyramidPacked(real width, real height, real levels, real border = 0);
41 static PyramidShort *allocateImage(real width, real height, real border);
H A DImageUtils.h107 static ImageType allocateImage(int width, int height, int numChannels, short int border = 0);
145 unsigned short border; member in struct:__anon10
H A DImageUtils.cpp333 ImageType ImageUtils::allocateImage(int width, int height, int numChannels, short int border) argument
374 yuv->Y.border = yuv->U.border = yuv->V.border = (unsigned short) 0;
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
H A DImageFilterParametricBorder.java84 Path border = new Path();
85 border.moveTo(0, 0);
90 border.lineTo(0, h);
91 border.lineTo(w, h);
92 border.lineTo(w, 0);
93 border.lineTo(0, 0);
94 border.addRoundRect(new RectF(bs, bs, w - bs, h - bs),
100 canvas.drawPath(border, paint);
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/
H A DImageSmallBorder.java51 RectF border = new RectF(mMargin, 2*mMargin, getWidth() - mMargin - 1, getWidth());
61 path.addRect(border, Path.Direction.CCW);
/packages/apps/Gallery2/tests/src/com/android/gallery3d/ui/
H A DGLStub.java121 int border,
146 int border
684 int border,
115 glCompressedTexImage2D( int target, int level, int internalformat, int width, int height, int border, int imageSize, java.nio.Buffer data ) argument
678 glTexImage2D( int target, int level, int internalformat, int width, int height, int border, int format, int type, java.nio.Buffer pixels ) argument
/packages/apps/Contacts/src/com/android/contacts/socialwidget/
H A DSocialWidgetProvider.java153 views.setOnClickPendingIntent(R.id.border, pendingIntent);

Completed in 1260 milliseconds