Searched refs:rsblocks (Results 1 – 2 of 2) sorted by relevance
/plugin/barcodes/vendor/jucksearm/php-barcode/lib/ |
H A D | QRcode.php | 355 protected $rsblocks = array(); //of RSblock variable in jucksearm\\barcode\\lib\\QRcode 827 $this->rsblocks[$blockNo] = array(); 828 $this->rsblocks[$blockNo]['dataLength'] = $dl; 829 $this->rsblocks[$blockNo]['data'] = array_slice($this->datacode, $dataPos); 830 $this->rsblocks[$blockNo]['eccLength'] = $el; 831 $ecc = $this->encode_rs_char($rs, $this->rsblocks[$blockNo]['data'], $ecc); 832 $this->rsblocks[$blockNo]['ecc'] = $ecc; 850 $this->rsblocks[$blockNo] = array(); 851 $this->rsblocks[$blockNo]['dataLength'] = $dl; 852 $this->rsblocks[ [all...] |
/plugin/qrcode2/ |
H A D | phpqrcode.php | 2860 public $rsblocks = array(); //of RSblock variable in QRrawcode 2907 …$this->rsblocks[$blockNo] = new QRrsblock($dl, array_slice($this->datacode, $dataPos), $el, $ecc,… 2926 …$this->rsblocks[$blockNo] = new QRrsblock($dl, array_slice($this->datacode, $dataPos), $el, $ecc, … 2945 if($col >= $this->rsblocks[0]->dataLength) { 2948 $ret = $this->rsblocks[$row]->data[$col]; 2952 $ret = $this->rsblocks[$row]->ecc[$col];
|