/external/deqp/modules/gles3/functional/ |
D | es3fFboColorbufferTests.cpp | 834 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()
|
D | es3fTextureSpecificationTests.cpp | 990 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 …]
|
D | es3fFramebufferBlitTests.cpp | 58 …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/ |
D | SampleAtlas.cpp | 42 static sk_sp<SkImage> make_atlas(int atlasSize, int cellSize) { in make_atlas() argument 50 const SkScalar half = cellSize * SK_ScalarHalf; in make_atlas() 55 for (int y = 0; y < atlasSize; y += cellSize) { in make_atlas() 56 for (int x = 0; x < atlasSize; x += cellSize) { in make_atlas()
|
/external/skqp/samplecode/ |
D | SampleAtlas.cpp | 42 static sk_sp<SkImage> make_atlas(int atlasSize, int cellSize) { in make_atlas() argument 50 const SkScalar half = cellSize * SK_ScalarHalf; in make_atlas() 55 for (int y = 0; y < atlasSize; y += cellSize) { in make_atlas() 56 for (int x = 0; x < atlasSize; x += cellSize) { in make_atlas()
|
/external/deqp/framework/common/ |
D | tcuTextureUtil.cpp | 879 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 …]
|
D | tcuTextureUtil.hpp | 119 void fillWithGrid (const PixelBufferAccess& access, int cellSize, const Vec4& colorA, const Vec…
|
/external/tensorflow/tensorflow/lite/experimental/examples/unity/TensorFlowLitePlugin/ProjectSettings/ |
D | NavMeshAreas.asset | 84 cellSize: 0.16666667
|
/external/deqp/modules/gles2/functional/ |
D | es2fTextureSpecificationTests.cpp | 863 int cellSize = de::max(1, de::min(levelW >> 2, levelH >> 2)); in createTexture() local 866 …d(tcu::PixelBufferAccess(fmt, levelW, levelH, 1, rowPitch, 0, &data[0]), cellSize, colorA, colorB); in createTexture() 913 int cellSize = de::max(1, de::min(levelW >> 2, levelH >> 2)); in createTexture() local 916 …d(tcu::PixelBufferAccess(fmt, levelW, levelH, 1, rowPitch, 0, &data[0]), cellSize, colorA, colorB); in createTexture() 982 int cellSize = rnd.getInt(2, 16); in createTexture() local 985 tcu::fillWithGrid(data.getAccess(), cellSize, colorA, colorB); in createTexture() 1057 int cellSize = rnd.getInt(2, 16); in createTexture() local 1060 tcu::fillWithGrid(data.getAccess(), cellSize, colorA, colorB); in createTexture() 1452 int cellSize = rnd.getInt(2, 16); in createTexture() local 1455 tcu::fillWithGrid(data.getAccess(), cellSize, colorA, colorB); in createTexture() [all …]
|
D | es2fFboRenderTest.cpp | 2019 const int cellSize = 16; in render() local 2020 const int fboSizes[] = { cellSize, cellSize*numRowsCols }; in render() 2072 ctx.viewport(cellX*cellSize, cellY*cellSize, cellSize, cellSize); in render()
|
/external/python/cpython2/Mac/Modules/list/ |
D | _Listmodule.c | 715 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/ |
D | es2aTextureFilteringTests.cpp | 521 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/ |
D | es3aTextureFilteringTests.cpp | 530 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/ |
D | es31fStencilTexturingTests.cpp | 816 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()
|
D | es31fCopyImageTests.cpp | 263 …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 …]
|
D | es31fDrawTests.cpp | 1416 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()
|
D | es31fTextureSpecificationTests.cpp | 690 const int cellSize = rnd.getInt(2, 16); in createTexture() local 693 tcu::fillWithGrid(levelData.getAccess(), cellSize, colorA, colorB); in createTexture()
|
/external/tensorflow/tensorflow/lite/experimental/examples/unity/TensorFlowLitePlugin/Assets/TensorFlowLite/Examples/HelloTFLite/Scenes/ |
D | HelloTFLite.unity | 109 cellSize: 0.16666667
|
/external/sqlite/dist/orig/ |
D | sqlite3.c | 61742 static u16 cellSize(MemPage *pPage, int iCell){ 66879 assert( CORRUPT_DB || sz==cellSize(pPage, idx) );
|
/external/sqlite/dist/ |
D | sqlite3.c | 61758 static u16 cellSize(MemPage *pPage, int iCell){ 66895 assert( CORRUPT_DB || sz==cellSize(pPage, idx) );
|