Searched refs:matrix (Results 1 - 3 of 3) sorted by relevance
| /PHP_TRUNK/Zend/ |
| H A D | bench.php | 292 function matrix($n) { function 413 matrix(20); 414 $t = end_test($t, "matrix(20)");
|
| /PHP_TRUNK/ext/gd/libgd/ |
| H A D | gdft.c | 776 FT_Matrix matrix; local 859 matrix.xx = (FT_Fixed) (cos_a * (1 << 16)); 860 matrix.yx = (FT_Fixed) (sin_a * (1 << 16)); 861 matrix.xy = -matrix.yx; 862 matrix.yy = matrix.xx; 1031 FT_Set_Transform(face, &matrix, NULL);
|
| /PHP_TRUNK/ext/gd/ |
| H A D | gd.c | 4857 Apply a 3x3 convolution matrix, using coefficient div and offset */ 4865 float matrix[3][3] = {{0,0,0}, {0,0,0}, {0,0,0}}; local 4890 matrix[i][j] = (float)Z_DVAL_PP(var2); 4892 php_error_docref(NULL TSRMLS_CC, E_WARNING, "You must have a 3x3 matrix"); 4898 res = gdImageConvolution(im_src, matrix, (float)div, (float)offset);
|
Completed in 13 milliseconds