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

  /packages/inputmethods/LatinIME/tools/dicttool/compat/com/android/inputmethod/keyboard/
ProximityInfo.java 22 int gridWidth, int gridHeight, int mostCommonKeyWidth, int mostCommonKeyHeight,
  /packages/inputmethods/LatinIME/native/jni/
com_android_inputmethod_keyboard_ProximityInfo.cpp 29 jint displayWidth, jint displayHeight, jint gridWidth, jint gridHeight,
35 gridWidth, gridHeight, mostCommonkeyWidth, mostCommonkeyHeight, proximityChars,
  /external/deqp/framework/randomshaders/
rsgProgramExecutor.hpp 45 ProgramExecutor (const tcu::PixelBufferAccess& dst, int gridWidth, int gridHeight);
rsgProgramExecutor.cpp 167 ProgramExecutor::ProgramExecutor (const tcu::PixelBufferAccess& dst, int gridWidth, int gridHeight)
170 , m_gridHeight (gridHeight)
  /cts/apps/CtsVerifier/jni/verifier/
com_android_cts_verifier_camera_StatsImage.cpp 36 jint gridWidth, jint gridHeight)
46 const int gh = gridHeight;
  /packages/inputmethods/LatinIME/native/jni/src/suggest/core/layout/
proximity_info.cpp 53 const int gridWidth, const int gridHeight, const int mostCommonKeyWidth,
59 : GRID_WIDTH(gridWidth), GRID_HEIGHT(gridHeight), MOST_COMMON_KEY_WIDTH(mostCommonKeyWidth),
65 CELL_HEIGHT((keyboardHeight + gridHeight - 1) / gridHeight),
proximity_info.h 32 const int gridWidth, const int gridHeight,
  /external/deqp/modules/gles3/functional/
es3fFragmentOutputTests.cpp 397 static void renderFloatReference (const tcu::PixelBufferAccess& dst, int gridWidth, int gridHeight, int numComponents, const float* vertices)
401 const float cellH = (float)dst.getHeight() / (float)(gridHeight-1);
408 const int cellY = de::clamp(deFloorFloatToInt32((float)y / cellH), 0, gridHeight-2);
428 static void renderIntReference (const tcu::PixelBufferAccess& dst, int gridWidth, int gridHeight, int numComponents, const int* vertices)
431 float cellH = (float)dst.getHeight() / (float)(gridHeight-1);
438 int cellY = de::clamp(deFloorFloatToInt32((float)y / cellH), 0, gridHeight-2);
554 const int gridHeight = de::clamp(minBufSize.y()/minCellSize, 1, 255)+1;
555 const int numVertices = gridWidth*gridHeight;
556 const int numQuads = (gridWidth-1)*(gridHeight-1);
608 for (int y = 0; y < gridHeight; y++
    [all...]
es3fTextureMipmapTests.cpp 316 int gridHeight = 4;
318 int cellHeight = viewport.height / gridHeight;
355 for (int gridY = 0; gridY < gridHeight; gridY++)
362 const int curH = gridY+1 == gridHeight ? (viewport.height-curY) : cellHeight;
407 for (int gridY = 0; gridY < gridHeight; gridY++)
414 const int curH = gridY+1 == gridHeight ? (viewport.height-curY) : cellHeight;
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/tessellation/
vktTessellationCommonEdgeTests.cpp 259 const int gridHeight = 4;
260 const int numVertices = (gridWidth+1)*(gridHeight+1);
261 const int numIndices = gridWidth*gridHeight * (caseDef.primitiveType == TESSPRIMITIVETYPE_TRIANGLES ? 3*2 : 4);
270 for (int i = 0; i < gridHeight+1; ++i)
274 gridPosComps.push_back(-1.0f + 2.0f * ((float)i + 0.5f) / (float)(gridHeight+1));
285 for (int i = 0; i < gridHeight; i++)
306 for (int i = 0; i < gridHeight; ++i)
  /external/deqp/external/vulkancts/modules/vulkan/texture/
vktTextureMipmapTests.cpp 276 const int gridHeight = 4;
278 const int cellHeight = viewportHeight / gridHeight;
299 for (int gridY = 0; gridY < gridHeight; gridY++)
306 const int curH = gridY+1 == gridHeight ? (viewportHeight-curY) : cellHeight;
348 for (int gridY = 0; gridY < gridHeight; gridY++)
355 const int curH = gridY+1 == gridHeight ? (viewportHeight-curY) : cellHeight;
781 const int gridHeight = 4;
783 const int cellHeight = viewportHeight / gridHeight;
811 for (int gridY = 0; gridY < gridHeight; gridY++)
818 const int curH = gridY+1 == gridHeight ? (viewportHeight-curY) : cellHeight
    [all...]
  /frameworks/av/media/libstagefright/
StagefrightMetadataRetriever.cpp 279 int32_t gridWidth, gridHeight;
281 && trackMeta->findInt32(kKeyGridHeight, &gridHeight) && gridHeight > 0) {
289 && (width % gridWidth == 0) && (height % gridHeight == 0)) {
291 width, height, displayWidth, displayHeight, gridWidth, gridHeight);
297 overrideMeta->setInt32(kKeyHeight, gridHeight);
299 gridRows = height / gridHeight;
302 width, height, displayWidth, displayHeight, gridWidth, gridHeight);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
ProximityInfo.java 61 ProximityInfo(final int gridWidth, final int gridHeight, final int minWidth, final int height,
66 mGridHeight = gridHeight;
91 int gridWidth, int gridHeight, int mostCommonKeyWidth, int mostCommonKeyHeight,
  /external/deqp/modules/gles2/accuracy/
es2aTextureMipmapTests.cpp 276 int gridHeight = 4;
278 int cellHeight = viewport.height / gridHeight;
319 for (int gridY = 0; gridY < gridHeight; gridY++)
326 int curH = gridY+1 == gridHeight ? (viewport.height-curY) : cellHeight;
  /external/deqp/modules/gles3/accuracy/
es3aTextureMipmapTests.cpp 268 int gridHeight = 4;
270 int cellHeight = viewport.height / gridHeight;
311 for (int gridY = 0; gridY < gridHeight; gridY++)
318 int curH = gridY+1 == gridHeight ? (viewport.height-curY) : cellHeight;
  /external/deqp/modules/gles2/functional/
es2fTextureMipmapTests.cpp 272 int gridHeight = 4;
274 int cellHeight = viewport.height / gridHeight;
311 for (int gridY = 0; gridY < gridHeight; gridY++)
318 const int curH = gridY+1 == gridHeight ? (viewport.height-curY) : cellHeight;
363 for (int gridY = 0; gridY < gridHeight; gridY++)
370 const int curH = gridY+1 == gridHeight ? (viewport.height-curY) : cellHeight;
    [all...]
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
Keyboard.java 707 final int gridHeight = GRID_HEIGHT * mCellHeight;
709 for (int y = 0; y < gridHeight; y += mCellHeight) {
  /prebuilts/tools/common/bazel/formc-deps/
jgoodies-forms.jar 
  /cts/apps/CameraITS/pymodules/its/
device.py 587 "gridWidth" and "gridHeight" which are size of grid cells in a 2D grid
590 images of dimensions (rawWidth / gridWidth, rawHeight / gridHeight),
598 image width is used as the default, and similarly for gridHeight. With
603 "gridHeight": 1,
    [all...]
  /frameworks/base/core/java/android/inputmethodservice/
Keyboard.java 744 final int gridHeight = GRID_HEIGHT * mCellHeight;
746 for (int y = 0; y < gridHeight; y += mCellHeight) {
    [all...]
  /external/deqp/modules/gles3/performance/
es3pBufferDataUploadTests.cpp     [all...]
  /external/deqp/modules/gles31/functional/
es31fTessellationTests.cpp     [all...]

Completed in 959 milliseconds