Home
last modified time | relevance | path

Searched refs:m2 (Results 1 – 13 of 13) sorted by relevance

/PHP-7.4/ext/gd/libgd/
H A Dgd_matrix.c127 dst0 = m1[0] * m2[0] + m1[1] * m2[2]; in gdAffineConcat()
128 dst1 = m1[0] * m2[1] + m1[1] * m2[3]; in gdAffineConcat()
129 dst2 = m1[2] * m2[0] + m1[3] * m2[2]; in gdAffineConcat()
130 dst3 = m1[2] * m2[1] + m1[3] * m2[3]; in gdAffineConcat()
131 dst4 = m1[4] * m2[0] + m1[5] * m2[2] + m2[4]; in gdAffineConcat()
132 dst5 = m1[4] * m2[1] + m1[5] * m2[3] + m2[5]; in gdAffineConcat()
328 fabs (m1[1] - m2[1]) < GD_EPSILON && in gdAffineEqual()
329 fabs (m1[2] - m2[2]) < GD_EPSILON && in gdAffineEqual()
330 fabs (m1[3] - m2[3]) < GD_EPSILON && in gdAffineEqual()
331 fabs (m1[4] - m2[4]) < GD_EPSILON && in gdAffineEqual()
[all …]
H A Dgd_interpolation.c699 const double m2 = nxf * yf; in getPixelInterpolateWeight() local
715 …r = (int)(m1*gdTrueColorGetRed(c1) + m2*gdTrueColorGetRed(c2) + m3*gdTrueColorGetRed(c3) + m… in getPixelInterpolateWeight()
716 …g = (int)(m1*gdTrueColorGetGreen(c1) + m2*gdTrueColorGetGreen(c2) + m3*gdTrueColorGetGreen(c3) + m… in getPixelInterpolateWeight()
717 …b = (int)(m1*gdTrueColorGetBlue(c1) + m2*gdTrueColorGetBlue(c2) + m3*gdTrueColorGetBlue(c3) + m… in getPixelInterpolateWeight()
718 …a = (int)(m1*gdTrueColorGetAlpha(c1) + m2*gdTrueColorGetAlpha(c2) + m3*gdTrueColorGetAlpha(c3) + m… in getPixelInterpolateWeight()
720 r = (int)(m1*im->red[(c1)] + m2*im->red[(c2)] + m3*im->red[(c3)] + m4*im->red[(c4)]); in getPixelInterpolateWeight()
721 g = (int)(m1*im->green[(c1)] + m2*im->green[(c2)] + m3*im->green[(c3)] + m4*im->green[(c4)]); in getPixelInterpolateWeight()
722 b = (int)(m1*im->blue[(c1)] + m2*im->blue[(c2)] + m3*im->blue[(c3)] + m4*im->blue[(c4)]); in getPixelInterpolateWeight()
723 a = (int)(m1*im->alpha[(c1)] + m2*im->alpha[(c2)] + m3*im->alpha[(c3)] + m4*im->alpha[(c4)]); in getPixelInterpolateWeight()
H A Dgd.h883 int gdAffineConcat (double dst[6], const double m1[6], const double m2[6]);
/PHP-7.4/Zend/tests/traits/bugs/
H A Dalias01.phpt7 function m2() { echo "T:m2\n"; }
17 $o->m2();
24 T:m2
/PHP-7.4/ext/reflection/tests/
H A Dtraits005.phpt5 trait T1 { function m1() { } function m2() { } }
10 class C4 { use T1 { m1 as a1; m2 as a2; } }
39 string(6) "T1::m2"
/PHP-7.4/ext/sodium/tests/
H A Dcrypto_shorthash.phpt14 $m2 = 'msg';
15 $h3 = sodium_crypto_shorthash($m2, $k2);
/PHP-7.4/ext/standard/tests/array/
H A Dbug34227.phpt10 $this->m2();
13 function m2()
/PHP-7.4/ext/bcmath/libbcmath/src/
H A Drecmul.c177 bc_num m1, m2, m3, d1, d2; in _bc_rec_mul() local
231 m2 = bc_copy_num (BCG(_zero_)); in _bc_rec_mul()
233 _bc_rec_mul (d1, d1len, d2, d2len, &m2, 0); in _bc_rec_mul()
250 _bc_shift_addsub (*prod, m2, n, d1->n_sign != d2->n_sign); in _bc_rec_mul()
258 bc_free_num (&m2); in _bc_rec_mul()
/PHP-7.4/Zend/tests/anon/
H A D010.phpt11 public function m2() {
/PHP-7.4/Zend/
H A Dbench.php278 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 Dzend_strtod.c3757 j, j1 = 0, k, k0, k_check, leftright, m2, m5, s2, s5, local
4150 m2 = b2;
4167 if (m2 > 0 && s2 > 0) {
4168 i = m2 < s2 ? m2 : s2;
4170 m2 -= i;
4220 m2 += i;
4248 if (m2 > 0)
4249 mhi = lshift(mhi, m2);
/PHP-7.4/build/
H A Dphp_cxx_compile_stdcxx.m4804 m2 {p2}
808 T2 m2;
/PHP-7.4/ext/gd/
H A Dgd.c859 ZEND_ARG_INFO(0, m2)
5100 double m2[6]; in PHP_FUNCTION() local
5137 m2[i] = Z_LVAL_P(tmp); in PHP_FUNCTION()
5140 m2[i] = Z_DVAL_P(tmp); in PHP_FUNCTION()
5143 m2[i] = zval_get_double(tmp); in PHP_FUNCTION()
5152 if (gdAffineConcat (mr, m1, m2) != GD_TRUE) { in PHP_FUNCTION()

Completed in 50 milliseconds