Searched refs:errorCorrectionLevel (Results 1 – 7 of 7) sorted by relevance
/external/pdfium/fxbarcode/pdf417/ |
D | BC_PDF417ErrorCorrection.cpp | 128 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()
|
D | BC_PDF417.cpp | 403 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()
|
D | BC_PDF417ErrorCorrection.h | 19 static int32_t getErrorCorrectionCodewordCount(int32_t errorCorrectionLevel); 21 int32_t errorCorrectionLevel,
|
D | BC_PDF417.h | 26 bool generateBarcodeLogic(WideString msg, int32_t errorCorrectionLevel); 51 int32_t errorCorrectionLevel,
|
/external/pdfium/fxjs/xfa/ |
D | cjx_barcode.h | 26 JS_PROP(errorCorrectionLevel);
|
D | cjx_barcode.cpp | 57 void CJX_Barcode::errorCorrectionLevel(CFXJSE_Value* pValue, in errorCorrectionLevel() function in CJX_Barcode
|
/external/pdfium/xfa/fxfa/parser/ |
D | xfa_basic_data_element_script.cpp | 1079 (XFA_ATTRIBUTE_CALLBACK)&CJX_Barcode::errorCorrectionLevel,
|