OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:GRID_SIZE
(Results
1 - 10
of
10
) sorted by null
/external/opencv3/samples/android/15-puzzle/src/org/opencv/samples/puzzle15/
Puzzle15Processor.java
20
private static final int
GRID_SIZE
= 4;
21
private static final int GRID_AREA =
GRID_SIZE
*
GRID_SIZE
;
59
for (int i = 0; i <
GRID_SIZE
; i++) {
60
for (int j = 0; j <
GRID_SIZE
; j++) {
61
int k = i *
GRID_SIZE
+ j;
62
mCells15[k] = mRgba15.submat(i * height /
GRID_SIZE
, (i + 1) * height /
GRID_SIZE
, j * width /
GRID_SIZE
, (j + 1) * width /
GRID_SIZE
);
[
all
...]
/external/deqp/modules/gles31/functional/
es31fVertexAttributeBindingTests.cpp
247
GRID_SIZE
= 20
285
<< "Rendering " << (int)
GRID_SIZE
<< "x" << (int)
GRID_SIZE
<< " grid.\n"
350
gl.glDrawArrays(GL_TRIANGLES, 0,
GRID_SIZE
*
GRID_SIZE
*6);
363
gl.glDrawArrays(GL_TRIANGLES, 0,
GRID_SIZE
*
GRID_SIZE
*6);
447
std::vector<deUint8> dataBuf (m_spec.bufferOffset + m_spec.bufferStride *
GRID_SIZE
*
GRID_SIZE
* 6);
453
for (int y = 0; y <
GRID_SIZE
; ++y
[
all
...]
/external/deqp/modules/gles31/stress/
es31sVertexAttributeBindingTests.cpp
241
GRID_SIZE
= 20
279
<< "Rendering " << (int)
GRID_SIZE
<< "x" << (int)
GRID_SIZE
<< " grid.\n"
344
gl.glDrawArrays(GL_TRIANGLES, 0,
GRID_SIZE
*
GRID_SIZE
*6);
357
gl.glDrawArrays(GL_TRIANGLES, 0,
GRID_SIZE
*
GRID_SIZE
*6);
441
std::vector<deUint8> dataBuf (m_spec.bufferOffset + m_spec.bufferStride *
GRID_SIZE
*
GRID_SIZE
* 6);
447
for (int y = 0; y <
GRID_SIZE
; ++y
[
all
...]
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/grid/
GridDropHandler.java
25
import static com.android.ide.common.layout.GridLayoutRule.
GRID_SIZE
;
131
x1 = ((x1 - MARGIN_SIZE - bounds.x) /
GRID_SIZE
) *
GRID_SIZE
133
y1 = ((y1 - MARGIN_SIZE - bounds.y) /
GRID_SIZE
) *
GRID_SIZE
[
all
...]
GridLayoutPainter.java
18
import static com.android.ide.common.layout.GridLayoutRule.
GRID_SIZE
;
76
* Paints a regular grid according to the {@link GridLayoutRule#
GRID_SIZE
} and
92
for (int y = y1; y < y2; y +=
GRID_SIZE
) {
95
for (int x = x1; x < x2; x +=
GRID_SIZE
) {
/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
Keyboard.java
155
private static final int
GRID_SIZE
= GRID_WIDTH * GRID_HEIGHT;
704
mGridNeighbors = new int[
GRID_SIZE
][];
740
if (index <
GRID_SIZE
) {
/frameworks/base/core/java/android/inputmethodservice/
Keyboard.java
140
private static final int
GRID_SIZE
= GRID_WIDTH * GRID_HEIGHT;
741
mGridNeighbors = new int[
GRID_SIZE
][];
776
if (index <
GRID_SIZE
) {
[
all
...]
/external/deqp/modules/glshared/
glsShaderRenderCase.cpp
62
static const int
GRID_SIZE
= 64;
436
QuadGrid quadGrid(m_isVertexCase ?
GRID_SIZE
: 4, width, height, Vec4(0.125f, 0.25f, 0.5f, 1.0f), m_userAttribTransforms, m_textures);
/external/deqp/external/vulkancts/modules/vulkan/shaderrender/
vktShaderRender.cpp
61
static const int
GRID_SIZE
= 2;
488
QuadGrid quadGrid (m_isVertexCase ?
GRID_SIZE
: 4, width, height, tcu::Vec4(0.125f, 0.25f, 0.5f, 1.0f), m_userAttribTransforms, m_textures);
[
all
...]
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/
GridLayoutRule.java
86
public static final int
GRID_SIZE
= 16;
Completed in 197 milliseconds