Home
last modified time | relevance | path

Searched refs:errorCorrectionLevel (Results 1 – 25 of 61) sorted by relevance

123

/dports/www/Stikked/Stikked-0.13.0/htdocs/application/libraries/phpqrcode/
H A Dindex.php44 $errorCorrectionLevel = 'L'; variable
46 $errorCorrectionLevel = $_REQUEST['level']; variable
60 …$filename = $PNG_TEMP_DIR.'test'.md5($_REQUEST['data'].'|'.$errorCorrectionLevel.'|'.$matrixPointS…
61 QRcode::png($_REQUEST['data'], $filename, $errorCorrectionLevel, $matrixPointSize, 2);
67 QRcode::png('PHP QR Code :)', $filename, $errorCorrectionLevel, $matrixPointSize, 2);
78 <option value="L"'.(($errorCorrectionLevel=='L')?' selected':'').'>L - smallest</option>
79 <option value="M"'.(($errorCorrectionLevel=='M')?' selected':'').'>M</option>
80 <option value="Q"'.(($errorCorrectionLevel=='Q')?' selected':'').'>Q</option>
81 <option value="H"'.(($errorCorrectionLevel=='H')?' selected':'').'>H - best</option>
/dports/textproc/zxing-cpp/zxing-cpp-1.2.0/core/src/pdf417/
H A DPDFEncoder.cpp312 static int GetErrorCorrectionCodewordCount(int errorCorrectionLevel) in GetErrorCorrectionCodewordCount() argument
314 return 1 << (errorCorrectionLevel + 1); in GetErrorCorrectionCodewordCount()
326 int k = GetErrorCorrectionCodewordCount(errorCorrectionLevel); in GenerateErrorCorrection()
334 t2 = (t1 * EC_COEFFICIENTS[errorCorrectionLevel][j]) % 929; in GenerateErrorCorrection()
338 t2 = (t1 * EC_COEFFICIENTS[errorCorrectionLevel][0]) % 929; in GenerateErrorCorrection()
426 left = (30 * (y / 3)) + (errorCorrectionLevel * 3) + ((r - 1) % 3); in EncodeLowLevel()
431 right = (30 * (y / 3)) + (errorCorrectionLevel * 3) + ((r - 1) % 3); in EncodeLowLevel()
513 Encoder::generateBarcodeLogic(const std::wstring& msg, int errorCorrectionLevel) const in generateBarcodeLogic()
515 if (errorCorrectionLevel < 0 || errorCorrectionLevel > 8) { in generateBarcodeLogic()
544 GenerateErrorCorrection(dataCodewords, errorCorrectionLevel); in generateBarcodeLogic()
[all …]
H A DPDFBarcodeMetadata.h34 …deMetadata(int columnCount, int rowCountUpperPart, int rowCountLowerPart, int errorCorrectionLevel) in BarcodeMetadata() argument
35 …: _columnCount(columnCount), _errorCorrectionLevel(errorCorrectionLevel), _rowCountUpperPart(rowCo… in BarcodeMetadata()
44 int errorCorrectionLevel() const { in errorCorrectionLevel() function
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/pdfium/fxbarcode/pdf417/
H A DBC_PDF417ErrorCorrection.cpp129 int32_t errorCorrectionLevel) { in GetErrorCorrectionCodewordCount() argument
130 if (errorCorrectionLevel < 0 || errorCorrectionLevel > 8) in GetErrorCorrectionCodewordCount()
132 return 1 << (errorCorrectionLevel + 1); in GetErrorCorrectionCodewordCount()
138 int32_t errorCorrectionLevel) { in GenerateErrorCorrection() argument
139 int32_t k = GetErrorCorrectionCodewordCount(errorCorrectionLevel); in GenerateErrorCorrection()
150 t2 = (t1 * EC_COEFFICIENTS[errorCorrectionLevel][j]) % 929; in GenerateErrorCorrection()
154 t2 = (t1 * EC_COEFFICIENTS[errorCorrectionLevel][0]) % 929; in GenerateErrorCorrection()
H A DBC_PDF417.cpp361 int32_t errorCorrectionLevel) { in GenerateBarcodeLogic() argument
364 errorCorrectionLevel); in GenerateBarcodeLogic()
394 dataCodewords, errorCorrectionLevel); in GenerateBarcodeLogic()
400 encodeLowLevel(fullCodewords, cols, rows, errorCorrectionLevel, in GenerateBarcodeLogic()
454 int32_t errorCorrectionLevel, in encodeLowLevel() argument
467 left = (30 * (y / 3)) + (errorCorrectionLevel * 3) + ((r - 1) % 3); in encodeLowLevel()
471 right = (30 * (y / 3)) + (errorCorrectionLevel * 3) + ((r - 1) % 3); in encodeLowLevel()
H A DBC_PDF417ErrorCorrection.h20 static int32_t GetErrorCorrectionCodewordCount(int32_t errorCorrectionLevel);
23 int32_t errorCorrectionLevel);
H A DBC_PDF417.h24 bool GenerateBarcodeLogic(WideStringView msg, int32_t errorCorrectionLevel);
46 int32_t errorCorrectionLevel,
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/pdfium/fxbarcode/pdf417/
H A DBC_PDF417ErrorCorrection.cpp129 int32_t errorCorrectionLevel) { in GetErrorCorrectionCodewordCount() argument
130 if (errorCorrectionLevel < 0 || errorCorrectionLevel > 8) in GetErrorCorrectionCodewordCount()
132 return 1 << (errorCorrectionLevel + 1); in GetErrorCorrectionCodewordCount()
138 int32_t errorCorrectionLevel) { in GenerateErrorCorrection() argument
139 int32_t k = GetErrorCorrectionCodewordCount(errorCorrectionLevel); in GenerateErrorCorrection()
150 t2 = (t1 * EC_COEFFICIENTS[errorCorrectionLevel][j]) % 929; in GenerateErrorCorrection()
154 t2 = (t1 * EC_COEFFICIENTS[errorCorrectionLevel][0]) % 929; in GenerateErrorCorrection()
H A DBC_PDF417.cpp360 int32_t errorCorrectionLevel) { in GenerateBarcodeLogic() argument
363 errorCorrectionLevel); in GenerateBarcodeLogic()
393 dataCodewords, errorCorrectionLevel); in GenerateBarcodeLogic()
399 encodeLowLevel(fullCodewords, cols, rows, errorCorrectionLevel, in GenerateBarcodeLogic()
453 int32_t errorCorrectionLevel, in encodeLowLevel() argument
466 left = (30 * (y / 3)) + (errorCorrectionLevel * 3) + ((r - 1) % 3); in encodeLowLevel()
470 right = (30 * (y / 3)) + (errorCorrectionLevel * 3) + ((r - 1) % 3); in encodeLowLevel()
H A DBC_PDF417ErrorCorrection.h20 static int32_t GetErrorCorrectionCodewordCount(int32_t errorCorrectionLevel);
23 int32_t errorCorrectionLevel);
H A DBC_PDF417.h24 bool GenerateBarcodeLogic(WideStringView msg, int32_t errorCorrectionLevel);
46 int32_t errorCorrectionLevel,
/dports/editors/texmaker/texmaker-5.0.3/pdfium/xfa/fxbarcode/pdf417/
H A DBC_PDF417ErrorCorrection.cpp127 int32_t errorCorrectionLevel, in getErrorCorrectionCodewordCount() argument
129 if (errorCorrectionLevel < 0 || errorCorrectionLevel > 8) { in getErrorCorrectionCodewordCount()
133 return 1 << (errorCorrectionLevel + 1); in getErrorCorrectionCodewordCount()
161 int32_t errorCorrectionLevel, in generateErrorCorrection() argument
163 int32_t k = getErrorCorrectionCodewordCount(errorCorrectionLevel, e); in generateErrorCorrection()
173 t2 = (t1 * EC_COEFFICIENTS[errorCorrectionLevel][j]) % 929; in generateErrorCorrection()
177 t2 = (t1 * EC_COEFFICIENTS[errorCorrectionLevel][0]) % 929; in generateErrorCorrection()
H A DBC_PDF417.cpp413 int32_t errorCorrectionLevel, in generateBarcodeLogic() argument
417 errorCorrectionLevel, e); in generateBarcodeLogic()
444 dataCodewords, errorCorrectionLevel, e); in generateBarcodeLogic()
448 encodeLowLevel(fullCodewords, cols, rows, errorCorrectionLevel, in generateBarcodeLogic()
502 int32_t errorCorrectionLevel, in encodeLowLevel() argument
515 left = (30 * (y / 3)) + (errorCorrectionLevel * 3) + ((r - 1) % 3); in encodeLowLevel()
519 right = (30 * (y / 3)) + (errorCorrectionLevel * 3) + ((r - 1) % 3); in encodeLowLevel()
H A DBC_PDF417ErrorCorrection.h19 static int32_t getErrorCorrectionCodewordCount(int32_t errorCorrectionLevel,
24 int32_t errorCorrectionLevel,
H A DBC_PDF417.h24 int32_t errorCorrectionLevel,
58 int32_t errorCorrectionLevel,
/dports/databases/phpmyadmin/phpMyAdmin-4.9.7-all-languages/vendor/bacon/bacon-qr-code/src/BaconQrCode/Encoder/
H A DQrCode.php38 protected $errorCorrectionLevel; variable in BaconQrCode\\Encoder\\QrCode
89 return $this->errorCorrectionLevel;
95 * @param ErrorCorrectionLevel $errorCorrectionLevel
98 public function setErrorCorrectionLevel(ErrorCorrectionLevel $errorCorrectionLevel) argument
100 $this->errorCorrectionLevel = $errorCorrectionLevel;
186 . " ecLevel: " . $this->errorCorrectionLevel . "\n"
/dports/deskutils/egroupware/egroupware/vendor/bacon/bacon-qr-code/src/BaconQrCode/Encoder/
H A DQrCode.php38 protected $errorCorrectionLevel; variable in BaconQrCode\\Encoder\\QrCode
89 return $this->errorCorrectionLevel;
95 * @param ErrorCorrectionLevel $errorCorrectionLevel
98 public function setErrorCorrectionLevel(ErrorCorrectionLevel $errorCorrectionLevel) argument
100 $this->errorCorrectionLevel = $errorCorrectionLevel;
186 . " ecLevel: " . $this->errorCorrectionLevel . "\n"
/dports/misc/perkeep/perkeep-0.11/clients/android/app/src/main/java/com/google/zxing/integration/android/
H A DIntentResult.java30 private final String errorCorrectionLevel; field in IntentResult
40 String errorCorrectionLevel) { in IntentResult() argument
45 this.errorCorrectionLevel = errorCorrectionLevel; in IntentResult()
80 return errorCorrectionLevel; in getErrorCorrectionLevel()
91 dialogText.append("EC level: ").append(errorCorrectionLevel).append('\n'); in toString()
/dports/databases/phpmyadmin5/phpMyAdmin-5.1.2-all-languages/vendor/bacon/bacon-qr-code/src/Encoder/
H A DQrCode.php32 private $errorCorrectionLevel; variable in BaconQrCode\\Encoder\\QrCode
57 ErrorCorrectionLevel $errorCorrectionLevel, argument
63 $this->errorCorrectionLevel = $errorCorrectionLevel;
82 return $this->errorCorrectionLevel;
126 . ' ecLevel: ' . $this->errorCorrectionLevel . "\n"
/dports/www/typo3-11/typo3_src-11.5.7/vendor/bacon/bacon-qr-code/src/Encoder/
H A DQrCode.php32 private $errorCorrectionLevel; variable in BaconQrCode\\Encoder\\QrCode
57 ErrorCorrectionLevel $errorCorrectionLevel, argument
63 $this->errorCorrectionLevel = $errorCorrectionLevel;
82 return $this->errorCorrectionLevel;
126 . ' ecLevel: ' . $this->errorCorrectionLevel . "\n"
/dports/www/tikiwiki/tiki-21.2/vendor_bundled/vendor/bacon/bacon-qr-code/src/Encoder/
H A DQrCode.php32 private $errorCorrectionLevel; variable in BaconQrCode\\Encoder\\QrCode
57 ErrorCorrectionLevel $errorCorrectionLevel, argument
63 $this->errorCorrectionLevel = $errorCorrectionLevel;
82 return $this->errorCorrectionLevel;
126 . ' ecLevel: ' . $this->errorCorrectionLevel . "\n"
/dports/graphics/xpdf/xpdf-4.03/xpdf/
H A DPDF417Barcode.cc1314 static void makeErrorCorrectionCodewords(int errorCorrectionLevel,
1318 int errorCorrectionLevel,
1329 int errorCorrectionLevel, GString *value, in drawPDF417Barcode() argument
1362 int nErrorCorrectionCodewords = 1 << (errorCorrectionLevel + 1); in drawPDF417Barcode()
1387 makeErrorCorrectionCodewords(errorCorrectionLevel, codewords, length); in drawPDF417Barcode()
1400 nRows, nCols, errorCorrectionLevel, in drawPDF417Barcode()
1831 static void makeErrorCorrectionCodewords(int errorCorrectionLevel, in makeErrorCorrectionCodewords() argument
1834 int k = 1 << (errorCorrectionLevel + 1); in makeErrorCorrectionCodewords()
1842 t2 = (t1 * errorCorrectionCoeff[errorCorrectionLevel][j]) % 929; in makeErrorCorrectionCodewords()
1846 t2 = (t1 * errorCorrectionCoeff[errorCorrectionLevel][0]) % 929; in makeErrorCorrectionCodewords()
[all …]
/dports/graphics/xpdf4/xpdf-4.03/xpdf/
H A DPDF417Barcode.cc1314 static void makeErrorCorrectionCodewords(int errorCorrectionLevel,
1318 int errorCorrectionLevel,
1329 int errorCorrectionLevel, GString *value, in drawPDF417Barcode() argument
1362 int nErrorCorrectionCodewords = 1 << (errorCorrectionLevel + 1); in drawPDF417Barcode()
1387 makeErrorCorrectionCodewords(errorCorrectionLevel, codewords, length); in drawPDF417Barcode()
1400 nRows, nCols, errorCorrectionLevel, in drawPDF417Barcode()
1831 static void makeErrorCorrectionCodewords(int errorCorrectionLevel, in makeErrorCorrectionCodewords() argument
1834 int k = 1 << (errorCorrectionLevel + 1); in makeErrorCorrectionCodewords()
1842 t2 = (t1 * errorCorrectionCoeff[errorCorrectionLevel][j]) % 929; in makeErrorCorrectionCodewords()
1846 t2 = (t1 * errorCorrectionCoeff[errorCorrectionLevel][0]) % 929; in makeErrorCorrectionCodewords()
[all …]
/dports/net-im/uTox/uTox/third-party/qrcodegen/cpp/
H A DQrCode.cpp126 errorCorrectionLevel(ecl), in QrCode()
153 return errorCorrectionLevel; in getErrorCorrectionLevel()
227 int data = errorCorrectionLevel.getFormatBits() << 3 | mask; // errCorrLvl is uint2, mask is uint3 in drawFormatBits()
308 if (data.size() != static_cast<unsigned int>(getNumDataCodewords(version, errorCorrectionLevel))) in appendErrorCorrection()
312 int numBlocks = NUM_ERROR_CORRECTION_BLOCKS[errorCorrectionLevel.getOrdinal()][version]; in appendErrorCorrection()
313 int blockEccLen = ECC_CODEWORDS_PER_BLOCK[errorCorrectionLevel.getOrdinal()][version]; in appendErrorCorrection()
/dports/net-im/uTox/uTox/third-party/qrcodegen/java/io/nayuki/qrcodegen/
H A DQrCode.java184 public final Ecc errorCorrectionLevel; field in QrCode
220 errorCorrectionLevel = ecl; in QrCode()
345 int data = errorCorrectionLevel.formatBits << 3 | mask; // errCorrLvl is uint2, mask is uint3 in drawFormatBits()
431 if (data.length != getNumDataCodewords(version, errorCorrectionLevel)) in appendErrorCorrection()
435 int numBlocks = NUM_ERROR_CORRECTION_BLOCKS[errorCorrectionLevel.ordinal()][version]; in appendErrorCorrection()
436 int blockEccLen = ECC_CODEWORDS_PER_BLOCK[errorCorrectionLevel.ordinal()][version]; in appendErrorCorrection()

123