Home
last modified time | relevance | path

Searched refs:bits (Results 76 – 94 of 94) sorted by last modified time

1234

/plugin/scrape/
H A DHTMLPurifier.standalone.php
/plugin/jukebox/id3/
H A Dgetid3.lib.php123 function Float2String($floatvalue, $bits) { argument
125 switch ($bits) {
150 …dian2String(getid3_lib::Bin2Dec($signbit.$exponentbitstring.$fractionbitstring), $bits % 8, false);
/plugin/pgn4web/pgn4web/
H A Dpgn-encoder.js307 var bits = "";
311 if (ov.charCodeAt(i) > 255) { bits += LetterCodes[42]; }
312 else { bits += LetterCodes[ov.charCodeAt(i)]; }
313 while (bits.length > 5) {
314 bytes += BitsToBytes(bits);
315 bits = bits.slice(6, bits.length);
318 bytes += BitsToBytes(bits);
H A Dpgn-standard.txt2731 contiguous bytes), and doublewords (four contiguous bytes). All eight bits of
H A Dpgn-encoder.php299 $bits = "";
303 if (ord(substr($ov, $i, 1)) > 255) { $bits = $bits . $LetterCodes[42]; }
304 else { $bits = $bits . $LetterCodes[ord(substr($ov, $i, 1))]; }
305 while (strlen($bits) > 5) {
306 $bytes = $bytes . BitsToBytes($bits);
307 $bits = substr($bits, 6);
310 $bytes = $bytes . BitsToBytes($bits);
/plugin/pgn4web/pgn4web/libs/garbochess/
H A Dgarbochess.js1255 this.next = function (bits) argument
1279 return (y >>> (32 - bits)) & 0xFFFFFFFF;
/plugin/sqlraw/
H A Dsimple_html_dom.php819 $bits=0;
827 elseif($c >= 252) $bits=6;
828 elseif($c >= 248) $bits=5;
829 elseif($c >= 240) $bits=4;
830 elseif($c >= 224) $bits=3;
831 elseif($c >= 192) $bits=2;
833 if(($i+$bits) > $len) return false;
834 while($bits > 1)
839 $bits--;
/plugin/geonav/tpl/startermap/css/
H A Ddesign.css3 * bits that surround the content.
/plugin/jcapture/lib/
H A Dcommons-codec-1.3.jar ... static final int BIT_7 private static final int[] BITS public void <init> () public byte[ ...
H A Dtransform-3.0.2.jarMETA-INF/MANIFEST.MF META-INF/HAMMURAP.SF META-INF/HAMMURAP ...
/plugin/bible/bible_douayRheims/
H A DJames.txt56 …3:3. For if we put bits into the mouths of horses, that they may obey us: and we turn about their …
/plugin/jdraw/lib/
H A Dcommons-codec-1.3.jar ... static final int BIT_7 private static final int[] BITS public void <init> () public byte[ ...
/plugin/qrcode2/
H A Dphpqrcode.php1211 $bits = 0;
1232 return $bits;
1417 $bits = $w * 10;
1430 return $bits;
1467 $bits = $w * 11;
1470 $bits += 6;
1473 return $bits;
1533 $bits = 0;
1539 return $bits;
1662 $bits += 4;
[all …]
/plugin/jmol2/jmol/
H A DJmolApplet.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/jmol/ org/ ...
H A DJmolAppletSigned.jarMETA-INF/MANIFEST.MF META-INF/SELFSIGN.SF META-INF/SELFSIGN ...
H A DJmolAppletSigned0.jarMETA-INF/MANIFEST.MF META-INF/SELFSIGN.SF META-INF/SELFSIGN ...
H A DJmolApplet0.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/obrador/ javax/ ...
/plugin/register/
H A Dsyntax.php77 private function push_bit(&$bits, &$bit) argument
88 array_push($bits, array($range[0], $range[1], $bit["name"], $bit["desc"], $bit["flags"]));
94 $bits = array();
109 $this->push_bit($bits, $bit);
118 $this->push_bit($bits, $bit);
129 return array($keys, $bits);
181 $bits = array_reverse($adi_xml_result["bits"]);
182 return array($keys, $bits);
193 list($keys, $bits) = $ret;
215 $bits
H A Dregister.php199 var $name, $desc, $mmr_addr, $maxbits, $bits, $resetval, $bitrange, $perms, $sub_desc;
200 public function register($name, $desc, $mmr_addr, $resetval, $maxbits, $perms, $sub_desc, $bits) argument
210 $this->bits = array();
212 foreach ($bits as $bit) {
215 $this->bits[$b->start] = $b;
221 foreach ($this->bits as $b) {
237 private function bitrange($bits, $upper, $lower) argument
240 return ($bits & ((1 << $upper) - 1) ^ ((1 << $lower) - 1)) >> $lower;
291 foreach ($register->bits as $bit)

1234