Lines Matching refs:getModule
80 testable bool getModule(const uint8_t qrcode[], int x, int y);
605 if(!getModule(qrcode, x, y) && i < dataLen * 8) { in drawCodewords()
630 if(getModule(functionModules, x, y)) in applyMask()
662 bool val = getModule(qrcode, x, y); in applyMask()
682 if(getModule(qrcode, x, y) == color) { in getPenaltyScore()
693 color = getModule(qrcode, x, y); in getPenaltyScore()
709 if(getModule(qrcode, x, y) == color) { in getPenaltyScore()
720 color = getModule(qrcode, x, y); in getPenaltyScore()
734 bool color = getModule(qrcode, x, y); in getPenaltyScore()
735 if(color == getModule(qrcode, x + 1, y) && in getPenaltyScore()
736 color == getModule(qrcode, x, y + 1) && in getPenaltyScore()
737 color == getModule(qrcode, x + 1, y + 1)) in getPenaltyScore()
746 if(getModule(qrcode, x, y)) in getPenaltyScore()
799 return (0 <= x && x < qrsize && 0 <= y && y < qrsize) && getModule(qrcode, x, y); in qrcodegen_getModule()
804 testable bool getModule(const uint8_t qrcode[], int x, int y) in getModule() function