Searched refs:newx (Results 1 – 3 of 3) sorted by relevance
/PHP-5.6/sapi/apache2filter/ |
H A D | apache_config.c | 203 php_conf_rec *newx = (php_conf_rec *) apr_pcalloc(p, sizeof(*newx)); in create_php_config() local 205 phpapdebug((stderr, "Creating new config (%p) for %s\n", newx, dummy)); in create_php_config() 206 zend_hash_init(&newx->config, 0, NULL, NULL, 1); in create_php_config() 207 apr_pool_cleanup_register(p, newx, destroy_php_config, apr_pool_cleanup_null); in create_php_config() 208 return (void *) newx; in create_php_config()
|
/PHP-5.6/sapi/apache2handler/ |
H A D | apache_config.c | 226 php_conf_rec *newx = (php_conf_rec *) apr_pcalloc(p, sizeof(*newx)); in create_php_config() local 228 phpapdebug((stderr, "Creating new config (%p) for %s\n", newx, dummy)); in create_php_config() 229 zend_hash_init(&newx->config, 0, NULL, NULL, 1); in create_php_config() 230 apr_pool_cleanup_register(p, newx, destroy_php_config, apr_pool_cleanup_null); in create_php_config() 231 return (void *) newx; in create_php_config()
|
/PHP-5.6/ext/gd/libgd/ |
H A D | gd_rotate.c | 354 int u, iShear, newx, newy; in gdImageRotate45() local 362 newx = (int)(src->sx + src->sy * fabs(dTan)); in gdImageRotate45() 372 dst1 = gdImageCreateTrueColor(newx, newy); in gdImageRotate45() 426 newx = dst1->sx; in gdImageRotate45() 431 dOffset = -dSinE * (src->sx - newx); in gdImageRotate45() 441 dst2 = gdImageCreateTrueColor(newx, newy); in gdImageRotate45() 465 newx = (int) ((double)src->sy * fabs (dSinE) + (double)src->sx * cos (dRadAngle)) + 1; in gdImageRotate45() 473 dst3 = gdImageCreateTrueColor(newx, newy); in gdImageRotate45()
|
Completed in 12 milliseconds