Searched refs:errorCorrectionLevel (Results 1 – 4 of 4) sorted by relevance
/external/pdfium/xfa/fxbarcode/pdf417/ |
D | BC_PDF417ErrorCorrection.cpp | 127 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() 174 t2 = (t1 * EC_COEFFICIENTS[errorCorrectionLevel][j]) % 929; in generateErrorCorrection() 178 t2 = (t1 * EC_COEFFICIENTS[errorCorrectionLevel][0]) % 929; in generateErrorCorrection()
|
D | BC_PDF417.cpp | 403 int32_t errorCorrectionLevel, in generateBarcodeLogic() argument 407 errorCorrectionLevel, e); in generateBarcodeLogic() 437 dataCodewords, errorCorrectionLevel, e); in generateBarcodeLogic() 442 encodeLowLevel(fullCodewords, cols, rows, errorCorrectionLevel, in generateBarcodeLogic() 503 int32_t errorCorrectionLevel, in encodeLowLevel() argument 516 left = (30 * (y / 3)) + (errorCorrectionLevel * 3) + ((r - 1) % 3); in encodeLowLevel() 520 right = (30 * (y / 3)) + (errorCorrectionLevel * 3) + ((r - 1) % 3); in encodeLowLevel()
|
D | BC_PDF417ErrorCorrection.h | 19 static int32_t getErrorCorrectionCodewordCount(int32_t errorCorrectionLevel, 24 int32_t errorCorrectionLevel,
|
D | BC_PDF417.h | 26 int32_t errorCorrectionLevel, 52 int32_t errorCorrectionLevel,
|