Home
last modified time | relevance | path

Searched refs:bstream (Results 1 – 2 of 2) sorted by relevance

/plugin/qrcode2/
Dphpqrcode.php1049 public $bstream; variable in QRinputItem
1051 public function __construct($mode, $size, $data, $bstream = null) argument
1067 $this->bstream = $bstream;
1098 $this->bstream = $bs;
1128 $this->bstream = $bs;
1149 $this->bstream = $bs;
1181 $this->bstream = $bs;
1200 $this->bstream = $bs;
1240 unset($this->bstream);
1251 $this->bstream = new QRbitstream();
[all …]
/plugin/barcodes/vendor/jucksearm/php-barcode/lib/
DQRcode.php1471 protected function newInputItem($mode, $size, $data, $bstream=null) { argument
1483 $inputitem['bstream'] = $bstream;
2013 protected function appendPaddingBit($bstream) { argument
2014 if (is_null($bstream)) {
2017 $bits = count($bstream);
2021 return $bstream;
2024 return $this->appendNum($bstream, $maxbits - $bits, 0);
2038 return $this->appendBitstream($bstream, $padding);
2051 $bstream = array();
2053 $bstream = $this->appendBitstream($bstream, $item['bstream']);
[all …]