Lines Matching refs:getBit
82 static bool getBit(int x, int i);
529 setModuleBounded(qrcode, 8, i, getBit(bits, i));
530 setModuleBounded(qrcode, 8, 7, getBit(bits, 6));
531 setModuleBounded(qrcode, 8, 8, getBit(bits, 7));
532 setModuleBounded(qrcode, 7, 8, getBit(bits, 8));
534 setModuleBounded(qrcode, 14 - i, 8, getBit(bits, i));
539 setModuleBounded(qrcode, qrsize - 1 - i, 8, getBit(bits, i));
541 setModuleBounded(qrcode, 8, qrsize - 15 + i, getBit(bits, i));
590 bool dark = getBit(data[i >> 3], 7 - (i & 7));
774 return getBit(qrcode[(index >> 3) + 1], index & 7);
801 static bool getBit(int x, int i) {