Lines Matching defs:index
93 // value maps to the index in the string. For checking text and encoding segments.
98 // Version: (note that index 0 is for padding, and is set to an illegal value)
110 // Version: (note that index 0 is for padding, and is set to an illegal value)
579 int i = 0; // Bit index into the data
773 int index = y * qrsize + x;
774 return getBit(qrcode[(index >> 3) + 1], index & 7);
782 int index = y * qrsize + x;
783 int bitIndex = index & 7;
784 int byteIndex = (index >> 3) + 1;