Lines Matching refs:this
12 // notice, this list of conditions and the following disclaimer.
14 // copyright notice, this list of conditions and the following disclaimer
19 // this software without specific prior written permission.
46 $this->current = 0;
47 $this->buffer_size = $size;
48 $this->buffer = str_repeat(chr(0), $this->buffer_size);
53 return $this->buffer;
60 return $this->writeRaw($bytes, $size);
67 return $this->writeRaw($bytes, $size);
74 return $this->writeRaw($bytes, $size);
81 return $this->writeRaw($bytes, $size);
86 return $this->writeVarint32($tag, true);
91 if ($this->buffer_size < $size) {
97 $this->buffer[$this->current] = $data[$i];
98 $this->current++;
99 $this->buffer_size--;