/external/javasqlite/src/main/java/SQLite/JDBC2z/ |
D | JDBCResultSet.java | 1001 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/ |
D | dng_gain_map.cpp | 87 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 …]
|
D | dng_gain_map.h | 94 uint32 colIndex, in Entry() argument 100 colIndex * fPlanes + in Entry() 109 uint32 colIndex, in Entry() argument 115 colIndex * fPlanes + in Entry()
|
D | dng_jpeg_image.cpp | 130 uint32 colIndex = tileIndex % tilesAcross; in Process() local 132 dng_rect tileArea = fIFD.TileArea (rowIndex, colIndex); in Process()
|
D | dng_ifd.h | 269 uint32 colIndex) const;
|
D | dng_read_image.cpp | 2878 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()
|
D | dng_image_writer.cpp | 4438 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()
|
D | dng_ifd.cpp | 4027 uint32 colIndex) const in TileArea() 4035 r.l = colIndex * fTileWidth; in TileArea()
|
D | dng_negative.cpp | 1698 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/cldr/tools/java/org/unicode/cldr/tool/ |
D | TablePrinter.java | 458 private int findIdentical(Comparable[][] sortedFlat, int rowIndex, int colIndex) { in findIdentical() argument 459 if (!columnsFlat[colIndex].spanRows) return 1; in findIdentical() 460 Comparable item = sortedFlat[rowIndex][colIndex]; in findIdentical() 461 if (rowIndex > 0 && item.equals(sortedFlat[rowIndex - 1][colIndex])) { in findIdentical() 462 if (!breakSpans(sortedFlat, rowIndex, colIndex)) { in findIdentical() 467 if (!item.equals(sortedFlat[k][colIndex]) in findIdentical() 468 || breakSpans(sortedFlat, k, colIndex)) { in findIdentical() 488 for (int colIndex = 0; colIndex < limit; ++colIndex) { in breakSpans() 489 if (breaksSpans.get(colIndex) in breakSpans() 490 … && sortedFlat[rowIndex][colIndex].compareTo(sortedFlat[rowIndex - 1][colIndex]) != 0) { in breakSpans()
|
/external/tensorflow/tensorflow/core/kernels/ |
D | eigen_spatial_convolutions-inl.h | 226 Index rowIndex, colIndex, otherIndex; in operator() local 227 computeBaseIndices(0, rowIndex, colIndex, otherIndex); in operator() 228 return loadCoeff(row, rowIndex, colIndex, otherIndex); in operator() 237 Index rowIndex, colIndex, otherIndex; in operator() local 238 computeBaseIndices(patchIndex, rowIndex, colIndex, otherIndex); in operator() 239 return loadCoeff(row, rowIndex, colIndex, otherIndex); in operator() 244 Index rowIndex, colIndex, otherIndex; in loadPacket() local 245 computeBaseIndices(0, rowIndex, colIndex, otherIndex); in loadPacket() 246 return loadPacket(row, rowIndex, colIndex, otherIndex); in loadPacket() 253 Index rowIndex, colIndex, otherIndex; in loadPacket() local [all …]
|
D | eigen_cuboid_convolution.h | 293 Index planeIndex, rowIndex, colIndex, otherIndex; in operator() local 294 computeBaseIndices(0, planeIndex, rowIndex, colIndex, otherIndex); in operator() 295 return loadCoeff(row, planeIndex, rowIndex, colIndex, otherIndex); in operator() 303 Index planeIndex, rowIndex, colIndex, otherIndex; in operator() local 304 computeBaseIndices(patchIndex, planeIndex, rowIndex, colIndex, otherIndex); in operator() 305 return loadCoeff(row, planeIndex, rowIndex, colIndex, otherIndex); in operator() 310 Index planeIndex, rowIndex, colIndex, otherIndex; in loadPacket() local 311 computeBaseIndices(0, planeIndex, rowIndex, colIndex, otherIndex); in loadPacket() 312 return loadPacket(row, planeIndex, rowIndex, colIndex, otherIndex); in loadPacket() 319 Index planeIndex, rowIndex, colIndex, otherIndex; in loadPacket() local [all …]
|
D | eigen_volume_patch.h | 269 const Index colIndex = patch3DIndex / m_fastOutputPlanesRows; in coeff() local 271 const Index inputCol = colIndex * m_col_strides + in coeff() 285 (patch3DIndex - colIndex * m_outputPlanesRows) / m_fastOutputPlanes; in coeff() 302 (patch3DIndex - m_outputPlanes * (colIndex * m_outputRows + rowIndex)); in coeff() 365 const Index colIndex = patch3DIndex / m_fastOutputPlanesRows; in packet() local 371 colIndex * m_col_strides + colOffsets[0] - m_colPaddingLeft, in packet() 372 colIndex * m_col_strides + colOffsets[1] - m_colPaddingLeft}; in packet() 382 (patch3DIndex - colIndex * m_outputPlanesRows) / m_fastOutputPlanes; in packet() 401 (patch3DIndex - m_outputPlanes * (colIndex * m_outputRows + rowIndex)); in packet() 480 const Index colIndex = patch3DIndex / m_fastOutputPlanesRows; in coeff() local [all …]
|
/external/eigen/unsupported/Eigen/CXX11/src/Tensor/ |
D | TensorVolumePatch.h | 367 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));
|
D | TensorImagePatch.h | 336 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/ |
D | SimplexTableau.java | 376 int colIndex = columnLabels.indexOf("x" + i); in getSolution() local 377 if (colIndex < 0) { in getSolution() 381 Integer basicRow = getBasicRow(colIndex); in getSolution()
|