Searched refs:currentRunColor (Results 1 - 5 of 5) sorted by relevance
/third_party/qrcodegen/cpp/ |
H A D | qrcodegen.hpp | 474 private: int finderPenaltyTerminateAndCount(bool currentRunColor, int currentRunLength, std::array<int,7> &runHistory) const;
|
H A D | qrcodegen.cpp | 761 int QrCode::finderPenaltyTerminateAndCount(bool currentRunColor, int currentRunLength, std::array<int,7> &runHistory) const { in finderPenaltyTerminateAndCount() argument 762 if (currentRunColor) { // Terminate dark run in finderPenaltyTerminateAndCount()
|
/third_party/qrcodegen/java-fast/io/nayuki/fastqrcodegen/ |
H A D | QrCode.java | 511 private int finderPenaltyTerminateAndCount(int currentRunColor, int currentRunLength, int[] runHistory) { in finderPenaltyTerminateAndCount() argument 512 if (currentRunColor == 1) { // Terminate dark run in finderPenaltyTerminateAndCount()
|
/third_party/qrcodegen/java/src/main/java/io/nayuki/qrcodegen/ |
H A D | QrCode.java | 735 private int finderPenaltyTerminateAndCount(boolean currentRunColor, int currentRunLength, int[] runHistory) { in finderPenaltyTerminateAndCount() argument 736 if (currentRunColor) { // Terminate dark run in finderPenaltyTerminateAndCount()
|
/third_party/qrcodegen/c/ |
H A D | qrcodegen.c | 76 static int finderPenaltyTerminateAndCount(bool currentRunColor, int currentRunLength, int runHistory[7], int qrsize); 728 static int finderPenaltyTerminateAndCount(bool currentRunColor, int currentRunLength, int runHistory[7], int qrsize) { in finderPenaltyTerminateAndCount() argument 729 if (currentRunColor) { // Terminate dark run in finderPenaltyTerminateAndCount()
|
Completed in 7 milliseconds