Home
last modified time | relevance | path

Searched refs:symbolRows (Results 1 – 8 of 8) sorted by relevance

/dports/graphics/libdmtx/libdmtx-0.7.5/
H A Ddmtxsymbol.c28 int symbolRows, symbolCols; in getSizeIdxFromSymbolDimension() local
30 symbolRows = dmtxGetSymbolAttribute(DmtxSymAttribSymbolRows, i); in getSizeIdxFromSymbolDimension()
32 if (rows==symbolRows && cols==symbolCols){ in getSizeIdxFromSymbolDimension()
49 static const int symbolRows[] = { 10, 12, 14, 16, 18, 20, 22, 24, 26, in dmtxGetSymbolAttribute() local
108 return symbolRows[sizeIdx]; in dmtxGetSymbolAttribute()
H A Ddmtxregion.c597 int symbolRows, symbolCols; in ReadModuleColor() local
610 p.Y = (1.0/symbolRows) * (symbolRow + sampleY[i]); in ReadModuleColor()
636 int symbolRows, symbolCols; in MatrixRegionFindSize() local
674 row = symbolRows - 1; in MatrixRegionFindSize()
685 for(row = 0; row < symbolRows; row++) { in MatrixRegionFindSize()
693 colorOnAvg = (colorOnAvg * 2)/(symbolRows + symbolCols); in MatrixRegionFindSize()
694 colorOffAvg = (colorOffAvg * 2)/(symbolRows + symbolCols); in MatrixRegionFindSize()
729 errors = abs(1 + jumpCount - reg->symbolRows); in MatrixRegionFindSize()
752 errors = CountJumpTally(dec, reg, 0, reg->symbolRows, DmtxDirRight); in MatrixRegionFindSize()
793 yStart == -1 || yStart == reg->symbolRows) in CountJumpTally()
[all …]
H A Ddmtxplacemod.c31 int symbolRows, mappingCols; in dmtxSymbolModuleStatus() local
35 symbolRows = dmtxGetSymbolAttribute(DmtxSymAttribSymbolRows, sizeIdx); in dmtxSymbolModuleStatus()
38 symbolRowReverse = symbolRows - symbolRow - 1; in dmtxSymbolModuleStatus()
H A Ddmtxencode.c191 enc->region.symbolRows = dmtxGetSymbolAttribute(DmtxSymAttribSymbolRows, sizeIdx); in dmtxEncodeDataMatrix()
209 height = 2 * enc->marginSize + (enc->region.symbolRows * enc->moduleSize); in dmtxEncodeDataMatrix()
446 for(symbolRow = 0; symbolRow < enc->region.symbolRows; symbolRow++) { in PrintPattern()
H A Ddmtx.h379 int symbolRows; /* Number of total rows in symbol including alignment patterns */ member
/dports/graphics/dmtx-utils/dmtx-utils-0.7.6/dmtxwrite/
H A Ddmtxwrite.c575 int symbolCols, symbolRows; in WriteSvgFile() local
601 height = 2 * enc->marginSize + (enc->region.symbolRows * enc->moduleSize); in WriteSvgFile()
604 symbolRows = dmtxGetSymbolAttribute(DmtxSymAttribSymbolRows, enc->region.sizeIdx); in WriteSvgFile()
624 width, height, symbolCols, symbolRows); in WriteSvgFile()
627 for(row = 0; row < enc->region.symbolRows; row++) { in WriteSvgFile()
628 rowInv = enc->region.symbolRows - row - 1; in WriteSvgFile()
678 for(symbolRow = enc->region.symbolRows - 1; symbolRow >= 0; symbolRow--) { in WriteAsciiPreview()
/dports/graphics/libdmtx/libdmtx-0.7.5/test/rotate_test/
H A Dcallback.c380 int symbolRows, symbolCols; in FinalCallback() local
385 symbolRows = dmtxGetSymbolAttribute(DmtxSymAttribSymbolRows, region->sizeIdx); in FinalCallback()
388 for(row = 0; row < symbolRows; row++) { in FinalCallback()
/dports/graphics/libdmtx/libdmtx-0.7.5/test/multi_test/
H A Ddmtxregion2.c1182 reg.symbolRows = dmtxGetSymbolAttribute(DmtxSymAttribSymbolRows, region->sizeIdx); in dmtxDecodeSymbol()