Home
last modified time | relevance | path

Searched refs:errorCorrectionLevel (Results 1 - 4 of 4) sorted by relevance

/third_party/qrcodegen/java-fast/io/nayuki/fastqrcodegen/
H A DQrCode.java210 public final Ecc errorCorrectionLevel; field in QrCode
246 errorCorrectionLevel = Objects.requireNonNull(ecl); in QrCode()
287 int data = errorCorrectionLevel.formatBits << 3 | msk; // errCorrLvl is uint2, mask is uint3 in drawFormatBits()
330 if (data.length != getNumDataCodewords(version, errorCorrectionLevel)) in addEccAndInterleave()
334 int numBlocks = NUM_ERROR_CORRECTION_BLOCKS[errorCorrectionLevel.ordinal()][version]; in addEccAndInterleave()
335 int blockEccLen = ECC_CODEWORDS_PER_BLOCK [errorCorrectionLevel.ordinal()][version]; in addEccAndInterleave()
/third_party/qrcodegen/java/src/main/java/io/nayuki/qrcodegen/
H A DQrCode.java215 public final Ecc errorCorrectionLevel; field in QrCode
256 errorCorrectionLevel = Objects.requireNonNull(ecl); in QrCode()
343 int data = errorCorrectionLevel.formatBits << 3 | msk; // errCorrLvl is uint2, mask is uint3 in drawFormatBits()
430 if (data.length != getNumDataCodewords(version, errorCorrectionLevel)) in addEccAndInterleave()
434 int numBlocks = NUM_ERROR_CORRECTION_BLOCKS[errorCorrectionLevel.ordinal()][version]; in addEccAndInterleave()
435 int blockEccLen = ECC_CODEWORDS_PER_BLOCK [errorCorrectionLevel.ordinal()][version]; in addEccAndInterleave()
/third_party/qrcodegen/cpp/
H A Dqrcodegen.cpp323 errorCorrectionLevel(ecl) { in QrCode()
373 return errorCorrectionLevel; in getErrorCorrectionLevel()
418 int data = getFormatBits(errorCorrectionLevel) << 3 | msk; // errCorrLvl is uint2, msk is uint3 in drawFormatBits()
499 if (data.size() != static_cast<unsigned int>(getNumDataCodewords(version, errorCorrectionLevel))) in addEccAndInterleave()
503 int numBlocks = NUM_ERROR_CORRECTION_BLOCKS[static_cast<int>(errorCorrectionLevel)][version]; in addEccAndInterleave()
504 int blockEccLen = ECC_CODEWORDS_PER_BLOCK [static_cast<int>(errorCorrectionLevel)][version]; in addEccAndInterleave()
H A Dqrcodegen.hpp308 private: Ecc errorCorrectionLevel; member in qrcodegen::final

Completed in 6 milliseconds