Searched refs:setModuleBounded (Results 1 – 2 of 2) sorted by relevance
/third_party/qrcodegen/c/ |
D | qrcodegen.c | 80 testable void setModuleBounded(uint8_t qrcode[], int x, int y, bool isDark); 459 setModuleBounded(qrcode, 6, i, false); in drawLightFunctionModules() 460 setModuleBounded(qrcode, i, 6, false); in drawLightFunctionModules() 486 setModuleBounded(qrcode, alignPatPos[i] + dx, alignPatPos[j] + dy, dx == 0 && dy == 0); in drawLightFunctionModules() 504 setModuleBounded(qrcode, k, i, (bits & 1) != 0); in drawLightFunctionModules() 505 setModuleBounded(qrcode, i, k, (bits & 1) != 0); in drawLightFunctionModules() 529 setModuleBounded(qrcode, 8, i, getBit(bits, i)); in drawFormatBits() 530 setModuleBounded(qrcode, 8, 7, getBit(bits, 6)); in drawFormatBits() 531 setModuleBounded(qrcode, 8, 8, getBit(bits, 7)); in drawFormatBits() 532 setModuleBounded(qrcode, 7, 8, getBit(bits, 8)); in drawFormatBits() [all …]
|
D | qrcodegen-test.c | 58 void setModuleBounded(uint8_t qrcode[], int x, int y, bool isDark); 456 setModuleBounded(qrcode, x, y, false); in testGetSetModule() 464 setModuleBounded(qrcode, x, y, true); in testGetSetModule() 484 setModuleBounded(qrcode, 3, 8, false); in testGetSetModule() 485 setModuleBounded(qrcode, 61, 49, false); in testGetSetModule() 521 setModuleBounded(qrcode, x, y, newColor); in testGetSetModuleRandomly()
|