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

  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
AlbumLabelMaker.java 36 private static final int BORDER_SIZE = 0;
63 return BORDER_SIZE;
112 int borders = 2 * BORDER_SIZE;
160 int borders = 2 * BORDER_SIZE;
166 canvas.clipRect(BORDER_SIZE, BORDER_SIZE,
167 bitmap.getWidth() - BORDER_SIZE,
168 bitmap.getHeight() - BORDER_SIZE);
171 canvas.translate(BORDER_SIZE, BORDER_SIZE);
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/glrenderer/
TiledTexture.java 41 private static final int BORDER_SIZE = 1;
42 private static final int TILE_SIZE = CONTENT_SIZE + 2 * BORDER_SIZE;
124 mWidth = width + 2 * BORDER_SIZE;
125 mHeight = height + 2 * BORDER_SIZE;
138 int x = BORDER_SIZE - offsetX;
139 int y = BORDER_SIZE - offsetY;
288 src.offset(BORDER_SIZE - t.offsetX, BORDER_SIZE - t.offsetY);
307 src.offset(BORDER_SIZE - t.offsetX, BORDER_SIZE - t.offsetY)
    [all...]
  /external/opencv3/modules/video/src/opencl/
optical_flow_farneback.cl 52 #define BORDER_SIZE 5
254 __constant float c_border[BORDER_SIZE + 1] = { 0.14f, 0.14f, 0.4472f, 0.4472f, 0.4472f, 1.f };
331 c_border[min(x, BORDER_SIZE)] *
332 c_border[min(y, BORDER_SIZE)] *
333 c_border[min(cols - x - 1, BORDER_SIZE)] *
334 c_border[min(rows - y - 1, BORDER_SIZE)];
  /external/opencv3/modules/cudaoptflow/src/cuda/
farneback.cu 55 #define BORDER_SIZE 5
154 __constant__ float c_border[BORDER_SIZE + 1];
227 c_border[::min(x, BORDER_SIZE)] *
228 c_border[::min(y, BORDER_SIZE)] *
229 c_border[::min(width - x - 1, BORDER_SIZE)] *
230 c_border[::min(height - y - 1, BORDER_SIZE)];
246 static const float border[BORDER_SIZE + 1] = {0.14f, 0.14f, 0.4472f, 0.4472f, 0.4472f, 1.f};
247 cudaSafeCall(cudaMemcpyToSymbol(c_border, border, (BORDER_SIZE + 1) * sizeof(*border)));
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/colorpicker/
ColorBrightnessView.java 59 public final static float BORDER_SIZE = 20;;
68 mBorder = BORDER_SIZE * mDpToPix;
ColorCompareView.java 56 public final static float BORDER_SIZE = 0;
63 mBorder = BORDER_SIZE * mDpToPix;
ColorHueView.java 58 public final static float BORDER_SIZE = 20;
69 mBorder = BORDER_SIZE * mDpToPix;
ColorOpacityView.java 59 public final static float BORDER_SIZE = 20;;
66 mBorder = BORDER_SIZE * mDpToPix;
ColorRectView.java 65 public final static float BORDER_SIZE = 10;
73 mBorder = BORDER_SIZE * mDpToPix;
ColorSVRectView.java 59 public final static float BORDER_SIZE = 20;
68 mBorder = BORDER_SIZE * mDpToPix;
ColorSaturationView.java 59 public final static float BORDER_SIZE = 20;;
68 mBorder = BORDER_SIZE * mDpToPix;
ColorValueView.java 53 private final static float BORDER_SIZE = ColorRectView.DOT_SIZE;
62 mBorder = BORDER_SIZE * mDpToPix;

Completed in 347 milliseconds