Home
last modified time | relevance | path

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

/third_party/skia/tests/
DPDFTaggedTableTest.cpp74 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/
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_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_ifd.h269 uint32 colIndex) const;
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()
/third_party/skia/third_party/externals/angle2/src/compiler/translator/tree_ops/
DConvertUnsupportedConstructorsToFunctionCalls.cpp20 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()
DScalarizeVecAndMatConstructorArgs.cpp35 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/
DScalarizeVecAndMatConstructorArgs.cpp33 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()