OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:mRow
(Results
1 - 6
of
6
) sorted by null
/external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
Array2DRowFieldMatrix.java
193
final T[]
mRow
= m.data[row];
196
outDataRow[col] = dataRow[col].add(
mRow
[col]);
233
final T[]
mRow
= m.data[row];
236
outDataRow[col] = dataRow[col].subtract(
mRow
[col]);
Array2DRowRealMatrix.java
201
final double[]
mRow
= m.data[row];
204
outDataRow[col] = dataRow[col] +
mRow
[col];
241
final double[]
mRow
= m.data[row];
244
outDataRow[col] = dataRow[col] -
mRow
[col];
RealMatrixImpl.java
202
final double[]
mRow
= m.data[row];
205
outDataRow[col] = dataRow[col] +
mRow
[col];
242
final double[]
mRow
= m.data[row];
245
outDataRow[col] = dataRow[col] -
mRow
[col];
BigMatrixImpl.java
311
final BigDecimal[]
mRow
= m.data[row];
314
outDataRow[col] = dataRow[col].add(
mRow
[col]);
366
final BigDecimal[]
mRow
= m.data[row];
369
outDataRow[col] = dataRow[col].subtract(
mRow
[col]);
[
all
...]
/external/deqp/framework/opengl/
gluTextureTestUtil.cpp
[
all
...]
/external/deqp/external/vulkancts/modules/vulkan/shaderrender/
vktShaderRenderTextureGatherTests.cpp
123
int
mRow
= 0;
130
case tcu::CUBEFACE_NEGATIVE_X:
mRow
= 0; sRow = 2; tRow = 1; mSign = -1.0f; tSign = -1.0f; break;
131
case tcu::CUBEFACE_POSITIVE_X:
mRow
= 0; sRow = 2; tRow = 1; sSign = -1.0f; tSign = -1.0f; break;
132
case tcu::CUBEFACE_NEGATIVE_Y:
mRow
= 1; sRow = 0; tRow = 2; mSign = -1.0f; tSign = -1.0f; break;
133
case tcu::CUBEFACE_POSITIVE_Y:
mRow
= 1; sRow = 0; tRow = 2; break;
134
case tcu::CUBEFACE_NEGATIVE_Z:
mRow
= 2; sRow = 0; tRow = 1; mSign = -1.0f; sSign = -1.0f; tSign = -1.0f; break;
135
case tcu::CUBEFACE_POSITIVE_Z:
mRow
= 2; sRow = 0; tRow = 1; tSign = -1.0f; break;
143
dst[0+
mRow
] = mSign;
144
dst[3+
mRow
] = mSign;
145
dst[6+
mRow
] = mSign
[
all
...]
Completed in 256 milliseconds