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 200 ext/standard/password.c long cost = PHP_PASSWORD_BCRYPT_COST; cost 201 ext/standard/password.c sscanf(hash, "$2y$%ld$", &cost); cost 202 ext/standard/password.c add_assoc_long(options, "cost", cost); cost 244 ext/standard/password.c long new_cost = PHP_PASSWORD_BCRYPT_COST, cost = 0; cost 258 ext/standard/password.c sscanf(hash, "$2y$%ld$", &cost); cost 259 ext/standard/password.c if (cost != new_cost) { cost 324 ext/standard/password.c long cost = PHP_PASSWORD_BCRYPT_COST; cost 331 ext/standard/password.c cost = Z_LVAL(cast_option_buffer); cost 334 ext/standard/password.c cost = Z_LVAL_PP(option_buffer); cost 338 ext/standard/password.c if (cost < 4 || cost > 31) { cost 339 ext/standard/password.c php_error_docref(NULL TSRMLS_CC, E_WARNING, "Invalid bcrypt cost parameter specified: %ld", cost); cost 344 ext/standard/password.c sprintf(hash_format, "$2y$%02ld$", cost);