Home
last modified time | relevance | path

Searched refs:len (Results 176 – 200 of 422) sorted by path

12345678910>>...17

/plugin/dw2pdf/vendor/mpdf/mpdf/src/Barcode/
H A DCode128.php271 $len = strlen($code);
273 for ($i = 0; $i < $len; ++$i) {
276 if (($i == 0) || ($ean && $i == 1) | ($i > ($len - 4))) {
H A DCode93.php180 $len = strlen($code);
185 for ($i = ($len - 1); $i >= 0; --$i) {
200 for ($i = $len; $i >= 0; --$i) {
H A DI25.php113 $len = strlen($code);
115 for ($i = 0; $i < $len; $i += 2) {
119 for ($i = 1; $i < $len; $i += 2) {
H A DImb.php350 $len = strlen($hex);
351 for ($pos = ($len - 1); $pos >= 0; --$pos) {
H A DPostnet.php70 $len = strlen($code);
74 for ($i = 0; $i < $len; ++$i) {
85 $len = strlen($code);
92 for ($i = 0; $i < $len; ++$i) {
H A DRm4Scc.php82 $len = strlen($code);
128 for ($i = 0; $i < $len; ++$i) {
137 ++$len;
148 for ($i = 0; $i < $len; ++$i) {
H A DS25.php87 $len = strlen($code);
89 for ($i = 0; $i < $len; $i += 2) {
93 for ($i = 1; $i < $len; $i += 2) {
/plugin/dw2pdf/vendor/mpdf/mpdf/src/Conversion/
H A DDecToCjk.php15 $len = strlen($nstr);
16 for ($i = 0; $i < $len; $i++) {
H A DDecToOther.php27 $len = strlen($nstr);
29 for ($i = 0; $i < $len; $i++) {
/plugin/dw2pdf/vendor/mpdf/mpdf/src/Gif/
H A DGif.php52 $len = 0;
53 if (!$this->m_gfh->load($this->m_lpData, $len)) {
57 $this->m_lpData = substr($this->m_lpData, $len);
H A DImage.php60 $len = 0;
61 if (!$this->skipExt($data, $len)) {
64 $datLen += $len;
69 $len = 0;
70 if (!$this->m_gih->load($data, $len)) {
73 $data = substr($data, $len);
74 $datLen += $len;
77 $len = 0;
79 if (!($this->m_data = $this->m_lzw->deCompress($data, $len))) {
83 $data = substr($data, $len);
[all...]
/plugin/dw2pdf/vendor/mpdf/mpdf/src/
H A DMpdf.php10681 $len = strlen($str);
10682 for ($i = 0; $i < $len; $i++) {
10688 if (($h <= 0xDF) && ($i < $len - 1)) {
10690 } elseif (($h <= 0xEF) && ($i < $len - 2)) {
10692 } elseif (($h <= 0xF4) && ($i < $len - 3)) {
H A DOtl.php5725 public function sliceOTLdata($OTLdata, $pos, $len) argument
5728 $newOTLdata['group'] = substr($OTLdata['group'], $pos, $len);
5732 if ($k >= $pos && $k < ($pos + $len)) {
5739 $newOTLdata['char_data'] = array_slice($OTLdata['char_data'], $pos, $len);
5794 $len = (!is_array($cOTLdata) || $cOTLdata['char_data'] === null) ? 0 : count($cOTLdata['char_data']);
5797 for ($i = 0; $i < $len; $i++) {
5805 for ($i = ($len - 1); $i >= 0; $i--) {
5819 if ($k >= $len - $nRight) {
H A DOtlDump.php293 $len = strlen($data);
296 for ($i = 0; $i < $len; $i += 4) {
H A DTTFontFile.php368 $len = strlen($data);
372 for ($i = 0; $i < $len; $i += 4) {
/plugin/dw2pdf/vendor/mpdf/mpdf/src/Pdf/
H A DProtection.php138 $len = 16;
140 $len = 10;
143 return substr($this->md5toBinary($this->encryptionKey . pack('VXxx', $n)), 0, $len);
172 $len = strlen($text);
176 for ($i = 0; $i < $len; $i++) {
269 $len = strlen($owner_rc4_key);
272 for ($j = 0; $j < $len; ++$j) {
287 $len = strlen($tmp);
290 for ($j = 0; $j < $len; ++$j) {
349 $len
[all...]
/plugin/dw2pdf/vendor/mpdf/mpdf/src/Shaper/
H A DIndic.php1928 public static function bubble_sort(&$arr, $start, $len) argument
1930 if ($len < 2) {
1933 $k = $start + $len - 2;
H A DMyanmar.php526 public static function bubble_sort(&$arr, $start, $len) argument
528 if ($len < 2) {
531 $k = $start + $len - 2;
H A DSea.php380 public static function bubble_sort(&$arr, $start, $len) argument
382 if ($len < 2) {
385 $k = $start + $len - 2;
/plugin/edittable/action/
H A Deditor.php157 $len = $this->strWidth($data[$row][$col]);
161 $len += 4;
163 $len += 3;
167 $meta[$row][$col]['length'] = $len;
169 if ($len > $colmax[$col]) $colmax[$col] = $len;
/plugin/edittable/lib/
H A Dhandsontable.full.js372 var len = 0,
380 len++;
404 var len = 0;
416 len++;
422 var len = 0;
434 len++;
449 var len = 0,
462 len++;
469 var len = 0,
478 len++;
[all …]
/plugin/elasticsearch/vendor/ezimuel/guzzlestreams/src/
H A DCachingStream.php84 $len = strlen($remoteData);
86 $this->skipReadBytes = max(0, $this->skipReadBytes - $len);
H A DUtils.php71 $len = 0;
72 while (!$stream->eof() && $len < $maxLen) {
73 $buf = $stream->read($maxLen - $len);
78 $len = strlen($buffer);
110 if (!($len = strlen($buf))) {
113 $bytes += $len;
/plugin/elasticsearch/vendor/ezimuel/guzzlestreams/tests/
H A DFnStreamTest.php24 'read' => function ($len) {
25 $this->assertEquals(3, $len);
85 'read' => function ($len) use (&$called, $a) {
87 return $a->read($len);
/plugin/elasticsearch/vendor/patrickschur/language-detection/resources/cs/
H A Dcs.txt

12345678910>>...17