Home
last modified time | relevance | path

Searched defs:matrix (Results 1 – 25 of 895) sorted by relevance

12345678910>>...36

/external/robolectric/integration_tests/nativegraphics/src/test/java/org/robolectric/shadows/
DShadowNativeMatrixTest.java23 final Matrix matrix = new Matrix(); in testIsIdentity() local
32 final Matrix matrix = new Matrix(); in testIsAffine() local
48 final Matrix matrix = new Matrix(); in testRectStaysRect() local
63 final Matrix matrix = new Matrix(); in testGetSetValues() local
88 final Matrix matrix = new Matrix(); in testReset() local
98 final Matrix matrix = new Matrix(); in testSetTranslate() local
137 final Matrix matrix = new Matrix(); in testSetScale() local
184 final Matrix matrix = new Matrix(); in testSetRotate() local
200 final Matrix matrix = new Matrix(); in testPostRotate() local
217 final Matrix matrix = new Matrix(); in testPreRotate() local
[all …]
/external/robolectric/robolectric/src/test/java/org/robolectric/shadows/
DShadowMatrixTest.java59 final Matrix matrix = new Matrix(); in set_shouldAddOpsToMatrix() local
72 final Matrix matrix = new Matrix(); in setScale_shouldAddOpsToMatrix() local
107 final Matrix matrix = new Matrix(); in testIsIdentity() local
116 final Matrix matrix = new Matrix(); in testIsAffine() local
132 final Matrix matrix = new Matrix(); in testRectStaysRect() local
147 final Matrix matrix = new Matrix(); in testGetSetValues() local
157 final Matrix matrix = new Matrix(); in testGetSetValues_withLargeArray() local
172 final Matrix matrix = new Matrix(); in testGetValues_withSmallArray() local
179 final Matrix matrix = new Matrix(); in testSetValues_withSmallArray() local
201 final Matrix matrix = new Matrix(); in testReset() local
[all …]
DShadowOpenGLMatrixTest.java318 float[] matrix = in testInvertM() local
387 float[] matrix = in testMultiplyMV() local
404 float[] matrix = in testSetIdentityM() local
424 float[] matrix = in testScaleM() local
445 float[] matrix = in testScaleMInPlace() local
465 float[] matrix = in testTranslateM() local
486 float[] matrix = in testTranslateMInPlace() local
506 float[] matrix = in testRotateM() local
539 float[] matrix = in testRotateMInPlace() local
571 float[] matrix = in testSetRotateM() local
/external/zxing/core/src/main/java/com/google/zxing/qrcode/encoder/
DMatrixUtil.java126 static void clearMatrix(ByteMatrix matrix) { in clearMatrix()
136 ByteMatrix matrix) throws WriterException { in buildMatrix()
153 static void embedBasicPatterns(Version version, ByteMatrix matrix) throws WriterException { in embedBasicPatterns()
166 static void embedTypeInfo(ErrorCorrectionLevel ecLevel, int maskPattern, ByteMatrix matrix) in embedTypeInfo()
199 static void maybeEmbedVersionInfo(Version version, ByteMatrix matrix) throws WriterException { in maybeEmbedVersionInfo()
223 static void embedDataBits(BitArray dataBits, int maskPattern, ByteMatrix matrix) in embedDataBits()
360 private static void embedTimingPatterns(ByteMatrix matrix) { in embedTimingPatterns()
377 private static void embedDarkDotAtLeftBottomCorner(ByteMatrix matrix) throws WriterException { in embedDarkDotAtLeftBottomCorner()
386 ByteMatrix matrix) throws WriterException { in embedHorizontalSeparationPattern()
397 ByteMatrix matrix) throws WriterException { in embedVerticalSeparationPattern()
[all …]
DMaskUtil.java40 static int applyMaskPenaltyRule1(ByteMatrix matrix) { in applyMaskPenaltyRule1()
49 static int applyMaskPenaltyRule2(ByteMatrix matrix) { in applyMaskPenaltyRule2()
71 static int applyMaskPenaltyRule3(ByteMatrix matrix) { in applyMaskPenaltyRule3()
134 static int applyMaskPenaltyRule4(ByteMatrix matrix) { in applyMaskPenaltyRule4()
197 private static int applyMaskPenaltyRule1Internal(ByteMatrix matrix, boolean isHorizontal) { in applyMaskPenaltyRule1Internal()
/external/zxing/core/src/test/java/com/google/zxing/common/
DBitMatrixTestCase.java34 BitMatrix matrix = new BitMatrix(33); in testGetSet() local
52 BitMatrix matrix = new BitMatrix(5); in testSetRegion() local
63 BitMatrix matrix = new BitMatrix(5); in testEnclosing() local
75 BitMatrix matrix = new BitMatrix(5); in testOnBit() local
91 BitMatrix matrix = new BitMatrix(75, 20); in testRectangularMatrix() local
118 BitMatrix matrix = new BitMatrix(320, 240); in testRectangularSetRegion() local
133 BitMatrix matrix = new BitMatrix(102, 5); in testGetRow() local
164 BitMatrix matrix = new BitMatrix(3, 3); in testRotate90Simple() local
180 BitMatrix matrix = new BitMatrix(3, 3); in testRotate180Simple() local
252 BitMatrix matrix = emptyMatrix.clone(); in testUnset() local
[all …]
/external/zxing/core/src/test/java/com/google/zxing/qrcode/encoder/
DMatrixUtilTestCase.java50 ByteMatrix matrix = new ByteMatrix(2, 2); in testClearMatrix() local
61 ByteMatrix matrix = new ByteMatrix(21, 21); in testEmbedBasicPatterns1() local
93 ByteMatrix matrix = new ByteMatrix(25, 25); in testEmbedBasicPatterns2() local
128 ByteMatrix matrix = new ByteMatrix(21, 21); in testEmbedTypeInfo() local
161 ByteMatrix matrix = new ByteMatrix(21, 21); in testEmbedVersionInfo() local
192 ByteMatrix matrix = new ByteMatrix(21, 21); in testEmbedDataBits() local
232 ByteMatrix matrix = new ByteMatrix(21, 21); in testBuildMatrix() local
DMaskUtilTestCase.java30 ByteMatrix matrix = new ByteMatrix(4, 1); in testApplyMaskPenaltyRule1() local
62 ByteMatrix matrix = new ByteMatrix(1, 1); in testApplyMaskPenaltyRule2() local
94 ByteMatrix matrix = new ByteMatrix(11, 1); in testApplyMaskPenaltyRule3() local
173 ByteMatrix matrix = new ByteMatrix(1, 1); in testApplyMaskPenaltyRule4() local
/external/zxing/javase/src/main/java/com/google/zxing/client/j2se/
DMatrixToImageWriter.java49 public static BufferedImage toBufferedImage(BitMatrix matrix) { in toBufferedImage()
60 public static BufferedImage toBufferedImage(BitMatrix matrix, MatrixToImageConfig config) { in toBufferedImage()
86 public static void writeToFile(BitMatrix matrix, String format, File file) throws IOException { in writeToFile()
99 public static void writeToPath(BitMatrix matrix, String format, Path file) throws IOException { in writeToPath()
112 …public static void writeToFile(BitMatrix matrix, String format, File file, MatrixToImageConfig con… in writeToFile()
126 …public static void writeToPath(BitMatrix matrix, String format, Path file, MatrixToImageConfig con… in writeToPath()
143 …public static void writeToStream(BitMatrix matrix, String format, OutputStream stream) throws IOEx… in writeToStream()
156 …public static void writeToStream(BitMatrix matrix, String format, OutputStream stream, MatrixToIma… in writeToStream()
/external/mesa3d/src/mesa/program/
Dprog_statevars.c350 const GLmatrix *matrix = ctx->ModelviewMatrixStack.Top; in fetch_state() local
355 const GLmatrix *matrix = ctx->ModelviewMatrixStack.Top; in fetch_state() local
360 const GLmatrix *matrix = ctx->ModelviewMatrixStack.Top; in fetch_state() local
365 const GLmatrix *matrix = ctx->ModelviewMatrixStack.Top; in fetch_state() local
370 const GLmatrix *matrix = ctx->ProjectionMatrixStack.Top; in fetch_state() local
375 GLmatrix *matrix = ctx->ProjectionMatrixStack.Top; in fetch_state() local
381 const GLmatrix *matrix = ctx->ProjectionMatrixStack.Top; in fetch_state() local
386 GLmatrix *matrix = ctx->ProjectionMatrixStack.Top; in fetch_state() local
392 const GLmatrix *matrix = &ctx->_ModelProjectMatrix; in fetch_state() local
397 GLmatrix *matrix = &ctx->_ModelProjectMatrix; in fetch_state() local
[all …]
/external/pdfium/xfa/fwl/theme/
Dcfwl_widgettp.cpp43 CFX_Matrix matrix = pParams.m_matrix; in DrawText() local
85 const CFX_Matrix& matrix) { in DrawBorder()
101 const CFX_Matrix& matrix) { in FillBackground()
108 const CFX_Matrix& matrix) { in FillSolidRect()
122 const CFX_Matrix& matrix) { in DrawFocus()
139 const CFX_Matrix& matrix) { in DrawArrow()
186 const CFX_Matrix& matrix) { in DrawBtn()
203 const CFX_Matrix& matrix) { in DrawArrowBtn()
Dcfwl_monthcalendartp.cpp104 const CFX_Matrix& matrix) { in DrawTotalBK()
116 const CFX_Matrix& matrix) { in DrawHeadBk()
128 const CFX_Matrix& matrix) { in DrawLButton()
163 const CFX_Matrix& matrix) { in DrawRButton()
198 const CFX_Matrix& matrix) { in DrawHSeparator()
210 const CFX_Matrix& matrix) { in DrawWeekNumSep()
222 const CFX_Matrix& matrix) { in DrawDatesInBK()
247 const CFX_Matrix& matrix) { in DrawDatesInCircle()
259 const CFX_Matrix& matrix) { in DrawTodayCircle()
/external/pdfium/fxbarcode/qrcode/
DBC_QRCoderMatrixUtil.cpp129 CBC_CommonByteMatrix* matrix) { in EmbedDataBits()
206 CBC_CommonByteMatrix* matrix) { in EmbedTypeInfo()
229 void MaybeEmbedVersionInfo(int32_t version, CBC_CommonByteMatrix* matrix) { in MaybeEmbedVersionInfo()
246 bool EmbedTimingPatterns(CBC_CommonByteMatrix* matrix) { in EmbedTimingPatterns()
264 bool EmbedDarkDotAtLeftBottomCorner(CBC_CommonByteMatrix* matrix) { in EmbedDarkDotAtLeftBottomCorner()
274 CBC_CommonByteMatrix* matrix) { in EmbedHorizontalSeparationPattern()
286 CBC_CommonByteMatrix* matrix) { in EmbedVerticalSeparationPattern()
298 CBC_CommonByteMatrix* matrix) { in EmbedPositionAdjustmentPattern()
313 CBC_CommonByteMatrix* matrix) { in EmbedPositionDetectionPattern()
325 bool EmbedPositionDetectionPatternsAndSeparators(CBC_CommonByteMatrix* matrix) { in EmbedPositionDetectionPatternsAndSeparators()
[all …]
DBC_QRCoderMaskUtil.cpp33 int32_t ApplyMaskPenaltyRule1Internal(CBC_CommonByteMatrix* matrix, in ApplyMaskPenaltyRule1Internal()
67 CBC_CommonByteMatrix* matrix) { in ApplyMaskPenaltyRule1()
74 CBC_CommonByteMatrix* matrix) { in ApplyMaskPenaltyRule2()
94 CBC_CommonByteMatrix* matrix) { in ApplyMaskPenaltyRule3()
146 CBC_CommonByteMatrix* matrix) { in ApplyMaskPenaltyRule4()
/external/bazelbuild-rules_rust/examples/ffi/rust_calling_c/c/
Dmatrix.c24 Matrix* matrix = (Matrix*)malloc(sizeof(*matrix)); in matrix_new() local
35 int matrix_at(const Matrix* matrix, size_t row, size_t col, uint64_t* n) { in matrix_at()
46 int matrix_set(const Matrix* matrix, size_t row, size_t col, uint64_t n) { in matrix_set()
57 void matrix_transpose(Matrix* matrix) { in matrix_transpose()
115 void matrix_free(Matrix* matrix) { in matrix_free()
/external/webrtc/audio/utility/
Dchannel_mixing_matrix_unittest.cc56 std::vector<std::vector<float>> matrix; in TEST() local
92 std::vector<std::vector<float>> matrix; in TEST() local
112 std::vector<std::vector<float>> matrix; in TEST() local
136 std::vector<std::vector<float>> matrix; in TEST() local
159 std::vector<std::vector<float>> matrix; in TEST() local
185 std::vector<std::vector<float>> matrix; in TEST() local
215 std::vector<std::vector<float>> matrix; in TEST() local
247 std::vector<std::vector<float>> matrix; in TEST() local
279 std::vector<std::vector<float>> matrix; in TEST() local
310 std::vector<std::vector<float>> matrix; in TEST() local
[all …]
/external/zxing/core/src/test/java/com/google/zxing/aztec/decoder/
DDecoderTest.java68 BitMatrix matrix = BitMatrix.parse( in testAztecResult() local
106 BitMatrix matrix = BitMatrix.parse( in testAztecResultECI() local
134 BitMatrix matrix = BitMatrix.parse("" in testDecodeTooManyErrors() local
169 BitMatrix matrix = BitMatrix.parse("" in testDecodeTooManyErrors2() local
/external/pdfium/core/fpdfapi/page/
Dcpdf_formobject.cpp15 const CFX_Matrix& matrix) in CPDF_FormObject()
22 void CPDF_FormObject::Transform(const CFX_Matrix& matrix) { in Transform()
48 void CPDF_FormObject::SetFormMatrix(const CFX_Matrix& matrix) { in SetFormMatrix()
/external/libtextclassifier/native/lang_id/common/
Dembedding-network-params.h102 Matrix matrix; in GetEmbeddingMatrix() local
117 Matrix matrix; in GetHiddenLayerMatrix() local
133 Matrix matrix; in GetHiddenLayerBias() local
154 Matrix matrix; in GetSoftmaxMatrix() local
169 Matrix matrix; in GetSoftmaxBias() local
/external/pdfium/xfa/fxfa/parser/
Dcxfa_fill.cpp98 const CFX_Matrix& matrix) { in Draw()
124 const CFX_Matrix& matrix) { in DrawStipple()
134 const CFX_Matrix& matrix) { in DrawRadial()
144 const CFX_Matrix& matrix) { in DrawLinear()
154 const CFX_Matrix& matrix) { in DrawPattern()
/external/libtextclassifier/native/lang_id/common/flatbuffers/
Dembedding-network-params-from-flatbuffer.h63 const saft_fbs::Matrix *matrix = SafeGetEmbeddingMatrix(i); in embeddings_num_rows() local
68 const saft_fbs::Matrix *matrix = SafeGetEmbeddingMatrix(i); in embeddings_num_cols() local
73 const saft_fbs::Matrix *matrix = SafeGetEmbeddingMatrix(i); in embeddings_weights() local
78 const saft_fbs::Matrix *matrix = SafeGetEmbeddingMatrix(i); in embeddings_quant_type() local
83 const saft_fbs::Matrix *matrix = SafeGetEmbeddingMatrix(i); in embeddings_quant_scales() local
222 static int SafeGetNumRows(const saft_fbs::Matrix *matrix) { in SafeGetNumRows()
226 static int SafeGetNumCols(const saft_fbs::Matrix *matrix) { in SafeGetNumCols()
/external/libchrome/ui/gfx/geometry/
Dmatrix3_unittest.cc33 Matrix3F matrix = Matrix3F::Ones(); in TEST() local
56 Matrix3F matrix = Matrix3F::Zeros(); in TEST() local
94 Matrix3F matrix = Matrix3F::Zeros(); in TEST() local
116 Matrix3F matrix = Matrix3F::Zeros(); in TEST() local
132 Matrix3F matrix = Matrix3F::Zeros(); in TEST() local
149 Matrix3F matrix = Matrix3F::Zeros(); in TEST() local
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/correlation/
DCovariance.java114 public Covariance(RealMatrix matrix, boolean biasCorrected) { in Covariance()
130 public Covariance(RealMatrix matrix) { in Covariance()
160 protected RealMatrix computeCovarianceMatrix(RealMatrix matrix, boolean biasCorrected) { in computeCovarianceMatrix()
182 protected RealMatrix computeCovarianceMatrix(RealMatrix matrix) { in computeCovarianceMatrix()
265 private void checkSufficientData(final RealMatrix matrix) { in checkSufficientData()
/external/apache-commons-math/src/main/java/org/apache/commons/math3/stat/correlation/
DCovariance.java120 public Covariance(RealMatrix matrix, boolean biasCorrected) in Covariance()
137 public Covariance(RealMatrix matrix) throws MathIllegalArgumentException { in Covariance()
167 protected RealMatrix computeCovarianceMatrix(RealMatrix matrix, boolean biasCorrected) in computeCovarianceMatrix()
191 protected RealMatrix computeCovarianceMatrix(RealMatrix matrix) in computeCovarianceMatrix()
286 private void checkSufficientData(final RealMatrix matrix) throws MathIllegalArgumentException { in checkSufficientData()
/external/zxing/core/src/test/java/com/google/zxing/datamatrix/
DDataMatrixWriterTestCase.java43 …BitMatrix matrix = writer.encode("Hello Google", BarcodeFormat.DATA_MATRIX, bigEnough, bigEnough, … in testDataMatrixImageWriter() local
57 …BitMatrix matrix = writer.encode("Hello Me", BarcodeFormat.DATA_MATRIX, bigEnough, bigEnough, hint… in testDataMatrixWriter() local
68 …BitMatrix matrix = writer.encode("http://www.google.com/", BarcodeFormat.DATA_MATRIX, tooSmall, to… in testDataMatrixTooSmall() local

12345678910>>...36