Lines Matching refs:bit
132 * Encoding mode numeric (0-9). 3 characters are encoded to 10bit length. In theory, 7089 characters or less can be stored in a QRcode.
137 * Encoding mode alphanumeric (0-9A-Z $%*+-./:) 45characters. 2 characters are encoded to 11bit length. In theory, 4296 characters or less can be stored in a QRcode.
142 * Encoding mode 8bit byte data. In theory, 2953 characters or less can be stored in a QRcode.
147 * Encoding mode KANJI. A KANJI character (multibyte character) is encoded to 13bit length. In theory, 1817 characters or less can be stored in a QRcode.
308 * X position of bit.
314 * Y position of bit.
326 * Single bit value.
329 protected $bit;
701 $this->bit = -1;
705 $bit = 0x80;
708 $this->setFrameAt($addr, 0x02 | (($bit & $code) != 0));
709 $bit = $bit >> 1;
763 if ($this->bit == -1) {
764 $this->bit = 0;
770 if ($this->bit == 0) {
772 $this->bit++;
776 $this->bit--;
2069 * Pack all bit streams padding bits into a byte array.
2543 // and a little bit...