Searched refs:qrCode (Results 1 - 1 of 1) sorted by relevance

/haiku/src/add-ons/kernel/debugger/qrencode/
H A Dmodule.cpp38 qrcode_bit(QRcode* qrCode, int x, int y) argument
40 if (x >= qrCode->width || y >= qrCode->width)
43 return (qrCode->data[y * qrCode->width + x] & 0x01) == 1;
55 print_qrcode(QRcode* qrCode, bool waitForKey) argument
58 for (int y = 0; y < qrCode->width; y += 2) {
62 for (int x = 0; x < qrCode->width; x++) {
63 bool upper = qrcode_bit(qrCode, x, y);
64 bool lower = qrcode_bit(qrCode,
[all...]

Completed in 91 milliseconds