Home
last modified time | relevance | path

Searched refs:y_size (Results 1 – 2 of 2) sorted by relevance

/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/
H A DPHP.php233 $y_size = count($y_value);
240 } elseif ($y_size == 0) {
263 if ($x_size < $y_size) {
267 $size = $y_size;
318 $y_size = count($y_value);
325 } elseif ($y_size == 0) {
358 $y_size = count($y_value);
364 for ($i = 0, $j = 1; $j < $y_size; $i += 2, $j += 2) {
376 if ($j == $y_size) { // ie. if $y_size is odd
/plugin/photogallery/phpThumb/
H A Dphpthumb.functions.php375 public static function ImageCreateFunction($x_size, $y_size) { argument
383 if (($x_size <= 0) || ($y_size <= 0)) {
384 …pthumb::ErrorImage('Invalid image dimensions: '.$ImageCreateFunction.'('.$x_size.', '.$y_size.')');
386 return $ImageCreateFunction(round($x_size), round($y_size));