Advanced Web Server Manager
Complete File Manager & Terminal - Standalone Version
By Sid Gifari | Gifari Industries
Current path:
/
/
home
/
qtdcvxyp
/
public_html
/
sms
/
backend
/
plugins
/
ckeditor
/
plugins
/
ckeditor_wiris
/
integration
/
lib
/
haxe
/
io
✏️
Editing: Output.class.php
<?php class haxe_io_Output { public function __construct(){} public function writeString($s) { $b = haxe_io_Bytes::ofString($s); $this->writeFullBytes($b, 0, $b->length); } public function writeInput($i, $bufsize = null) { if($bufsize === null) { $bufsize = 4096; } $buf = haxe_io_Bytes::alloc($bufsize); try { while(true) { $len = $i->readBytes($buf, 0, $bufsize); if($len === 0) { throw new HException(haxe_io_Error::$Blocked); } $p = 0; while($len > 0) { $k = $this->writeBytes($buf, $p, $len); if($k === 0) { throw new HException(haxe_io_Error::$Blocked); } $p += $k; $len -= $k; unset($k); } unset($p,$len); } }catch(Exception $�e) { $_ex_ = ($�e instanceof HException) ? $�e->e : $�e; if(($e = $_ex_) instanceof haxe_io_Eof){ } else throw $�e;; } } public function prepare($nbytes) { } public function writeInt32($x) { if($this->bigEndian) { $this->writeByte(haxe_io_Output_0($this, $x)); $this->writeByte(haxe_io_Output_1($this, $x) & 255); $this->writeByte(haxe_io_Output_2($this, $x) & 255); $this->writeByte(haxe_io_Output_3($this, $x)); } else { $this->writeByte(haxe_io_Output_4($this, $x)); $this->writeByte(haxe_io_Output_5($this, $x) & 255); $this->writeByte(haxe_io_Output_6($this, $x) & 255); $this->writeByte(haxe_io_Output_7($this, $x)); } } public function writeUInt30($x) { if($x < 0 || $x >= 1073741824) { throw new HException(haxe_io_Error::$Overflow); } if($this->bigEndian) { $this->writeByte(_hx_shift_right($x, 24)); $this->writeByte($x >> 16 & 255); $this->writeByte($x >> 8 & 255); $this->writeByte($x & 255); } else { $this->writeByte($x & 255); $this->writeByte($x >> 8 & 255); $this->writeByte($x >> 16 & 255); $this->writeByte(_hx_shift_right($x, 24)); } } public function writeInt31($x) { if($x < -1073741824 || $x >= 1073741824) { throw new HException(haxe_io_Error::$Overflow); } if($this->bigEndian) { $this->writeByte(_hx_shift_right($x, 24)); $this->writeByte($x >> 16 & 255); $this->writeByte($x >> 8 & 255); $this->writeByte($x & 255); } else { $this->writeByte($x & 255); $this->writeByte($x >> 8 & 255); $this->writeByte($x >> 16 & 255); $this->writeByte(_hx_shift_right($x, 24)); } } public function writeUInt24($x) { if($x < 0 || $x >= 16777216) { throw new HException(haxe_io_Error::$Overflow); } if($this->bigEndian) { $this->writeByte($x >> 16); $this->writeByte($x >> 8 & 255); $this->writeByte($x & 255); } else { $this->writeByte($x & 255); $this->writeByte($x >> 8 & 255); $this->writeByte($x >> 16); } } public function writeInt24($x) { if($x < -8388608 || $x >= 8388608) { throw new HException(haxe_io_Error::$Overflow); } $this->writeUInt24($x & 16777215); } public function writeUInt16($x) { if($x < 0 || $x >= 65536) { throw new HException(haxe_io_Error::$Overflow); } if($this->bigEndian) { $this->writeByte($x >> 8); $this->writeByte($x & 255); } else { $this->writeByte($x & 255); $this->writeByte($x >> 8); } } public function writeInt16($x) { if($x < -32768 || $x >= 32768) { throw new HException(haxe_io_Error::$Overflow); } $this->writeUInt16($x & 65535); } public function writeInt8($x) { if($x < -128 || $x >= 128) { throw new HException(haxe_io_Error::$Overflow); } $this->writeByte($x & 255); } public function writeDouble($x) { $this->write(haxe_io_Bytes::ofString(pack("d", $x))); } public function writeFloat($x) { $this->write(haxe_io_Bytes::ofString(pack("f", $x))); } public function writeFullBytes($s, $pos, $len) { while($len > 0) { $k = $this->writeBytes($s, $pos, $len); $pos += $k; $len -= $k; unset($k); } } public function write($s) { $l = $s->length; $p = 0; while($l > 0) { $k = $this->writeBytes($s, $p, $l); if($k === 0) { throw new HException(haxe_io_Error::$Blocked); } $p += $k; $l -= $k; unset($k); } } public function setEndian($b) { $this->bigEndian = $b; return $b; } public function close() { } public function flush() { } public function writeBytes($s, $pos, $len) { $k = $len; $b = $s->b; if($pos < 0 || $len < 0 || $pos + $len > $s->length) { throw new HException(haxe_io_Error::$OutsideBounds); } while($k > 0) { $this->writeByte(ord($b[$pos])); $pos++; $k--; } return $len; } public function writeByte($c) { throw new HException("Not implemented"); } public $bigEndian; public function __call($m, $a) { if(isset($this->$m) && is_callable($this->$m)) return call_user_func_array($this->$m, $a); else if(isset($this->�dynamics[$m]) && is_callable($this->�dynamics[$m])) return call_user_func_array($this->�dynamics[$m], $a); else if('toString' == $m) return $this->__toString(); else throw new HException('Unable to call �'.$m.'�'); } static $LN2; static $__properties__ = array("set_bigEndian" => "setEndian"); function __toString() { return 'haxe.io.Output'; } } haxe_io_Output::$LN2 = Math::log(2); function haxe_io_Output_0(&$�this, &$x) { { $x1 = _hx_shift_right($x, 24); if(($x1 >> 30 & 1) !== _hx_shift_right($x1, 31)) { throw new HException("Overflow " . Std::string($x1)); } return $x1 & -1; } } function haxe_io_Output_1(&$�this, &$x) { { $x1 = _hx_shift_right($x, 16); if(($x1 >> 30 & 1) !== _hx_shift_right($x1, 31)) { throw new HException("Overflow " . Std::string($x1)); } return $x1 & -1; } } function haxe_io_Output_2(&$�this, &$x) { { $x1 = _hx_shift_right($x, 8); if(($x1 >> 30 & 1) !== _hx_shift_right($x1, 31)) { throw new HException("Overflow " . Std::string($x1)); } return $x1 & -1; } } function haxe_io_Output_3(&$�this, &$x) { { $x1 = $x & (255 | 0); if(($x1 >> 30 & 1) !== _hx_shift_right($x1, 31)) { throw new HException("Overflow " . Std::string($x1)); } return $x1 & -1; } } function haxe_io_Output_4(&$�this, &$x) { { $x1 = $x & (255 | 0); if(($x1 >> 30 & 1) !== _hx_shift_right($x1, 31)) { throw new HException("Overflow " . Std::string($x1)); } return $x1 & -1; } } function haxe_io_Output_5(&$�this, &$x) { { $x1 = _hx_shift_right($x, 8); if(($x1 >> 30 & 1) !== _hx_shift_right($x1, 31)) { throw new HException("Overflow " . Std::string($x1)); } return $x1 & -1; } } function haxe_io_Output_6(&$�this, &$x) { { $x1 = _hx_shift_right($x, 16); if(($x1 >> 30 & 1) !== _hx_shift_right($x1, 31)) { throw new HException("Overflow " . Std::string($x1)); } return $x1 & -1; } } function haxe_io_Output_7(&$�this, &$x) { { $x1 = _hx_shift_right($x, 24); if(($x1 >> 30 & 1) !== _hx_shift_right($x1, 31)) { throw new HException("Overflow " . Std::string($x1)); } return $x1 & -1; } }
💾 Save Changes
❌ Cancel