Home
last modified time | relevance | path

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

/external/pdfium/fxbarcode/pdf417/
DBC_PDF417ErrorCorrection.cpp128 int32_t errorCorrectionLevel) { in getErrorCorrectionCodewordCount() argument
129 if (errorCorrectionLevel < 0 || errorCorrectionLevel > 8) in getErrorCorrectionCodewordCount()
131 return 1 << (errorCorrectionLevel + 1); in getErrorCorrectionCodewordCount()
136 int32_t errorCorrectionLevel, in generateErrorCorrection() argument
141 int32_t k = getErrorCorrectionCodewordCount(errorCorrectionLevel); in generateErrorCorrection()
152 t2 = (t1 * EC_COEFFICIENTS[errorCorrectionLevel][j]) % 929; in generateErrorCorrection()
156 t2 = (t1 * EC_COEFFICIENTS[errorCorrectionLevel][0]) % 929; in generateErrorCorrection()
DBC_PDF417.cpp403 int32_t errorCorrectionLevel) { in generateBarcodeLogic() argument
406 errorCorrectionLevel); in generateBarcodeLogic()
437 dataCodewords, errorCorrectionLevel, &ec)) { in generateBarcodeLogic()
442 encodeLowLevel(fullCodewords, cols, rows, errorCorrectionLevel, in generateBarcodeLogic()
504 int32_t errorCorrectionLevel, in encodeLowLevel() argument
517 left = (30 * (y / 3)) + (errorCorrectionLevel * 3) + ((r - 1) % 3); in encodeLowLevel()
521 right = (30 * (y / 3)) + (errorCorrectionLevel * 3) + ((r - 1) % 3); in encodeLowLevel()
DBC_PDF417ErrorCorrection.h19 static int32_t getErrorCorrectionCodewordCount(int32_t errorCorrectionLevel);
21 int32_t errorCorrectionLevel,
DBC_PDF417.h26 bool generateBarcodeLogic(WideString msg, int32_t errorCorrectionLevel);
51 int32_t errorCorrectionLevel,
/external/pdfium/fxjs/xfa/
Dcjx_barcode.h26 JS_PROP(errorCorrectionLevel);
Dcjx_barcode.cpp57 void CJX_Barcode::errorCorrectionLevel(CFXJSE_Value* pValue, in errorCorrectionLevel() function in CJX_Barcode
/external/pdfium/xfa/fxfa/parser/
Dxfa_basic_data_element_script.cpp1079 (XFA_ATTRIBUTE_CALLBACK)&CJX_Barcode::errorCorrectionLevel,