Searched refs:tiles (Results 1 - 7 of 7) sorted by relevance

/external/opencv/cv/src/
H A Dcvmoments.cpp197 /* summarizes moment values for all tiles */
199 icvAccumulateMoments( double *tiles, CvSize size, CvSize tile_size, CvMoments * moments ) argument
205 for( x = 0; x < size.width; x += tile_size.width, tiles += 10 )
208 double dxm = dx * tiles[0], dym = dy * tiles[0];
211 moments->m00 += tiles[0];
214 moments->m10 += tiles[1] + dxm;
217 moments->m01 += tiles[2] + dym;
220 moments->m20 += tiles[3] + dx * (tiles[
371 double* tiles = 0; local
[all...]
/external/webkit/Source/WebKit/efl/ewk/
H A Dewk_tiled_matrix.c51 } tiles, bytes; member in struct:_Ewk_Tile_Matrix::__anon13453
89 tm->stats.tiles.freed++;
125 ERR("cache of unused tiles requesting deletion of used tile %p? "
132 tm->stats.tiles.freed++;
139 * Creates a new matrix of tiles.
141 * The tile matrix is responsible for keeping tiles around and
143 * existing tiles and give them back, allowing them to be
146 * @param tuc cache of unused tiles or @c NULL to create one
150 * @param cspace the color space used to create tiles in this matrix.
189 * Destroys tiles matri
196 uint64_t tiles, bytes; local
[all...]
H A Dewk_tiled_model.c58 } tiles, bytes; member in struct:tile_account
79 acc->tiles.allocated = 0;
80 acc->tiles.freed = 0;
95 acc->tiles.allocated++;
108 acc->tiles.freed++;
119 printf("TILE BALANCE: tiles[+%"PRIu64",-%"PRIu64":%"PRIu64"] "
131 uint64_t tiles, bytes; local
133 tiles = acc->tiles.allocated - acc->tiles
[all...]
/external/replicaisland/tools/
H A DExtractPoints.js22 * graphical representations of the collision tiles used by the engine. Each
50 var tiles = new Array();
51 tiles.length = tilesPerRow * tilesPerColumn;
129 tiles[tileIndex] = tile;
139 for (var x = 0; x < tiles.length; x++) {
140 if (tiles[x]) {
141 var tile = tiles[x];
217 for (var x = 0; x < tiles.length; x++) {
218 if (tiles[x]) {
219 var tile = tiles[
[all...]
/external/webkit/Source/WebCore/platform/graphics/gpu/
H A DTexture.h55 const TilingData& tiles() const { return m_tiles; } function in class:WebCore::Texture
/external/webkit/Source/WebCore/platform/graphics/chromium/
H A DGLES2Canvas.cpp419 const TilingData& tiles = texture->tiles(); local
420 IntRect tileIdxRect = tiles.overlappedTileIndices(srcRect);
426 drawTexturedRectTile(texture, tiles.tileIndex(x, y), srcRect, dstRect, transform, alpha);
435 const TilingData& tiles = texture->tiles(); local
441 tiles.intersectDrawQuad(srcRect, dstRect, tile, &srcRectClippedInTileSpace, &dstRectIntersected);
443 IntRect tileBoundsWithBorder = tiles.tileBoundsWithBorder(tile);
/external/webkit/Source/WebCore/platform/graphics/skia/
H A DPlatformContextSkia.cpp868 if (!m_uploadTexture || m_uploadTexture->tiles().totalSizeX() < bitmap.width() || m_uploadTexture->tiles().totalSizeY() < bitmap.height())

Completed in 153 milliseconds