/third_party/skia/tests/ |
D | PDFTaggedTableTest.cpp | 74 for (int colIndex = 0; colIndex < kColCount; colIndex++) { in DEF_TEST() local 76 int cellIndex = rowIndex * kColCount + colIndex; in DEF_TEST() 80 } else if (rowIndex == 0 || colIndex == 0) { in DEF_TEST() 86 headerIds.push_back(10 + colIndex); // Col header. in DEF_TEST() 95 } else if (rowIndex == 0 || colIndex == 0) { in DEF_TEST() 121 for (int colIndex = 0; colIndex < kColCount; colIndex++) { in DEF_TEST() local 122 int cellIndex = rowIndex * kColCount + colIndex; in DEF_TEST() 127 int x = 72 + colIndex * 108 + (colIndex > 0 ? 72 : 0); in DEF_TEST()
|
/third_party/skia/third_party/externals/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_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_ifd.h | 269 uint32 colIndex) const;
|
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()
|
/third_party/skia/third_party/externals/angle2/src/compiler/translator/tree_ops/ |
D | ConvertUnsupportedConstructorsToFunctionCalls.cpp | 20 int colIndex, in AppendMatrixElementArgument() argument 25 new TIntermBinary(EOpIndexDirect, parameter->deepCopy(), CreateIndexNode(colIndex)); in AppendMatrixElementArgument() 80 int colIndex = 0; in AppendValuesFromMultipleArguments() local 104 AppendMatrixElementArgument(parameter, colIndex, rowIndex++, returnCtorArgs); in AppendValuesFromMultipleArguments() 108 ++colIndex; in AppendValuesFromMultipleArguments() 109 if (colIndex == parameter->getNominalSize()) in AppendValuesFromMultipleArguments() 111 colIndex = 0; in AppendValuesFromMultipleArguments()
|
D | ScalarizeVecAndMatConstructorArgs.cpp | 35 TIntermBinary *ConstructMatrixIndexBinaryNode(TIntermTyped *symbolNode, int colIndex, int rowIndex) in ConstructMatrixIndexBinaryNode() argument 37 TIntermBinary *colVectorNode = ConstructVectorIndexBinaryNode(symbolNode, colIndex); in ConstructMatrixIndexBinaryNode() 156 int colIndex = 0, rowIndex = 0; in scalarizeArgs() local 162 ConstructMatrixIndexBinaryNode(argVariable->deepCopy(), colIndex, rowIndex); in scalarizeArgs() 168 colIndex++; in scalarizeArgs()
|
/third_party/flutter/skia/third_party/externals/angle2/src/compiler/translator/tree_ops/ |
D | ScalarizeVecAndMatConstructorArgs.cpp | 33 TIntermBinary *ConstructMatrixIndexBinaryNode(TIntermSymbol *symbolNode, int colIndex, int rowIndex) in ConstructMatrixIndexBinaryNode() argument 35 TIntermBinary *colVectorNode = ConstructVectorIndexBinaryNode(symbolNode, colIndex); in ConstructMatrixIndexBinaryNode() 162 int colIndex = 0, rowIndex = 0; in scalarizeArgs() local 169 ConstructMatrixIndexBinaryNode(symbolNode, colIndex, rowIndex); in scalarizeArgs() 175 colIndex++; in scalarizeArgs()
|