Lines Matching refs:min
35 private $min; variable in GTBaseX
72 $this->min = -1;
81 for ($i = 0; $i < ($this->max - $this->min) + 1; $i++) {
94 for ($i = 0; $i < ($this->max - $this->min) + 1; $i++) {
103 if ($pad >= $this->min && $pad <= $this->max && $this->values[$pad - $this->min] != -1) {
161 if ($c >= $this->min && $c <= $this->max && $this->values[$c - $this->min] != -1) {
242 if ($next < $this->min || $next > $this->max) {
246 $next = $this->values[$next - $this->min];
281 if ($this->min == -1 || $this->min > $c) {
282 $this->min = $c;
302 $c = ord($string{$i}) - $this->min;