Home
last modified time | relevance | path

Searched refs:colIndex (Results 1 – 12 of 12) sorted by relevance

/external/javasqlite/src/main/java/SQLite/JDBC2z/
DJDBCResultSet.java1001 public void updateNull(int colIndex) throws SQLException {
1003 if (tr == null || colIndex < 1 || colIndex > tr.ncolumns) {
1004 throw new SQLException("column " + colIndex + " not found");
1007 rowbuf[colIndex - 1] = null;
1010 public void updateBoolean(int colIndex, boolean b) throws SQLException {
1011 updateString(colIndex, b ? "1" : "0");
1014 public void updateByte(int colIndex, byte b) throws SQLException {
1018 public void updateShort(int colIndex, short b) throws SQLException {
1020 if (tr == null || colIndex < 1 || colIndex > tr.ncolumns) {
1021 throw new SQLException("column " + colIndex + " not found");
[all …]
/external/dng_sdk/source/
Ddng_gain_map.cpp87 real32 InterpolateEntry (uint32 colIndex);
177 real32 dng_gain_map_interpolator::InterpolateEntry (uint32 colIndex) in InterpolateEntry() argument
180 return fMap.Entry (fRowIndex1, colIndex, fPlane) * (1.0f - fRowFract) + in InterpolateEntry()
181 fMap.Entry (fRowIndex2, colIndex, fPlane) * ( fRowFract); in InterpolateEntry()
231 uint32 colIndex = static_cast<uint32> (colIndexF); in ResetColumn() local
232 real64 base = InterpolateEntry (colIndex); in ResetColumn()
233 real64 delta = InterpolateEntry (colIndex + 1) - base; in ResetColumn()
235 fValueBase = (real32) (base + delta * (colIndexF - (real64) colIndex)); in ResetColumn()
239 fResetColumn = (int32) ceil (((colIndex + 1) * fMap.Spacing ().h + in ResetColumn()
320 for (int32 colIndex = 0; colIndex < fPoints.h; colIndex++) in PutStream() local
[all …]
Ddng_gain_map.h94 uint32 colIndex, in Entry() argument
100 colIndex * fPlanes + in Entry()
109 uint32 colIndex, in Entry() argument
115 colIndex * fPlanes + in Entry()
Ddng_jpeg_image.cpp130 uint32 colIndex = tileIndex % tilesAcross; in Process() local
132 dng_rect tileArea = fIFD.TileArea (rowIndex, colIndex); in Process()
Ddng_ifd.h269 uint32 colIndex) const;
Ddng_read_image.cpp2878 uint32 colIndex = tileIndex - (plane * fTilesDown + rowIndex) * fTilesAcross; in Process() local
2880 dng_rect tileArea = fIFD.TileArea (rowIndex, colIndex); in Process()
3278 for (uint32 colIndex = 0; colIndex < tilesAcross; colIndex++) in Read() local
3283 dng_rect tileArea = ifd.TileArea (rowIndex, colIndex); in Read()
Ddng_image_writer.cpp4438 uint32 colIndex = tileIndex - rowIndex * fTilesAcross; in Process() local
4440 dng_rect tileArea = fIFD.TileArea (rowIndex, colIndex); in Process()
4704 for (uint32 colIndex = 0; colIndex < tilesAcross; colIndex++) in WriteImage() local
4715 dng_rect tileArea = ifd.TileArea (rowIndex, colIndex); in WriteImage()
Ddng_ifd.cpp4027 uint32 colIndex) const in TileArea()
4035 r.l = colIndex * fTileWidth; in TileArea()
Ddng_negative.cpp1698 int32 colIndex = (tile.l - fImage.Bounds ().l) / fUnitCell.h; in Process() local
1701 DNG_ASSERT (tile.l == fImage.Bounds ().l + colIndex * fUnitCell.h && in Process()
1705 uint32 tileIndex = rowIndex * fTilesAcross + colIndex; in Process()
/external/eigen/unsupported/Eigen/CXX11/src/Tensor/
DTensorVolumePatch.h367 const Index colIndex = patch3DIndex / m_fastOutputPlanesRows;
369 … const Index inputCol = colIndex * m_col_strides + colOffset * m_in_col_strides - m_colPaddingLeft;
377 const Index rowIndex = (patch3DIndex - colIndex * m_outputPlanesRows) / m_fastOutputPlanes;
387 const Index planeIndex = (patch3DIndex - m_outputPlanes * (colIndex * m_outputRows + rowIndex));
434 const Index colIndex = patch3DIndex / m_fastOutputPlanesRows;
441 colIndex * m_col_strides + colOffsets[0] - m_colPaddingLeft,
442 colIndex * m_col_strides + colOffsets[1] - m_colPaddingLeft};
451 const Index rowIndex = (patch3DIndex - colIndex * m_outputPlanesRows) / m_fastOutputPlanes;
469 const Index planeIndex = (patch3DIndex - m_outputPlanes * (colIndex * m_outputRows + rowIndex));
DTensorImagePatch.h336 const Index colIndex = patch2DIndex / m_fastOutputRows;
338 … const Index inputCol = colIndex * m_col_strides + colOffset * m_in_col_strides - m_colPaddingLeft;
346 const Index rowIndex = patch2DIndex - colIndex * m_outputRows;
387 const Index colIndex = patch2DIndex / m_fastOutputRows;
391 const Index inputCols[2] = {colIndex * m_col_strides + colOffsets[0] -
392 m_colPaddingLeft, colIndex * m_col_strides + colOffsets[1] - m_colPaddingLeft};
398 const Index rowIndex = patch2DIndex - colIndex * m_outputRows;
/external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/linear/
DSimplexTableau.java376 int colIndex = columnLabels.indexOf("x" + i); in getSolution() local
377 if (colIndex < 0) { in getSolution()
381 Integer basicRow = getBasicRow(colIndex); in getSolution()