Home
last modified time | relevance | path

Searched refs:cellSize (Results 1 – 24 of 24) sorted by relevance

/external/deqp/modules/gles3/functional/
Des3fFboColorbufferTests.cpp834 const int cellSize = 16; in render() local
835 const int fboSizes[] = { cellSize, cellSize*numRowsCols }; in render()
878 glViewport(cellX*cellSize, cellY*cellSize, cellSize, cellSize); in render()
906 const int cellSize = 16; in render() local
907 const int fboSizes[] = { cellSize, cellSize*numRowsCols }; in render()
944 …glBlitFramebuffer(0, 0, cellSize, cellSize, cellX*cellSize, cellY*cellSize, (cellX+1)*cellSize, (c… in render()
972 const int cellSize = 16; in render() local
973 const int fboSizes[] = { cellSize, cellSize*numRowsCols }; in render()
1006 …glBlitFramebuffer(0, 0, cellSize, cellSize, cellX*cellSize, cellY*cellSize, (cellX+1)*cellSize, (c… in render()
Des3fTextureSpecificationTests.cpp990 int cellSize = de::max(1, de::min(levelW >> 2, levelH >> 2)); in createTexture() local
993 …ixelBufferAccess(m_texFormat, levelW, levelH, 1, rowPitch, 0, &data[0]), cellSize, colorA, colorB); in createTexture()
1046 int cellSize = de::max(1, levelSize >> 2); in createTexture() local
1049 …fferAccess(m_texFormat, levelSize, levelSize, 1, rowPitch, 0, &data[0]), cellSize, colorA, colorB); in createTexture()
1251 int cellSize = rnd.getInt(2, 16); in createTexture() local
1254 tcu::fillWithGrid(data.getAccess(), cellSize, colorA, colorB); in createTexture()
1330 int cellSize = rnd.getInt(2, 16); in createTexture() local
1333 tcu::fillWithGrid(data.getAccess(), cellSize, colorA, colorB); in createTexture()
1479 int cellSize = rnd.getInt(2, 16); in createTexture() local
1482 tcu::fillWithGrid(data.getAccess(), cellSize, colorA, colorB); in createTexture()
[all …]
Des3fFramebufferBlitTests.cpp58 …IVec2& srcSize, const IVec4& srcRect, const IVec2& dstSize, const IVec4& dstRect, int cellSize = 8) in BlitRectCase() argument
65 , m_cellSize (cellSize) in BlitRectCase()
/external/skia/samplecode/
DSampleAtlas.cpp42 static sk_sp<SkImage> make_atlas(int atlasSize, int cellSize) { in make_atlas() argument
51 const SkScalar half = cellSize * SK_ScalarHalf; in make_atlas()
56 for (int y = 0; y < atlasSize; y += cellSize) { in make_atlas()
57 for (int x = 0; x < atlasSize; x += cellSize) { in make_atlas()
/external/skqp/samplecode/
DSampleAtlas.cpp42 static sk_sp<SkImage> make_atlas(int atlasSize, int cellSize) { in make_atlas() argument
51 const SkScalar half = cellSize * SK_ScalarHalf; in make_atlas()
56 for (int y = 0; y < atlasSize; y += cellSize) { in make_atlas()
57 for (int x = 0; x < atlasSize; x += cellSize) { in make_atlas()
/external/deqp/framework/common/
DtcuTextureUtil.cpp879 static void fillWithGrid1D (const PixelBufferAccess& access, int cellSize, const Vec4& colorA, cons… in fillWithGrid1D() argument
883 int mx = (x / cellSize) % 2; in fillWithGrid1D()
892 static void fillWithGrid2D (const PixelBufferAccess& access, int cellSize, const Vec4& colorA, cons… in fillWithGrid2D() argument
898 int mx = (x / cellSize) % 2; in fillWithGrid2D()
899 int my = (y / cellSize) % 2; in fillWithGrid2D()
909 static void fillWithGrid3D (const PixelBufferAccess& access, int cellSize, const Vec4& colorA, cons… in fillWithGrid3D() argument
917 int mx = (x / cellSize) % 2; in fillWithGrid3D()
918 int my = (y / cellSize) % 2; in fillWithGrid3D()
919 int mz = (z / cellSize) % 2; in fillWithGrid3D()
930 void fillWithGrid (const PixelBufferAccess& access, int cellSize, const Vec4& colorA, const Vec4& c… in fillWithGrid() argument
[all …]
DtcuTextureUtil.hpp119 void fillWithGrid (const PixelBufferAccess& access, int cellSize, const Vec4& colorA, const Vec…
/external/deqp/modules/gles2/functional/
Des2fTextureSpecificationTests.cpp844 int cellSize = de::max(1, de::min(levelW >> 2, levelH >> 2)); in createTexture() local
847 …d(tcu::PixelBufferAccess(fmt, levelW, levelH, 1, rowPitch, 0, &data[0]), cellSize, colorA, colorB); in createTexture()
891 int cellSize = de::max(1, de::min(levelW >> 2, levelH >> 2)); in createTexture() local
894 …d(tcu::PixelBufferAccess(fmt, levelW, levelH, 1, rowPitch, 0, &data[0]), cellSize, colorA, colorB); in createTexture()
957 int cellSize = rnd.getInt(2, 16); in createTexture() local
960 tcu::fillWithGrid(data.getAccess(), cellSize, colorA, colorB); in createTexture()
1029 int cellSize = rnd.getInt(2, 16); in createTexture() local
1032 tcu::fillWithGrid(data.getAccess(), cellSize, colorA, colorB); in createTexture()
1409 int cellSize = rnd.getInt(2, 16); in createTexture() local
1412 tcu::fillWithGrid(data.getAccess(), cellSize, colorA, colorB); in createTexture()
[all …]
Des2fFboRenderTest.cpp1997 const int cellSize = 16; in render() local
1998 const int fboSizes[] = { cellSize, cellSize*numRowsCols }; in render()
2050 ctx.viewport(cellX*cellSize, cellY*cellSize, cellSize, cellSize); in render()
/external/python/cpython2/Mac/Modules/list/
D_Listmodule.c715 return Py_BuildValue("O&", PyMac_BuildPoint, (*self->ob_itself)->cellSize); in ListObj_get_cellSize()
720 if (!PyArg_Parse(v, "O&", PyMac_GetPoint, &(*self->ob_itself)->cellSize)) return -1; in ListObj_set_cellSize()
808 Point cellSize; in List_CreateCustomList() local
822 PyMac_GetPoint, &cellSize, in List_CreateCustomList()
836 cellSize, in List_CreateCustomList()
/external/deqp/modules/gles2/accuracy/
Des2aTextureFilteringTests.cpp521 const int cellSize = 28; in iterate() local
522 const int defViewportWidth = cellSize*6; in iterate()
523 const int defViewportHeight = cellSize*4; in iterate()
524 …RandomViewport viewport (m_renderCtx.getRenderTarget(), cellSize*6, cellSize*4, deStringHash(… in iterate()
/external/deqp/modules/gles3/accuracy/
Des3aTextureFilteringTests.cpp530 const int cellSize = 28; in iterate() local
531 const int defViewportWidth = cellSize*6; in iterate()
532 const int defViewportHeight = cellSize*4; in iterate()
533 …RandomViewport viewport (m_renderCtx.getRenderTarget(), cellSize*6, cellSize*4, deStringHash(… in iterate()
/external/deqp/modules/gles31/functional/
Des31fStencilTexturingTests.cpp816 const int cellSize = 8; in iterate() local
838 for (int y = 0; y < height; y += cellSize) in iterate()
840 for (int x = 0; x < width; x += cellSize) in iterate()
842 const int clearW = de::min(cellSize, width-x); in iterate()
843 const int clearH = de::min(cellSize, height-y); in iterate()
Des31fCopyImageTests.cpp263 …RandomizedRenderGrid (const IVec2& targetSize, const IVec2& cellSize, int maxCellCount, deUint32 s…
272 …static IVec2 getRandomOffset (deUint32 seed, IVec2 targetSize, IVec2 cellSize, IVec2 grid, int c…
282 RandomizedRenderGrid::RandomizedRenderGrid (const IVec2& targetSize, const IVec2& cellSize, int max… in RandomizedRenderGrid() argument
284 , m_cellSize (cellSize) in RandomizedRenderGrid()
285 , m_grid (targetSize / cellSize) in RandomizedRenderGrid()
288 …, m_cellCount (deMin32(maxCellCount, ((targetSize.y() % cellSize.y()) == 0) && m_grid.y() > 1 ? … in RandomizedRenderGrid()
289 , m_baseRandomOffset (getRandomOffset(seed, targetSize, cellSize, m_grid, m_cellCount)) in RandomizedRenderGrid()
293 IVec2 RandomizedRenderGrid::getRandomOffset (deUint32 seed, IVec2 targetSize, IVec2 cellSize, IVec2… in getRandomOffset() argument
297 IVec2 extraSpace = targetSize - (cellSize * grid); in getRandomOffset()
302 extraSpace.y() += (grid.y() - deDivRoundUp32(cellCount, grid.x())) * cellSize.y(); in getRandomOffset()
[all …]
Des31fDrawTests.cpp1416 const float cellSize = 2.0f / (float)m_gridSize; in createDrawData() local
1420 buffer[((y * m_gridSize + x) * 6 + 1) * 2 + 0] = tcu::Vec4(posX + cellSize, posY, 0.0f, 1.0f); in createDrawData()
1421 …buffer[((y * m_gridSize + x) * 6 + 2) * 2 + 0] = tcu::Vec4(posX + cellSize, posY + cellSize, 0.0f,… in createDrawData()
1423 …buffer[((y * m_gridSize + x) * 6 + 4) * 2 + 0] = tcu::Vec4(posX + cellSize, posY + cellSize, 0.0f,… in createDrawData()
1424 buffer[((y * m_gridSize + x) * 6 + 5) * 2 + 0] = tcu::Vec4(posX, posY + cellSize, 0.0f, 1.0f); in createDrawData()
Des31fTextureSpecificationTests.cpp690 const int cellSize = rnd.getInt(2, 16); in createTexture() local
693 tcu::fillWithGrid(levelData.getAccess(), cellSize, colorA, colorB); in createTexture()
/external/robolectric/v3/runtime/
Dandroid-all-4.2.2_r1.2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/ ...
Dandroid-all-4.1.2_r1-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/ ...
Dandroid-all-4.3_r2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/ ...
Dandroid-all-5.1.1_r9-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/ ...
Dandroid-all-5.0.0_r2-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/ ...
Dandroid-all-4.4_r1-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/ ...
/external/sqlite/dist/orig/
Dsqlite3.c61742 static u16 cellSize(MemPage *pPage, int iCell){
66879 assert( CORRUPT_DB || sz==cellSize(pPage, idx) );
/external/sqlite/dist/
Dsqlite3.c61742 static u16 cellSize(MemPage *pPage, int iCell){
66879 assert( CORRUPT_DB || sz==cellSize(pPage, idx) );