Searched refs:errorCorrectionLevel (Results 1 – 5 of 5) sorted by relevance
/external/pdfium/fxbarcode/pdf417/ |
D | BC_PDF417ErrorCorrection.cpp | 129 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()
|
D | BC_PDF417.cpp | 361 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()
|
D | BC_PDF417ErrorCorrection.h | 20 static int32_t GetErrorCorrectionCodewordCount(int32_t errorCorrectionLevel); 23 int32_t errorCorrectionLevel);
|
D | BC_PDF417.h | 24 bool GenerateBarcodeLogic(WideStringView msg, int32_t errorCorrectionLevel); 46 int32_t errorCorrectionLevel,
|
/external/pdfium/xfa/fxfa/parser/ |
D | attributes.inc | 196 ATTR____(0x99800d7au, "errorCorrectionLevel", ErrorCorrectionLevel, Basic)
|