Searched refs:m2 (Results 1 – 16 of 16) sorted by relevance
/php-src/ext/gd/libgd/ |
H A D | gd_matrix.c | 125 dst0 = m1[0] * m2[0] + m1[1] * m2[2]; in gdAffineConcat() 126 dst1 = m1[0] * m2[1] + m1[1] * m2[3]; in gdAffineConcat() 127 dst2 = m1[2] * m2[0] + m1[3] * m2[2]; in gdAffineConcat() 128 dst3 = m1[2] * m2[1] + m1[3] * m2[3]; in gdAffineConcat() 129 dst4 = m1[4] * m2[0] + m1[5] * m2[2] + m2[4]; in gdAffineConcat() 130 dst5 = m1[4] * m2[1] + m1[5] * m2[3] + m2[5]; in gdAffineConcat() 326 fabs (m1[1] - m2[1]) < GD_EPSILON && in gdAffineEqual() 327 fabs (m1[2] - m2[2]) < GD_EPSILON && in gdAffineEqual() 328 fabs (m1[3] - m2[3]) < GD_EPSILON && in gdAffineEqual() 329 fabs (m1[4] - m2[4]) < GD_EPSILON && in gdAffineEqual() [all …]
|
H A D | gd_interpolation.c | 688 const double m2 = nxf * yf; in getPixelInterpolateWeight() local 704 …r = (int)(m1*gdTrueColorGetRed(c1) + m2*gdTrueColorGetRed(c2) + m3*gdTrueColorGetRed(c3) + m… in getPixelInterpolateWeight() 705 …g = (int)(m1*gdTrueColorGetGreen(c1) + m2*gdTrueColorGetGreen(c2) + m3*gdTrueColorGetGreen(c3) + m… in getPixelInterpolateWeight() 706 …b = (int)(m1*gdTrueColorGetBlue(c1) + m2*gdTrueColorGetBlue(c2) + m3*gdTrueColorGetBlue(c3) + m… in getPixelInterpolateWeight() 707 …a = (int)(m1*gdTrueColorGetAlpha(c1) + m2*gdTrueColorGetAlpha(c2) + m3*gdTrueColorGetAlpha(c3) + m… in getPixelInterpolateWeight() 709 r = (int)(m1*im->red[(c1)] + m2*im->red[(c2)] + m3*im->red[(c3)] + m4*im->red[(c4)]); in getPixelInterpolateWeight() 710 g = (int)(m1*im->green[(c1)] + m2*im->green[(c2)] + m3*im->green[(c3)] + m4*im->green[(c4)]); in getPixelInterpolateWeight() 711 b = (int)(m1*im->blue[(c1)] + m2*im->blue[(c2)] + m3*im->blue[(c3)] + m4*im->blue[(c4)]); in getPixelInterpolateWeight() 712 a = (int)(m1*im->alpha[(c1)] + m2*im->alpha[(c2)] + m3*im->alpha[(c3)] + m4*im->alpha[(c4)]); in getPixelInterpolateWeight()
|
H A D | gd.h | 909 int gdAffineConcat (double dst[6], const double m1[6], const double m2[6]);
|
/php-src/Zend/tests/traits/bugs/ |
H A D | alias01.phpt | 7 function m2() { echo "T:m2\n"; } 17 $o->m2(); 24 T:m2
|
/php-src/Zend/tests/type_declarations/variance/ |
H A D | class_order_autoload_error9.phpt | 11 function m2(): B {} 18 function m2(): Y {} 39 Fatal error: Declaration of B::m2(): Y must be compatible with A::m2(): B in %s on line %d
|
H A D | class_order_autoload6.phpt | 11 function m2(): B {} 18 function m2(): Y {}
|
H A D | class_order_autoload_error8.phpt | 11 function m2(): B {} 18 function m2(): Y {}
|
/php-src/ext/reflection/tests/ |
H A D | traits005.phpt | 5 trait T1 { function m1() { } function m2() { } } 10 class C4 { use T1 { m1 as a1; m2 as a2; } } 40 string(6) "T1::m2"
|
/php-src/Zend/tests/weakrefs/ |
H A D | gh10043-011.phpt | 15 $m2 = $m; 16 unset($m2, $k, $v);
|
/php-src/ext/sodium/tests/ |
H A D | crypto_shorthash.phpt | 14 $m2 = 'msg'; 15 $h3 = sodium_crypto_shorthash($m2, $k2);
|
/php-src/ext/standard/tests/array/ |
H A D | bug34227.phpt | 10 $this->m2(); 13 function m2()
|
/php-src/Zend/tests/anon/ |
H A D | 010.phpt | 11 public function m2() {
|
/php-src/Zend/ |
H A D | bench.php | 278 function mmult ($rows, $cols, $m1, $m2) { argument 284 $x += $m1[$i][$k] * $m2[$k][$j]; 295 $m2 = mkmatrix($SIZE, $SIZE); 297 $mm = mmult($SIZE, $SIZE, $m1, $m2);
|
H A D | zend_strtod.c | 3740 j, j1 = 0, k, k0, k_check, leftright, m2, m5, s2, s5, in zend_dtoa() local 4133 m2 = b2; in zend_dtoa() 4150 if (m2 > 0 && s2 > 0) { in zend_dtoa() 4151 i = m2 < s2 ? m2 : s2; in zend_dtoa() 4153 m2 -= i; in zend_dtoa() 4203 m2 += i; in zend_dtoa() 4231 if (m2 > 0) in zend_dtoa() 4232 mhi = lshift(mhi, m2); in zend_dtoa()
|
/php-src/build/ |
H A D | php_cxx_compile_stdcxx.m4 | 819 m2 {p2} 823 T2 m2;
|
/php-src/ext/gd/ |
H A D | gd.c | 4171 double m2[6]; in PHP_FUNCTION() local 4215 m2[i] = Z_LVAL_P(tmp); in PHP_FUNCTION() 4218 m2[i] = Z_DVAL_P(tmp); in PHP_FUNCTION() 4221 m2[i] = zval_get_double(tmp); in PHP_FUNCTION() 4230 if (gdAffineConcat (mr, m1, m2) != GD_TRUE) { in PHP_FUNCTION()
|
Completed in 53 milliseconds