cost 265 ext/date/lib/astro.c double cost; cost 266 ext/date/lib/astro.c cost = (sind(altit) - sind(lat) * sind(sdec)) / (cosd(lat) * cosd(sdec)); cost 268 ext/date/lib/astro.c if (cost >= 1.0) { cost 273 ext/date/lib/astro.c } else if (cost <= -1.0) { cost 280 ext/date/lib/astro.c t = acosd(cost) / 15.0; /* The diurnal arc, hours */ cost 7 ext/gd/libgd/mathmake.c int cost[360]; cost 20 ext/gd/libgd/mathmake.c printf ("%d,\n ", cost[i] = basis[i]); cost 24 ext/gd/libgd/mathmake.c printf ("%d,\n ", cost[i] = -basis[180 - i]); cost 28 ext/gd/libgd/mathmake.c printf ("%d,\n ", cost[i] = -basis[i - 180]); cost 32 ext/gd/libgd/mathmake.c printf ("%d,\n ", cost[i] = basis[360 - i]); cost 34 ext/gd/libgd/mathmake.c printf ("%d\n", cost[359] = basis[1]); cost 41 ext/gd/libgd/mathmake.c val = cost[(i + 270) % 360]; cost 166 ext/standard/password.c zend_long cost = PHP_PASSWORD_BCRYPT_COST; cost 167 ext/standard/password.c sscanf(hash, "$2y$" ZEND_LONG_FMT "$", &cost); cost 168 ext/standard/password.c add_assoc_long(&options, "cost", cost); cost 205 ext/standard/password.c zend_long new_cost = PHP_PASSWORD_BCRYPT_COST, cost = 0; cost 211 ext/standard/password.c sscanf(hash, "$2y$" ZEND_LONG_FMT "$", &cost); cost 212 ext/standard/password.c if (cost != new_cost) { cost 280 ext/standard/password.c zend_long cost = PHP_PASSWORD_BCRYPT_COST; cost 283 ext/standard/password.c cost = zval_get_long(option_buffer); cost 286 ext/standard/password.c if (cost < 4 || cost > 31) { cost 287 ext/standard/password.c php_error_docref(NULL, E_WARNING, "Invalid bcrypt cost parameter specified: " ZEND_LONG_FMT, cost); cost 292 ext/standard/password.c sprintf(hash_format, "$2y$%02ld$", (long) cost);