Home
last modified time | relevance | path

Searched refs:cfg (Results 1 – 25 of 33) sorted by relevance

12

/PHP-5.6/ext/pspell/tests/
H A D004.phpt11 $cfg = pspell_config_create('en', 'british', '', 'iso8859-1');
12 var_dump(pspell_config_mode($cfg, PSPELL_BAD_SPELLERS));
14 var_dump(pspell_config_runtogether($cfg, false));
15 $p = pspell_new_config($cfg);
21 var_dump(pspell_config_runtogether($cfg, true));
22 $p = pspell_new_config($cfg);
25 var_dump(pspell_config_runtogether($cfg, NULL))
H A D003.phpt11 $cfg = pspell_config_create('en', 'british', '', 'iso8859-1');
14 $p = pspell_new_config($cfg);
21 var_dump(pspell_config_ignore($cfg, 2));
22 $p = pspell_new_config($cfg);
26 var_dump(pspell_config_ignore($cfg, PHP_INT_MAX));
H A D005.phpt19 $cfg = pspell_config_create('en');
20 var_dump(pspell_config_personal($cfg, "$wordlist.tmp"));
21 $p = pspell_new_config($cfg);
/PHP-5.6/sapi/fpm/tests/
H A Dinclude.inc26 $cfg = dirname(__FILE__).'/test-fpm-config.tmp';
27 file_put_contents($cfg, $config);
35 …llit () { kill $child; }; trap killit TERM; '.get_fpm_path().' -F -O -y '.$cfg.' '.$extra_args.' 2…
37 function($fpm) use($cfg) {
38 @unlink($cfg);
H A Dskipapparmor.inc4 $cfg = <<<EOT
17 $fpm = run_fpm($cfg, $out, '-t');
H A D013.phpt13 $cfg = <<<EOT
27 $fpm = run_fpm($cfg, $tail);
H A D002.phpt13 $cfg = <<<EOT
25 $fpm = run_fpm($cfg, $tail);
H A D014.phpt13 $cfg = <<<EOT
27 $fpm = run_fpm($cfg, $tail);
H A D003.phpt16 $cfg = <<<EOT
28 $fpm = run_fpm($cfg, $tail);
H A D011.phpt13 $cfg = <<<EOT
27 $fpm = run_fpm($cfg, $tail);
H A D009.phpt13 $cfg = <<<EOT
27 $fpm = run_fpm($cfg, $tail);
H A D004.phpt16 $cfg = <<<EOT
28 $fpm = run_fpm($cfg, $tail);
H A D005.phpt16 $cfg = <<<EOT
29 $fpm = run_fpm($cfg, $tail);
H A D006.phpt16 $cfg = <<<EOT
29 $fpm = run_fpm($cfg, $tail);
H A D017.phpt14 $cfg = <<<EOT
34 $fpm = run_fpm($cfg, $tail);
H A Dapparmor.phpt20 $cfg = <<<EOT
44 …d to query apparmor confinement|failed to change to new confinement|exited with code 70)/', $cfg));
H A D022-cve-2016-5385.phpt14 $cfg = <<<EOT
39 $fpm = run_fpm($cfg, $tail);
H A D007.phpt17 $cfg = <<<EOT
32 $fpm = run_fpm($cfg, $tail);
H A D008.phpt15 $cfg = <<<EOT
42 $fpm = run_fpm($cfg, $tail);
H A D020.phpt16 $cfg = <<<EOT
36 $fpm = run_fpm($cfg, $tail);
H A D010.phpt19 $cfg = <<<EOT
32 $fpm = run_fpm($cfg, $tail);
/PHP-5.6/tests/lang/
H A Dstatic_variation_002.phpt11 function cfg() {
21 cfg();
/PHP-5.6/ext/opcache/Optimizer/
H A Dblock_pass.c90 memset(cfg, 0, sizeof(zend_cfg)); in find_code_blocks()
529 if (!cfg->catch[i]->access) { in zend_rebuild_access_path()
530 zend_access_path(cfg->catch[i]); in zend_rebuild_access_path()
1259 if (cfg->try[i]->access) { in assemble_code_blocks()
1266 efree(cfg->try); in assemble_code_blocks()
1267 efree(cfg->catch); in assemble_code_blocks()
1278 efree(cfg->loop_start); in assemble_code_blocks()
1279 efree(cfg->loop_cont); in assemble_code_blocks()
1280 efree(cfg->loop_brk); in assemble_code_blocks()
2042 zend_cfg cfg; in zend_block_optimization() local
[all …]
/PHP-5.6/ext/phar/phar/
H A Dclicommand.inc146 static function cli_arg_typ_bool($arg, $cfg, $key)
151 static function cli_arg_typ_int($arg, $cfg, $key)
160 static function cli_arg_typ_regex($arg, $cfg, $key)
173 static function cli_arg_typ_select($arg, $cfg, $key)
175 if (!in_array($arg, array_keys($cfg['select']))) {
176 …self::error("Parameter value '$arg' not one of '" . join("', '", array_keys($cfg['select'])) . "'.…
181 static function cli_arg_typ_dir($arg, $cfg, $key)
202 static function cli_arg_typ_filenew($arg, $cfg, $key)
213 static function cli_arg_typ_filecont($arg, $cfg, $key)
215 return file_get_contents(self::cli_arg_typ_file($arg, $cfg, $key));
/PHP-5.6/ext/gd/libgd/
H A Dwebpimg.c639 static void SetupParams(vpx_codec_enc_cfg_t* cfg, in SetupParams() argument
641 cfg->g_threads = 2; in SetupParams()
642 cfg->rc_min_quantizer = QP; in SetupParams()
643 cfg->rc_max_quantizer = QP; in SetupParams()
644 cfg->kf_mode = VPX_KF_FIXED; in SetupParams()
670 vpx_codec_enc_cfg_t cfg; in VPXEncode() local
687 res = vpx_codec_enc_config_default(iface, &cfg, 0); in VPXEncode()
692 SetupParams(&cfg, QP); in VPXEncode()
693 cfg.g_w = y_width; in VPXEncode()
694 cfg.g_h = y_height; in VPXEncode()
[all …]

Completed in 30 milliseconds

12