Home
last modified time | relevance | path

Searched refs:y0 (Results 1 – 3 of 3) sorted by relevance

/php-src/Zend/tests/
H A Dbug35239.phpt7 $a->x0->y0 = 'a';
10 $a->x0->y0 = 'b';
19 ["y0"]=>
/php-src/ext/random/
H A Dphp_random_uint128.h67 y0 = num2.lo & 0xffffffffULL, in php_random_uint128_multiply() local
69 z0 = (((x1 * y0) + (x0 * y0 >> 32)) & 0xffffffffULL) + x0 * y1; in php_random_uint128_multiply()
73 r.hi += x1 * y1 + ((x1 * y0 + (x0 * y0 >> 32)) >> 32) + (z0 >> 32); in php_random_uint128_multiply()
/php-src/ext/gd/libgd/
H A Dgd.c684 static int clip_1d(int *x0, int *y0, int *x1, int *y1, int maxdim) { in clip_1d() argument
691 m = (*y1 - *y0)/(double)(*x1 - *x0); /* calculate the slope of the line */ in clip_1d()
693 *y0 -= (int)(m * *x0); in clip_1d()
706 m = (*y1 - *y0)/(double)(*x1 - *x0); /* calculate the slope of the line */ in clip_1d()
707 *y0 += (int)(m * (maxdim - *x0)); /* adjust so point is on the right boundary */ in clip_1d()
718 m = (*y1 - *y0)/(double)(*x1 - *x0); /* calculate the slope of the line */ in clip_1d()
724 m = (*y1 - *y0)/(double)(*x1 - *x0); /* calculate the slope of the line */ in clip_1d()

Completed in 28 milliseconds