Home
last modified time | relevance | path

Searched refs:symbolCols (Results 1 – 7 of 7) sorted by relevance

/dports/graphics/libdmtx/libdmtx-0.7.5/
H A Ddmtxsymbol.c28 int symbolRows, symbolCols; in getSizeIdxFromSymbolDimension() local
31 symbolCols = dmtxGetSymbolAttribute(DmtxSymAttribSymbolCols, i); in getSizeIdxFromSymbolDimension()
32 if (rows==symbolRows && cols==symbolCols){ in getSizeIdxFromSymbolDimension()
55 static const int symbolCols[] = { 10, 12, 14, 16, 18, 20, 22, 24, 26, in dmtxGetSymbolAttribute() local
110 return symbolCols[sizeIdx]; in dmtxGetSymbolAttribute()
H A Ddmtxregion.c597 int symbolRows, symbolCols; in ReadModuleColor() local
609 p.X = (1.0/symbolCols) * (symbolCol + sampleX[i]); in ReadModuleColor()
636 int symbolRows, symbolCols; in MatrixRegionFindSize() local
675 for(col = 0; col < symbolCols; col++) { in MatrixRegionFindSize()
684 col = symbolCols - 1; in MatrixRegionFindSize()
693 colorOnAvg = (colorOnAvg * 2)/(symbolRows + symbolCols); in MatrixRegionFindSize()
694 colorOffAvg = (colorOffAvg * 2)/(symbolRows + symbolCols); in MatrixRegionFindSize()
723 errors = abs(1 + jumpCount - reg->symbolCols); in MatrixRegionFindSize()
756 errors = CountJumpTally(dec, reg, reg->symbolCols, 0, DmtxDirUp); in MatrixRegionFindSize()
792 if(xStart == -1 || xStart == reg->symbolCols || in CountJumpTally()
[all …]
H A Ddmtxencode.c192 enc->region.symbolCols = dmtxGetSymbolAttribute(DmtxSymAttribSymbolCols, sizeIdx); in dmtxEncodeDataMatrix()
208 width = 2 * enc->marginSize + (enc->region.symbolCols * enc->moduleSize); in dmtxEncodeDataMatrix()
447 for(symbolCol = 0; symbolCol < enc->region.symbolCols; symbolCol++) { in PrintPattern()
H A Ddmtx.h380 …int symbolCols; /* Number of total columns 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
600 width = 2 * enc->marginSize + (enc->region.symbolCols * enc->moduleSize); in WriteSvgFile()
603 symbolCols = dmtxGetSymbolAttribute(DmtxSymAttribSymbolCols, enc->region.sizeIdx); in WriteSvgFile()
624 width, height, symbolCols, symbolRows); in WriteSvgFile()
629 for(col = 0; col < enc->region.symbolCols; col++) { in WriteSvgFile()
681 for(symbolCol = 0; symbolCol < enc->region.symbolCols; symbolCol++) { in WriteAsciiPreview()
/dports/graphics/libdmtx/libdmtx-0.7.5/test/rotate_test/
H A Dcallback.c380 int symbolRows, symbolCols; in FinalCallback() local
386 symbolCols = dmtxGetSymbolAttribute(DmtxSymAttribSymbolCols, region->sizeIdx); in FinalCallback()
389 for(col = 0; col < symbolCols; col++) { in FinalCallback()
/dports/graphics/libdmtx/libdmtx-0.7.5/test/multi_test/
H A Ddmtxregion2.c1183 reg.symbolCols = dmtxGetSymbolAttribute(DmtxSymAttribSymbolCols, region->sizeIdx); in dmtxDecodeSymbol()