Home
last modified time | relevance | path

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

/third_party/qrcodegen/java-fast/io/nayuki/fastqrcodegen/
DQrCode.java435 finderPenaltyAddHistory(runX, runHistory); in getPenaltyScore()
467 finderPenaltyAddHistory(runY, runHistory); in getPenaltyScore()
513 finderPenaltyAddHistory(currentRunLength, runHistory); in finderPenaltyTerminateAndCount()
517 finderPenaltyAddHistory(currentRunLength, runHistory); in finderPenaltyTerminateAndCount()
523 private void finderPenaltyAddHistory(int currentRunLength, int[] runHistory) { in finderPenaltyAddHistory() method in QrCode
/third_party/qrcodegen/java/src/main/java/io/nayuki/qrcodegen/
DQrCode.java543 finderPenaltyAddHistory(runX, runHistory); in getPenaltyScore()
565 finderPenaltyAddHistory(runY, runHistory); in getPenaltyScore()
737 finderPenaltyAddHistory(currentRunLength, runHistory); in finderPenaltyTerminateAndCount()
741 finderPenaltyAddHistory(currentRunLength, runHistory); in finderPenaltyTerminateAndCount()
747 private void finderPenaltyAddHistory(int currentRunLength, int[] runHistory) { in finderPenaltyAddHistory() method in QrCode
/third_party/qrcodegen/typescript-javascript/
Dqrcodegen.ts476 this.finderPenaltyAddHistory(runX, runHistory);
498 this.finderPenaltyAddHistory(runY, runHistory);
653 this.finderPenaltyAddHistory(currentRunLength, runHistory);
657 this.finderPenaltyAddHistory(currentRunLength, runHistory);
663 private finderPenaltyAddHistory(currentRunLength: int, runHistory: Array<int>): void { method in qrcodegen.QrCode
/third_party/qrcodegen/cpp/
Dqrcodegen.cpp603 finderPenaltyAddHistory(runX, runHistory); in getPenaltyScore()
625 finderPenaltyAddHistory(runY, runHistory); in getPenaltyScore()
763 finderPenaltyAddHistory(currentRunLength, runHistory); in finderPenaltyTerminateAndCount()
767 finderPenaltyAddHistory(currentRunLength, runHistory); in finderPenaltyTerminateAndCount()
772 void QrCode::finderPenaltyAddHistory(int currentRunLength, std::array<int,7> &runHistory) const { in finderPenaltyAddHistory() function in qrcodegen::QrCode
Dqrcodegen.hpp478 private: void finderPenaltyAddHistory(int currentRunLength, std::array<int,7> &runHistory) const;
/third_party/qrcodegen/c/
Dqrcodegen.c77 static void finderPenaltyAddHistory(int currentRunLength, int runHistory[7], int qrsize);
653 finderPenaltyAddHistory(runX, runHistory, qrsize); in getPenaltyScore()
675 finderPenaltyAddHistory(runY, runHistory, qrsize); in getPenaltyScore()
730 finderPenaltyAddHistory(currentRunLength, runHistory, qrsize); in finderPenaltyTerminateAndCount()
734 finderPenaltyAddHistory(currentRunLength, runHistory, qrsize); in finderPenaltyTerminateAndCount()
740 static void finderPenaltyAddHistory(int currentRunLength, int runHistory[7], int qrsize) { in finderPenaltyAddHistory() function