Home
last modified time | relevance | path

Searched refs:QR_ECLEVEL_H (Results 1 – 25 of 44) sorted by relevance

12

/dports/graphics/libqrencode/libqrencode-4.1.1/tests/
H A Dtest_qrencode.c128 QRinput_setErrorCorrectionLevel(stream, QR_ECLEVEL_H); in test_iterate2()
396 qrcode = QRcode_encodeString(NULL, 0, QR_ECLEVEL_H, QR_MODE_8, 0); in test_encodeNull()
408 qrcode = QRcode_encodeString("", 0, QR_ECLEVEL_H, QR_MODE_8, 0); in test_encodeEmpty()
419 qrcode = QRcode_encodeString8bit(NULL, 0, QR_ECLEVEL_H); in test_encodeNull8()
431 qrcode = QRcode_encodeString8bit("", 0, QR_ECLEVEL_H); in test_encodeEmpty8()
458 for(l=QR_ECLEVEL_L; l<=QR_ECLEVEL_H; l++) { in test_encodeLongData()
599 input->level = (QRecLevel)(QR_ECLEVEL_H + 1); in test_invalid_input()
735 qrcode = QRcode_encodeData(0, NULL, 0, QR_ECLEVEL_H); in test_encodeData()
757 assert_equal(level, QR_ECLEVEL_H, "Decoded format is wrong.\n"); in test_formatInfo()
794 qrcode = QRcode_encodeString(str, 1, QR_ECLEVEL_H, QR_MODE_8, 1); in test_decodeSimple()
[all …]
H A Dtest_qrinput.c566 input = QRinput_new2(1, QR_ECLEVEL_H); in test_struct_split_tooLarge()
588 input = QRinput_new2(0, QR_ECLEVEL_H); in test_struct_split_invalidVersion()
607 input = QRinput_new2(10, QR_ECLEVEL_H); in test_struct_singlestructure()
897 input = QRinput_new2(-1, QR_ECLEVEL_H); in test_QRinput_new_invalid()
900 input = QRinput_new2(41, QR_ECLEVEL_H); in test_QRinput_new_invalid()
918 input = QRinput_new2(1, QR_ECLEVEL_H); in test_QRinput_getErrorCorrectionLevel()
920 …assert_equal(level, QR_ECLEVEL_H, "QRinput_getErrorCorrectionLevel() fails to return expected leve… in test_QRinput_getErrorCorrectionLevel()
H A Dtest_rs.c44 for(j = QR_ECLEVEL_L; j <= QR_ECLEVEL_H; j++) { in compareRS()
H A Dview_qrcode.c408 level = QR_ECLEVEL_H; in view()
531 level = QR_ECLEVEL_H; in main()
/dports/graphics/p5-Imager-QRCode/Imager-QRCode-0.035/vendor/qrencode-3.4.2/tests/
H A Dtest_qrencode.c140 QRinput_setErrorCorrectionLevel(stream, QR_ECLEVEL_H); in test_iterate2()
406 qrcode = QRcode_encodeString(NULL, 0, QR_ECLEVEL_H, QR_MODE_8, 0); in test_encodeNull()
418 qrcode = QRcode_encodeString("", 0, QR_ECLEVEL_H, QR_MODE_8, 0); in test_encodeEmpty()
429 qrcode = QRcode_encodeString8bit(NULL, 0, QR_ECLEVEL_H); in test_encodeNull8()
441 qrcode = QRcode_encodeString8bit("", 0, QR_ECLEVEL_H); in test_encodeEmpty8()
547 input->level = (QRecLevel)(QR_ECLEVEL_H + 1); in test_invalid_input()
683 qrcode = QRcode_encodeData(0, NULL, 0, QR_ECLEVEL_H); in test_encodeData()
702 qrcode = QRcode_encodeString("AC-42", 1, QR_ECLEVEL_H, QR_MODE_8, 1); in test_formatInfo()
705 assert_equal(level, QR_ECLEVEL_H, "Decoded format is wrong.\n"); in test_formatInfo()
742 qrcode = QRcode_encodeString(str, 1, QR_ECLEVEL_H, QR_MODE_8, 1); in test_decodeSimple()
[all …]
H A Dview_qrcode.c345 level = QR_ECLEVEL_H;
452 level = QR_ECLEVEL_H;
/dports/graphics/py-qrencode/qrencode-1.2/qrencode/
H A D__init__.py12 QR_ECLEVEL_H = 3 variable
13 levels = [QR_ECLEVEL_L, QR_ECLEVEL_M, QR_ECLEVEL_Q, QR_ECLEVEL_H]
/dports/www/kanboard/kanboard-1.2.21/libs/phpqrcode/lib/PHPQRCode/
H A DConstants.php34 const QR_ECLEVEL_H = 3; define in PHPQRCode\\Constants
H A DQRinput.php42 …if ($version < 0 || $version > Constants::QRSPEC_VERSION_MAX || $level > Constants::QR_ECLEVEL_H) {
79 if($level > Constants::QR_ECLEVEL_H) {
H A DQRencode.php74 $enc->level = Constants::QR_ECLEVEL_H;
H A DQRcode.php24 if($input->getErrorCorrectionLevel() > Constants::QR_ECLEVEL_H) {
/dports/graphics/libqrencode/libqrencode-4.1.1/
H A Dmqrspec.c145 if(level == QR_ECLEVEL_H) return 0; in MQRspec_getFormatInfo()
H A Dqrencode.h128 QR_ECLEVEL_H ///< highest enumerator
H A Dqrinput.c120 if(version < 0 || version > QRSPEC_VERSION_MAX || level < 0 || level > QR_ECLEVEL_H) { in QRinput_new2()
181 if(input->mqr || level > QR_ECLEVEL_H) { in QRinput_setErrorCorrectionLevel()
198 if(level > QR_ECLEVEL_H) goto INVALID; in QRinput_setVersionAndErrorCorrectionLevel()
/dports/graphics/p5-Imager-QRCode/Imager-QRCode-0.035/src/
H A Dqrencode.h128 QR_ECLEVEL_H ///< highest enumerator
H A Dmqrspec.c148 if(level == QR_ECLEVEL_H) return 0; in MQRspec_getFormatInfo()
H A DQRCode.xs150 level = QR_ECLEVEL_H; in _plot()
H A Dqrinput.c119 if(version < 0 || version > QRSPEC_VERSION_MAX || level > QR_ECLEVEL_H) { in QRinput_new2()
180 if(input->mqr || level > QR_ECLEVEL_H) { in QRinput_setErrorCorrectionLevel()
197 if(level > QR_ECLEVEL_H) goto INVALID; in QRinput_setVersionAndErrorCorrectionLevel()
/dports/graphics/p5-Imager-QRCode/Imager-QRCode-0.035/vendor/qrencode-3.4.2/
H A Dqrencode.h128 QR_ECLEVEL_H ///< highest enumerator
H A Dmqrspec.c148 if(level == QR_ECLEVEL_H) return 0; in MQRspec_getFormatInfo()
/dports/textproc/p5-Text-QRCode/Text-QRCode-0.05/
H A DQRCode.xs100 level = QR_ECLEVEL_H; in _plot()
/dports/www/Stikked/Stikked-0.13.0/htdocs/application/libraries/phpqrcode/
H A Dqrencode.php168 if($input->getErrorCorrectionLevel() > QR_ECLEVEL_H) {
438 $enc->level = QR_ECLEVEL_H;
H A Dqrinput.php284 if ($version < 0 || $version > QRSPEC_VERSION_MAX || $level > QR_ECLEVEL_H) {
321 if($level > QR_ECLEVEL_H) {
/dports/security/gopass/gopass-1.13.0/vendor/rsc.io/qr/libqrencode/
H A Dqrencode.go40 H Level = C.QR_ECLEVEL_H
/dports/www/groupoffice/groupoffice-6.4.231-php-71/go/modules/community/googleauthenticator/model/
H A DGoogleauthenticator.php219 $level = QR_ECLEVEL_H;

12