/plugin/dpicorrect/ |
H A D | action.php | 120 …$b1 = ord(fread($a,1)) << 24; $b2 = ord(fread($a,1)) << 16; $b3 = ord(fread($a,1)) << 8; $b4 = ord… 121 $skip = $b1 + $b2 + $b3 + $b4; 128 …$b1 = ord(fread($a,1)) << 24; $b2 = ord(fread($a,1)) << 16; $b3 = ord(fread($a,1)) << 8; $b4 = ord… 129 $xdim = $b1 + $b2 + $b3 + $b4; 130 …$b1 = ord(fread($a,1)) << 24; $b2 = ord(fread($a,1)) << 16; $b3 = ord(fread($a,1)) << 8; $b4 = ord… 131 $ydim = $b1 + $b2 + $b3 + $b4;
|
/plugin/fedauth/ |
H A D | common.php | 32 function array_implode($array, $glue='=', $separator='&', $b1='',$b2='') { argument 37 $val = array_implode($val, $glue, $separator.$b1.$key.$b2, '[', ']'); 38 $string[] = $b1.$key.$b2.$val; 40 $string[] = $b1.$key.$b2.$glue.$val;
|
/plugin/authgooglesheets/vendor/paragonie/constant_time_encoding/src/ |
H A D | Base32.php | 404 $b2 = $chunk[3]; 411 static::$method((($b1 << 4) | ($b2 >> 4)) & 31) . 412 static::$method((($b2 << 1) | ($b3 >> 7)) & 31) . 424 $b2 = $chunk[3]; 430 static::$method((($b1 << 4) | ($b2 >> 4)) & 31) . 431 static::$method((($b2 << 1) | ($b3 >> 7)) & 31) . 439 $b2 = $chunk[3]; 444 static::$method((($b1 << 4) | ($b2 >> 4)) & 31) . 445 static::$method((($b2 << 1) ) & 31);
|
H A D | Base64.php | 80 $b2 = $chunk[3]; 85 static::encode6Bits((($b1 << 2) | ($b2 >> 6)) & 63) . 86 static::encode6Bits( $b2 & 63);
|
/plugin/bibtex/OSBib/ |
H A D | UTF8.php | 76 $b2 = ($ii & 63); 78 $ii = ($b1 * 64) + $b2; 92 $b2 = ($ii & 63); 99 $ii = ((($b1 * 64) + $b2) * 64) + $b3; 113 $b2 = ($ii & 63); 125 $ii = ((((($b1 * 64) + $b2) * 64) + $b3) * 64) + $b4;
|
/plugin/plantumlparser/syntax/ |
H A D | PlantUmlDiagram.php | 70 private function append3bytes($b1, $b2, $b3) { 72 $c2 = (($b1 & 0x3) << 4) | ($b2 >> 4); 73 $c3 = (($b2 & 0xF) << 2) | ($b3 >> 6); 67 append3bytes($b1, $b2, $b3) global() argument
|
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/ |
H A D | DES.php | 734 $b2 = (($r >> 31) & 0x00000001) ^ ($r << 1) ^ $keys[++$ki]; 737 $t = $sbox1[($b1 >> 24) & 0x3F] ^ $sbox2[($b2 >> 24) & 0x3F] ^ 738 $sbox3[($b1 >> 16) & 0x3F] ^ $sbox4[($b2 >> 16) & 0x3F] ^ 739 $sbox5[($b1 >> 8) & 0x3F] ^ $sbox6[($b2 >> 8) & 0x3F] ^ 740 $sbox7[ $b1 & 0x3F] ^ $sbox8[ $b2 & 0x3F] ^ $l;
|
/plugin/dw2pdf/vendor/mpdf/mpdf/src/Gif/ |
H A D | ColorTable.php | 71 $b2 = ($this->m_arColors[$i] & 0x00FF0000) >> 16; 72 $d = abs($r2 - $r1) + abs($g2 - $g1) + abs($b2 - $b1);
|
/plugin/gtime/gtlib/asn1/ |
H A D | ASN1ObjectId.php | 91 $b2 = (int) array_shift($tokens); 93 $this->append($bytes, ($b1 * 40 + $b2));
|
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Loader/Fixtures/themes/theme2/ |
H A D | blocks.html.twig | 3 {% block b2 %}block from theme 2{% endblock %}
|
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/BaseCurves/ |
H A D | KoblitzPrime.php | 273 $b2 = clone $zero; 309 $b2 = $b0->negate(); 312 $b2 = $c->negate(); 321 ['a' => $a2, 'b' => $b2]
|
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Loader/Fixtures/themes/theme1/ |
H A D | blocks.html.twig | 3 {% block b2 %}block from theme 1{% endblock %}
|
/plugin/html2pdf/html2pdf/html2ps/fpdf/ |
H A D | fpdf.php | 2235 $b2='LR'; 2239 $b2=''; 2241 $b2.='L'; 2243 $b2.='R'; 2244 $b=(strpos($border,'T')!==false) ? $b2.'T' : $b2; 2273 $b=$b2; 2313 $b=$b2;
|
/plugin/dokucrypt/ |
H A D | script.js | 2044 var s = "", i = 0, b1, b2; 2052 b2 = utf8.charCodeAt(i + 1); 2053 s += String.fromCharCode(((b1 & 0x1F) << 6) | (b2 & 0x3F)); 2056 b2 = utf8.charCodeAt(i + 1); 2059 ((b2 & 0x3F) << 6) | (b3 & 0x3F));
|
/plugin/dokucrypt2/ |
H A D | script.js | 2116 var s = "", i = 0, b1, b2; 2124 b2 = utf8.charCodeAt(i + 1); 2125 s += String.fromCharCode(((b1 & 0x1F) << 6) | (b2 & 0x3F)); 2128 b2 = utf8.charCodeAt(i + 1); 2131 ((b2 & 0x3F) << 6) | (b3 & 0x3F));
|
/plugin/barcodes/vendor/jucksearm/php-barcode/lib/ |
H A D | QRcode.php | 2348 $b2 = $this->eccTable[$version][$level][1]; 2351 if ($b2 == 0) { 2359 $spec[1] = (int)($data / ($b1 + $b2)); 2360 $spec[2] = (int)($ecc / ($b1 + $b2)); 2361 $spec[3] = $b2;
|
/plugin/sphinxsearch-was/ |
H A D | sphinx.conf | 22 … U+1aa..U+1ab, U+1ac..U+1ad/2, U+1ae->U+288, U+1af..U+1b0/2, U+1b1..U+1b2->U+28a..U+28b, U+1b…
|
/plugin/sphinxsearch/ |
H A D | sphinx.conf | 24 … U+1aa..U+1ab, U+1ac..U+1ad/2, U+1ae->U+288, U+1af..U+1b0/2, U+1b1..U+1b2->U+28a..U+28b, U+1b…
|
/plugin/jcapture/lib/ |
H A D | commons-codec-1.3.jar | ... encodedDataLength
int nbrChunks
byte k
byte l
byte b1
byte b2
byte b3
int encodedIndex
int dataIndex
int i
int nextSeparatorIndex ... |
/plugin/jdraw/lib/ |
H A D | commons-codec-1.3.jar | ... encodedDataLength
int nbrChunks
byte k
byte l
byte b1
byte b2
byte b3
int encodedIndex
int dataIndex
int i
int nextSeparatorIndex ... |
/plugin/qrcode2/ |
H A D | phpqrcode.php | 545 $b2 = self::$eccTable[$version][$level][1]; 549 if($b2 == 0) { 557 $spec[1] = (int)($data / ($b1 + $b2)); 558 $spec[2] = (int)($ecc / ($b1 + $b2)); 559 $spec[3] = $b2;
|
/plugin/jplayer/vendor/happyworm/jplayer/lib/aurora/ |
H A D | aurora.js | 1240 var b1, b2, b3, b4, bom, c, end, littleEndian, nullEnd, pt, result, w1, w2; 1261 b2 = this.peekUInt8(offset++) & 0x3f; 1262 result += String.fromCharCode(((b1 & 0x1f) << 6) | b2); 1264 b2 = this.peekUInt8(offset++) & 0x3f; 1266 result += String.fromCharCode(((b1 & 0x0f) << 12) | (b2 << 6) | b3); 1268 b2 = this.peekUInt8(offset++) & 0x3f; 1271 pt = (((b1 & 0x0f) << 18) | (b2 << 12) | (b3 << 6) | b4) - 0x10000;
|
/plugin/photogallery/phpThumb/ |
H A D | phpthumb.gif.php | 460 $b2 = ($this->m_arColors[$i] & 0x00FF0000) >> 16; 461 $d = abs($r2 - $r1) + abs($g2 - $g1) + abs($b2 - $b1);
|
/plugin/diagramsnet/lib/WEB-INF/lib/ |
H A D | commons-fileupload-1.3.2.jar | META-INF/
META-INF/MANIFEST.MF
org/
org/apache/
org/ ... |
/plugin/pgn4web/pgn4web/ |
H A D | tactics.pgn | 113 [FEN "2r5/pp3pkp/6p1/8/4P1P1/5b2/PqPQ1P1P/2R1K1R1 b - - 0 1"] 436 [FEN "6k1/5pp1/Q3p2p/5b2/8/8/1PPR1qPP/2KBr3 b - - 0 1"] 1892 1. Bb4 cxb4 (1... Rxb4 2. Rxb4 cxb4 3. a6 b3 4. a7 b2 5. a8=Q+) 2. a6 Rc3 2215 [FEN "r4k2/1pq2ppQ/5P2/1BP1P3/1P3n1p/5b2/7P/1R4K1 b - - 0 1"] 2799 [FEN "2rr2k1/1b4p1/7p/p4p2/5b2/2qB4/P1Q3PP/3RR1K1 w - - 0 1"] 2956 [FEN "rn2k2r/ppp3pp/5b2/5b2/2P1N3/8/PP4PP/2KR1BNR b kq - 0 1"] 3316 [FEN "2k1rb1r/ppp3pp/2np1q2/5b2/2B2P2/2P1BQ2/PP1N1P1P/2KR3R b - - 0 1"] 3555 [FEN "2k5/8/5p1B/2b1p1p1/3q2P1/P4PK1/Q5NP/5b2 b - - 0 1"] 3684 [FEN "rn3rk1/pp3pbp/q4Bp1/2pNP3/3p4/5b2/PPPQ1PPP/R2R2K1 w - - 0 1"] 5475 [FEN "2r3k1/pp3r1p/6p1/5b2/1P1nq3/PQ2BN2/5PPP/2R1K2R w K - 0 2"] [all …]
|