/frameworks/rs/ |
rsRuntime.h | 178 void rsrMatrixSet(rs_matrix4x4 *m, uint32_t row, uint32_t col, float v); 179 float rsrMatrixGet(const rs_matrix4x4 *m, uint32_t row, uint32_t col); 180 void rsrMatrixSet(rs_matrix3x3 *m, uint32_t row, uint32_t col, float v); 181 float rsrMatrixGet(const rs_matrix3x3 *m, uint32_t row, uint32_t col); 182 void rsrMatrixSet(rs_matrix2x2 *m, uint32_t row, uint32_t col, float v); 183 float rsrMatrixGet(const rs_matrix2x2 *m, uint32_t row, uint32_t col);
|
/hardware/interfaces/automotive/evs/1.0/default/ |
EvsCamera.cpp | 493 for (unsigned col = 0; col < buff.width; col++) { 502 ((col & 0xFF) << 16); // horizontal gradient 503 if ((row | col) == 0) { 508 pixels[col] = expectedPixel;
|
/libcore/luni/src/test/java/tests/security/cert/ |
CertificateFactorySpiTest.java | 85 Collection<? extends Certificate> col = certFactorySpi.engineGenerateCertificates(bais); local 86 assertNull("Not null Collection", col); 151 Collection<? extends Certificate> col = certFactorySpi local 153 assertNull("Result must be null", col); 221 Collection<? extends Certificate> col = certFactorySpi local 223 assertNull("Result must be null", col);
|
/packages/apps/Gallery2/src/com/android/gallery3d/glrenderer/ |
NinePatchTexture.java | 365 for (int col = start; col != end; col += inc) { 366 int k = row * nx + col; 367 if (col != start) { 368 int colorIdx = row * (nx - 1) + col;
|
/prebuilts/misc/windows/sdl2/test/ |
testautomation_mouse.c | 160 int i, row, col; local 166 for ( col=0; col<32; ++col ) { 167 if ( col % 8 ) { 174 switch (image[row][col]) {
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/ |
cmd.py | 373 for col in range(ncols):
376 i = row + nrows*col
393 for col in range(ncols):
394 i = row + nrows*col
402 for col in range(len(texts)):
403 texts[col] = texts[col].ljust(colwidths[col])
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/linear/ |
SimplexTableau.java | 282 * @param col index of the column to check 285 protected Integer getBasicRow(final int col) { 288 if (MathUtils.equals(getEntry(i, col), 1.0, epsilon) && (row == null)) { 290 } else if (!MathUtils.equals(getEntry(i, col), 0.0, epsilon)) { 318 int col = i + getArtificialVariableOffset(); local 319 if (getBasicRow(col) == null) { 320 columnsToDrop.add(col); 326 int col = 0; local 329 matrix[i - 1][col++] = tableau.getEntry(i, j);
|
/external/eigen/Eigen/src/Householder/ |
Householder.h | 164 tmp += this->col(0); 165 this->col(0) -= tau * tmp;
|
/external/eigen/doc/examples/ |
nullary_indexing.cpp | 24 const typename ArgType::Scalar& operator() (Index row, Index col) const { 25 return m_arg(m_rowIndices[row], m_colIndices[col]);
|
/external/eigen/test/ |
bandmatrix.cpp | 45 m.col(i).setConstant(static_cast<RealScalar>(i+1)); 46 dm1.col(i).setConstant(static_cast<RealScalar>(i+1));
|
determinant.cpp | 39 m2.col(i).swap(m2.col(j));
|
product_notemporary.cpp | 83 VERIFY_EVALUATION_COUNT( rm3.col(c0).noalias() = (s1 * m1.adjoint()).template triangularView<UnitUpper>() * (s2*m2.row(c0)).adjoint(), 1); 93 VERIFY_EVALUATION_COUNT( m3.col(c0).noalias() = (s1 * m1).adjoint().template selfadjointView<Lower>() * (-m2.row(c0)*s3).adjoint(), 1); 94 VERIFY_EVALUATION_COUNT( m3.col(c0).noalias() -= (s1 * m1).adjoint().template selfadjointView<Upper>() * (-m2.row(c0)*s3).adjoint(), 1); 115 VERIFY_EVALUATION_COUNT( m3.col(0).template head<5>() * m3.col(0).transpose() + m3.col(0).template head<5>() * m3.col(0).transpose(), 0 ); 120 VERIFY_EVALUATION_COUNT( cvres.noalias() -= m1 * m2.col(0), 0 );
|
real_qz.cpp | 36 A.col(k).setZero(); break; 40 B.col(k).setZero(); break;
|
/external/eigen/unsupported/Eigen/src/NumericalDiff/ |
NumericalDiff.h | 104 jac.col(j) = (val2-val1)/h; 112 jac.col(j) = (val2-val1)/(2*h);
|
/external/libvpx/libvpx/vp8/common/ |
debugmodes.c | 102 mi[mb_index].mbmi.mv.as_mv.col / 2); 126 mi[mb_index].bmi[bindex].mv.as_mv.col);
|
/external/pdfium/third_party/libjpeg/ |
fpdfapi_jdmerge.c | 234 JDIMENSION col; local 248 for (col = cinfo->output_width >> 1; col > 0; col--) { 296 JDIMENSION col; local 312 for (col = cinfo->output_width >> 1; col > 0; col--) {
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/util/leak/ |
LeakDetector.java | 113 mTrackedCollections.dump(pw, (col) -> !TrackedObjects.isTrackedObject(col));
|
/frameworks/native/opengl/tests/hwc/ |
hwcStress.cpp | 592 for (unsigned int col = 0; col < cols; col++) { 596 frames[row][col] = new GraphicBuffer(w, h, format, texUsage); 597 if ((rv = frames[row][col]->initCheck()) != NO_ERROR) { 604 hwcTestFillColor(frames[row][col].get(), color, alpha); 607 frames[row][col].get(), frames[row][col]->handle,
|
/packages/apps/Calendar/src/com/android/calendar/ |
EventGeometry.java | 76 int col = event.getColumn(); local 101 event.left = left + col * (colWidth + mCellMargin);
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/include/isl/ |
stream.h | 45 int col; member in struct:isl_token 62 int col; member in struct:isl_stream
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/include/isl/ |
stream.h | 45 int col; member in struct:isl_token 62 int col; member in struct:isl_stream
|
/prebuilts/gdb/darwin-x86/lib/python2.7/ |
cmd.py | 373 for col in range(ncols): 376 i = row + nrows*col 393 for col in range(ncols): 394 i = row + nrows*col 402 for col in range(len(texts)): 403 texts[col] = texts[col].ljust(colwidths[col])
|
/prebuilts/gdb/linux-x86/lib/python2.7/ |
cmd.py | 373 for col in range(ncols): 376 i = row + nrows*col 393 for col in range(ncols): 394 i = row + nrows*col 402 for col in range(len(texts)): 403 texts[col] = texts[col].ljust(colwidths[col])
|
/prebuilts/ndk/r13/sources/third_party/shaderc/third_party/glslang/glslang/MachineIndependent/ |
parseVersions.h | 103 void setCurrentColumn(int col) { currentScanner->setColumn(col); }
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
cmd.py | 373 for col in range(ncols): 376 i = row + nrows*col 393 for col in range(ncols): 394 i = row + nrows*col 402 for col in range(len(texts)): 403 texts[col] = texts[col].ljust(colwidths[col])
|