Lines Matching refs:count
65 function get_random_bytes($count)
70 $output = fread($fh, $count);
74 if (strlen($output) < $count) {
76 for ($i = 0; $i < $count; $i += 16) {
82 $output = substr($output, 0, $count);
88 function encode64($input, $count)
95 if ($i < $count)
98 if ($i++ >= $count)
100 if ($i < $count)
103 if ($i++ >= $count)
106 } while ($i < $count);
136 $count = 1 << $count_log2;
152 } while (--$count);
157 } while (--$count);
171 $count = (1 << $count_log2) - 1;
174 $output .= $this->itoa64[$count & 0x3f];
175 $output .= $this->itoa64[($count >> 6) & 0x3f];
176 $output .= $this->itoa64[($count >> 12) & 0x3f];
177 $output .= $this->itoa64[($count >> 18) & 0x3f];