/external/webkit/Source/WebCore/platform/image-decoders/openvg/ |
ImageDecoderOpenVG.cpp | 55 for (int yIndex = 0; yIndex < numRows; ++yIndex) { 57 IntRect tileRect = tiledImage->tileRect(xIndex, yIndex); 70 tiledImage->setTile(xIndex, yIndex, image);
|
/external/webkit/Source/WebCore/platform/graphics/gpu/ |
TilingData.cpp | 146 int TilingData::tilePositionY(int yIndex) const 148 ASSERT(yIndex >= 0 && yIndex < numTilesY()); 151 for (int i = 0; i < yIndex; i++) 174 int TilingData::tileSizeY(int yIndex) const 176 ASSERT(yIndex >= 0 && yIndex < numTilesY()); 178 if (!yIndex && m_numTilesY == 1) 180 if (!yIndex && m_numTilesY > 1) 182 if (yIndex < numTilesY() - 1 [all...] |
TilingData.h | 66 int tilePositionY(int yIndex) const; 68 int tileSizeY(int yIndex) const; 77 IntPoint textureOffset(int xIndex, int yIndex) const;
|
/external/llvm/test/CodeGen/PowerPC/ |
2011-12-06-SpillAndRestoreCR.ll | 45 %yindex.137 = phi i32 [ 0, %for.body ], [ %yindex.3.15, %for.inc15 ] 52 %yindex.233 = phi i32 [ %yindex.137, %for.cond5.preheader ], [ %yindex.3.15, %for.body7 ] 57 %yindex.3 = select i1 %cmp10, i32 %2, i32 %yindex.233 66 %yindex.3.1 = select i1 %cmp10.1, i32 %5, i32 %yindex.3 74 %yindex.3.2 = select i1 %cmp10.2, i32 %7, i32 %yindex.3. [all...] |
/external/webkit/Source/WebCore/platform/graphics/openvg/ |
TiledImageOpenVG.h | 51 void setTile(int xIndex, int yIndex, VGImage); 52 VGImage tile(int xIndex, int yIndex) const; 53 IntRect tileRect(int xIndex, int yIndex) const;
|
TiledImageOpenVG.cpp | 83 void TiledImageOpenVG::setTile(int xIndex, int yIndex, VGImage image) 86 int i = (yIndex * m_numColumns) + xIndex; 112 VGImage TiledImageOpenVG::tile(int xIndex, int yIndex) const 115 int i = (yIndex * m_numColumns) + xIndex; 120 IntRect TiledImageOpenVG::tileRect(int xIndex, int yIndex) const 123 ASSERT((yIndex * m_numColumns) + xIndex < m_tiles.size()); 126 int y = yIndex * m_maxTileSize.height();
|
PainterOpenVG.cpp | 1079 for (int yIndex = drawnTiles.y(); yIndex < drawnTiles.bottom(); ++yIndex) { 1082 FloatRect tile(tiledImage->tileRect(xIndex, yIndex)); [all...] |
/external/jpeg/ |
jccoefct.c | 149 int blkn, bi, ci, yindex, yoffset, blockcnt; local 173 ypos = yoffset * DCTSIZE; /* ypos == (yoffset+yindex) * DCTSIZE */ 174 for (yindex = 0; yindex < compptr->MCU_height; yindex++) { 176 yoffset+yindex < compptr->last_row_height) { 345 int blkn, ci, xindex, yindex, yoffset; local 373 for (yindex = 0; yindex < compptr->MCU_height; yindex++) [all...] |
jdcoefct.c | 153 int blkn, ci, xindex, yindex, yoffset, useful_width; local 205 for (yindex = 0; yindex < compptr->MCU_height; yindex++) { 207 yoffset+yindex < compptr->last_row_height) { 259 int blkn, ci, xindex, yindex, yoffset; local 317 for (yindex = 0; yindex < compptr->MCU_height; yindex++) { 318 buffer_ptr = buffer[ci][yindex+yoffset] + start_col 396 int ci, xindex, yindex, yoffset; local 456 int blkn, ci, xindex, yindex, yoffset; local [all...] |
jctrans.c | 284 int blkn, ci, xindex, yindex, yoffset, blockcnt; local 312 for (yindex = 0; yindex < compptr->MCU_height; yindex++) { 314 yindex+yoffset < compptr->last_row_height) { 316 buffer_ptr = buffer[ci][yindex+yoffset] + start_col;
|
/external/qemu/distrib/jpeg-6b/ |
jccoefct.c | 149 int blkn, bi, ci, yindex, yoffset, blockcnt; local 173 ypos = yoffset * DCTSIZE; /* ypos == (yoffset+yindex) * DCTSIZE */ 174 for (yindex = 0; yindex < compptr->MCU_height; yindex++) { 176 yoffset+yindex < compptr->last_row_height) { 345 int blkn, ci, xindex, yindex, yoffset; local 373 for (yindex = 0; yindex < compptr->MCU_height; yindex++) [all...] |
jdcoefct.c | 153 int blkn, ci, xindex, yindex, yoffset, useful_width; local 205 for (yindex = 0; yindex < compptr->MCU_height; yindex++) { 207 yoffset+yindex < compptr->last_row_height) { 259 int blkn, ci, xindex, yindex, yoffset; local 317 for (yindex = 0; yindex < compptr->MCU_height; yindex++) { 318 buffer_ptr = buffer[ci][yindex+yoffset] + start_col 396 int ci, xindex, yindex, yoffset; local 456 int blkn, ci, xindex, yindex, yoffset; local [all...] |
jctrans.c | 284 int blkn, ci, xindex, yindex, yoffset, blockcnt; local 312 for (yindex = 0; yindex < compptr->MCU_height; yindex++) { 314 yindex+yoffset < compptr->last_row_height) { 316 buffer_ptr = buffer[ci][yindex+yoffset] + start_col;
|
/cts/apps/CtsVerifier/src/com/android/cts/verifier/camera/formats/ |
CameraFormatsActivity.java | 610 int yIndex = 0; 622 int yv = data[yIndex] & 0xFF; 629 yIndex += 1; 664 int yIndex = yStride * y; 681 int yv = data[yIndex] & 0xFF; 686 yIndex += 1; 696 int yIndex = 0; 708 int yv = data[yIndex] & 0xFF; 713 yIndex += 2;
|
/hardware/samsung_slsi/exynos5/libswconverter/ |
swconvertor.c | 535 unsigned int yIndex = 0; 552 pDstY[yIndex++] = (unsigned char)Y; 607 unsigned int yIndex = 0; 625 pDstY[yIndex++] = (unsigned char)Y; 686 unsigned int yIndex = 0; 702 pDstY[yIndex++] = (unsigned char)Y; 758 unsigned int yIndex = 0; 773 pDstY[yIndex++] = (unsigned char)Y;
|
/external/freetype/src/smooth/ |
ftgrays.c | 1335 int yindex; local 1357 int yindex; local 1785 int yindex; local [all...] |
/external/icu4c/i18n/ |
indiancal.cpp | 162 double wjd, depoch, quadricent, dqc, cent, dcent, quad, dquad, yindex, yearday, leapadj; local 172 yindex = uprv_floor(dquad / 365); 173 year = (int32_t)((quadricent * 400) + (cent * 100) + (quad * 4) + yindex); 174 if (!((cent == 4) || (yindex == 4))) {
|
/packages/apps/Gallery2/src/com/android/gallery3d/glrenderer/ |
NinePatchTexture.java | 339 int yIndex = xIndex + 1; 341 xy[yIndex] = y[j]; 343 uv[yIndex] = v[j];
|