Home
last modified time | relevance | path

Searched refs:finderPenaltyCountPatterns (Results 1 – 6 of 6) sorted by relevance

/third_party/qrcodegen/java-fast/io/nayuki/fastqrcodegen/
DQrCode.java437 result += finderPenaltyCountPatterns(runHistory) * PENALTY_N3; in getPenaltyScore()
469 result += finderPenaltyCountPatterns(runHistory) * PENALTY_N3; in getPenaltyScore()
501 private int finderPenaltyCountPatterns(int[] runHistory) { in finderPenaltyCountPatterns() method in QrCode
518 return finderPenaltyCountPatterns(runHistory); in finderPenaltyTerminateAndCount()
/third_party/qrcodegen/java/src/main/java/io/nayuki/qrcodegen/
DQrCode.java545 result += finderPenaltyCountPatterns(runHistory) * PENALTY_N3; in getPenaltyScore()
567 result += finderPenaltyCountPatterns(runHistory) * PENALTY_N3; in getPenaltyScore()
725 private int finderPenaltyCountPatterns(int[] runHistory) { in finderPenaltyCountPatterns() method in QrCode
742 return finderPenaltyCountPatterns(runHistory); in finderPenaltyTerminateAndCount()
/third_party/qrcodegen/typescript-javascript/
Dqrcodegen.ts478 result += this.finderPenaltyCountPatterns(runHistory) * QrCode.PENALTY_N3;
500 result += this.finderPenaltyCountPatterns(runHistory) * QrCode.PENALTY_N3;
641 private finderPenaltyCountPatterns(runHistory: Readonly<Array<int>>): int { method in qrcodegen.QrCode
658 return this.finderPenaltyCountPatterns(runHistory);
/third_party/qrcodegen/c/
Dqrcodegen.c75 static int finderPenaltyCountPatterns(const int runHistory[7], int qrsize);
655 result += finderPenaltyCountPatterns(runHistory, qrsize) * PENALTY_N3; in getPenaltyScore()
677 result += finderPenaltyCountPatterns(runHistory, qrsize) * PENALTY_N3; in getPenaltyScore()
716 static int finderPenaltyCountPatterns(const int runHistory[7], int qrsize) { in finderPenaltyCountPatterns() function
735 return finderPenaltyCountPatterns(runHistory, qrsize); in finderPenaltyTerminateAndCount()
/third_party/qrcodegen/cpp/
Dqrcodegen.cpp605 result += finderPenaltyCountPatterns(runHistory) * PENALTY_N3; in getPenaltyScore()
627 result += finderPenaltyCountPatterns(runHistory) * PENALTY_N3; in getPenaltyScore()
752 int QrCode::finderPenaltyCountPatterns(const std::array<int,7> &runHistory) const { in finderPenaltyCountPatterns() function in qrcodegen::QrCode
768 return finderPenaltyCountPatterns(runHistory); in finderPenaltyTerminateAndCount()
Dqrcodegen.hpp470 private: int finderPenaltyCountPatterns(const std::array<int,7> &runHistory) const;