Home | History | Annotate | Download | only in php

Lines Matching refs:offset

46      * returns actual vtable offset
49 * @return int offset > 0 means exist value. 0 means not exist
58 * @param $offset
61 protected function __indirect($offset)
63 return $offset + $this->bb->getInt($offset);
69 * @param $offset
72 protected function __string($offset)
74 $offset += $this->bb->getInt($offset);
75 $len = $this->bb->getInt($offset);
76 $startPos = $offset + Constants::SIZEOF_INT;
81 * @param $offset
84 protected function __vector_len($offset)
86 $offset += $this->bb_pos;
87 $offset += $this->bb->getInt($offset);
88 return $this->bb->getInt($offset);
92 * @param $offset
95 protected function __vector($offset)
97 $offset += $this->bb_pos;
99 return $offset + $this->bb->getInt($offset) + Constants::SIZEOF_INT;
114 * @param int $offset
117 protected function __union($table, $offset)
119 $offset += $this->bb_pos;
120 $table->setByteBufferPos($offset + $this->bb->getInt($offset));