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

  /external/opencv/cv/src/
cvsnakes.cpp 106 #define TILE_SIZE (WTILE_SIZE + 2)
107 short dx[TILE_SIZE*TILE_SIZE], dy[TILE_SIZE*TILE_SIZE];
108 CvMat _dx = cvMat( TILE_SIZE, TILE_SIZE, CV_16SC1, dx );
109 CvMat _dy = cvMat( TILE_SIZE, TILE_SIZE, CV_16SC1, dy );
146 pX.init_deriv( TILE_SIZE+2, CV_8UC1, CV_16SC1, 1, 0, 3 )
    [all...]
  /cts/tests/tests/graphics/src/android/graphics/cts/
BitmapRegionDecoderTest.java 79 private static int TILE_SIZE = 256;
86 private int[] mExpectedColors = new int [TILE_SIZE * TILE_SIZE];
87 private int[] mActualColors = new int [TILE_SIZE * TILE_SIZE];
329 int numCols = (width + TILE_SIZE - 1) / TILE_SIZE;
330 int numRows = (height + TILE_SIZE - 1) / TILE_SIZE;
336 Rect rect1 = new Rect(i * TILE_SIZE, j * TILE_SIZE
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
TileImageView.java 42 // TILE_SIZE must be 2^N - 2. We put one pixel border in each side of the
44 private static final int TILE_SIZE = 254;
251 int size = TILE_SIZE << i;
302 int size = TILE_SIZE << level;
378 int size = (TILE_SIZE << level);
520 source.set(0, 0, TILE_SIZE, TILE_SIZE);
541 int size = TILE_SIZE << level;
568 source.left = (TILE_SIZE + source.left) / 2f;
569 source.right = (TILE_SIZE + source.right) / 2f
    [all...]
  /external/quake/quake/src/QW/client/
d_iface.h 216 #define TILE_SIZE 128 // size of textures generated by R_GenTiledSurf
r_surf.c 587 for (i=0 ; i<TILE_SIZE ; i++)
589 for (j=0 ; j<TILE_SIZE ; j++)
613 for (i=0 ; i<TILE_SIZE ; i++)
615 for (j=0 ; j<TILE_SIZE ; j++)
glquake2.h 67 #define TILE_SIZE 128 // size of textures generated by R_GenTiledSurf
r_sky.c 251 pnewsky += TILE_SIZE;
glquake.h 113 #define TILE_SIZE 128 // size of textures generated by R_GenTiledSurf
  /external/quake/quake/src/WinQuake/
d_iface.h 217 #define TILE_SIZE 128 // size of textures generated by R_GenTiledSurf
r_surf.cpp 604 for (i=0 ; i<TILE_SIZE ; i++)
606 for (j=0 ; j<TILE_SIZE ; j++)
630 for (i=0 ; i<TILE_SIZE ; i++)
632 for (j=0 ; j<TILE_SIZE ; j++)
r_sky.cpp 251 pnewsky += TILE_SIZE;
glquake.h 102 #define TILE_SIZE 128 // size of textures generated by R_GenTiledSurf
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
CropImage.java 85 private static final int TILE_SIZE = 512;
679 int tileSize = TILE_SIZE * sample;
689 tx < rect.right; tx += tileSize, x += TILE_SIZE) {
691 ty < rect.bottom; ty += tileSize, y += TILE_SIZE) {
    [all...]

Completed in 440 milliseconds