Home
last modified time | relevance | path

Searched refs:cd (Results 1 – 25 of 81) sorted by relevance

1234

/PHP-5.5/ext/zip/lib/
H A Dzip_open.c212 cd->nentry = 0; in _zip_readcdir()
213 _zip_cdir_free(cd); in _zip_readcdir()
217 if ((comlen < cd->comment_len) || (cd->nentry != i)) { in _zip_readcdir()
219 cd->nentry = 0; in _zip_readcdir()
220 _zip_cdir_free(cd); in _zip_readcdir()
225 cd->nentry = 0; in _zip_readcdir()
277 if (_zip_cdir_grow(cd, cd->nentry+ZIP_UINT16_MAX, error) < 0) { in _zip_readcdir()
278 cd->nentry = i; in _zip_readcdir()
285 cd->nentry = i; in _zip_readcdir()
287 return cd; in _zip_readcdir()
[all …]
H A Dzip_dirent.c58 if (!cd) in _zip_cdir_free()
63 free(cd->comment); in _zip_cdir_free()
64 free(cd->entry); in _zip_cdir_free()
65 free(cd); in _zip_cdir_free()
81 realloc(cd->entry, sizeof(*(cd->entry))*nentry))) == NULL) { in _zip_cdir_grow()
99 if ((cd=(struct zip_cdir *)malloc(sizeof(*cd))) == NULL) { in _zip_cdir_new()
107 free(cd); in _zip_cdir_new()
114 cd->size = cd->offset = 0; in _zip_cdir_new()
118 return cd; in _zip_cdir_new()
135 cd->size = ftello(fp) - cd->offset; in _zip_cdir_write()
[all …]
H A Dzip_close.c80 struct zip_cdir *cd; in zip_close() local
125 if (cd->comment == NULL) { in zip_close()
126 _zip_cdir_free(cd); in zip_close()
134 _zip_cdir_free(cd); in zip_close()
141 _zip_cdir_free(cd); in zip_close()
176 memcpy(cd->entry+j, &de, sizeof(cd->entry[j])); in zip_close()
206 memcpy(cd->entry+j, za->cdir->entry+i, sizeof(cd->entry[j])); in zip_close()
277 cd->entry[j].crc = de.crc; in zip_close()
303 cd->nentry = 0; in zip_close()
304 _zip_cdir_free(cd); in zip_close()
[all …]
/PHP-5.5/ext/pcre/pcrelib/
H A Dpcre_compile.c934 cd->hwm = (pcre_uchar *)newspace + (cd->hwm - cd->start_workspace); in expand_workspace()
4642 else if (cd->hwm > cd->start_workspace + cd->workspace_size) in compile_branch()
4785 item_hwm_offset = cd->hwm - cd->start_workspace; in compile_branch()
6120 while (cd->hwm > cd->start_workspace + cd->workspace_size - in compile_branch()
6201 while (cd->hwm > cd->start_workspace + cd->workspace_size - in compile_branch()
7511 if (cd->hwm >= cd->start_workspace + cd->workspace_size - in compile_branch()
8283 save_hwm_offset = cd->hwm - cd->start_workspace; in compile_regex()
8498 cd->open_caps = cd->open_caps->next; in compile_regex()
9288 cd->bracount = cd->final_bracount = 0; in pcre_compile2()
9392 cd->hwm = (pcre_uchar *)(cd->start_workspace); in pcre_compile2()
[all …]
H A Dpcre_study.c636 compile_data *cd, BOOL utf) in set_table_bit() argument
664 if (caseless && (cd->ctypes[c] & ctype_letter) != 0) SET_BIT(cd->fcc[c]); in set_table_bit()
695 if (caseless && (cd->ctypes[c] & ctype_letter) != 0) SET_BIT(cd->fcc[c]); in set_table_bit()
724 compile_data *cd) in set_type_bits() argument
732 if ((cd->cbits[c/8] & (1 << (c&7))) != 0) in set_type_bits()
766 compile_data *cd) in set_nottype_bits() argument
803 compile_data *cd) in set_start_bits() argument
973 rc = set_start_bits(tcode, start_bits, utf, cd); in set_start_bits()
1020 rc = set_start_bits(++tcode, start_bits, utf, cd); in set_start_bits()
1171 set_type_bits(start_bits, cbit_digit, table_limit, cd); in set_start_bits()
[all …]
/PHP-5.5/ext/pcre/pcrelib/testdata/
H A Dtestinput4106 /(?<=aXb)cd/8
271 ab> <cd
277 ab> <cd
288 ab cd
294 ab cd
305 ab====cd
306 ab==cd
311 ab====cd
312 ab==cd
344 ab|cd
[all …]
H A Dtestinput9162 /(?<=aXb)cd/8
327 ab> <cd
333 ab> <cd
344 ab cd
350 ab cd
361 ab====cd
362 ab==cd
367 ab====cd
368 ab==cd
400 ab|cd
[all …]
H A Dtestoutput4221 0: cd
225 0: cd
229 0: cd
474 0+ cd
486 0+ cd
504 ab cd
514 ab cd
534 ab==cd
544 ab==cd
598 ab|cd
[all …]
/PHP-5.5/Zend/tests/
H A Dbug64677.phpt10 $cat->show_output('Files: ', trim(`cd .`)); // this gives invalid args to shell_exec
11 $cat->show_output('Files: ', `cd .`); // this causes a segmentation fault
12 $cat->show_output(`cd .`); // this causes a segmentation fault
17 show_outputa('Files: ', `cd .`); // this works as expected
/PHP-5.5/ext/reflection/tests/
H A Dbug43926.phpt24 $cd = $rd->newInstance();
37 print("Is? A ". ($ra->isInstance($cd) ? 'true' : 'false') .", instanceof: ". (($cd instanceof A) ? …
38 print("Is? C ". ($rc->isInstance($cd) ? 'true' : 'false') .", instanceof: ". (($cd instanceof C) ? …
39 print("Is? D ". ($rd->isInstance($cd) ? 'true' : 'false') .", instanceof: ". (($cd instanceof D) ? …
40 print("Is? E ". ($re->isInstance($cd) ? 'true' : 'false') .", instanceof: ". (($cd instanceof E) ? …
/PHP-5.5/ext/standard/tests/strings/
H A Dbug45166.phpt5 echo substr('cd', -3) . "\n";
9 cd
/PHP-5.5/ext/iconv/
H A Diconv.c494 iconv_t cd; in php_iconv_string() local
553 iconv_close(cd); in php_iconv_string()
561 iconv_t cd; in php_iconv_string()
639 iconv_close(cd); in php_iconv_string()
678 iconv_t cd; in _php_iconv_strlen() local
747 iconv_close(cd); in _php_iconv_strlen()
910 iconv_t cd; in _php_iconv_strpos() local
1080 iconv_close(cd); in _php_iconv_strpos()
1402 iconv_close(cd); in _php_iconv_mime_encode()
1936 iconv_close(cd); in _php_iconv_mime_decode()
[all …]
H A Dconfig.m4136 iconv_t cd;
137 cd = iconv_open( "*blahblah*", "*blahblah*" );
138 if (cd == (iconv_t)(-1)) {
145 iconv_close( cd );
168 iconv_t cd = iconv_open( "UTF-8//IGNORE", "UTF-8" );
173 size_t result = iconv(cd, (char **) &in_p, &in_left, (char **) &out_p, &out_left);
/PHP-5.5/tests/basic/
H A D011.phpt6 ab+cd+ef+123+test
19 1: cd
H A D012.phpt9 ab cd ef 123 test
22 1: cd
/PHP-5.5/ext/pcre/tests/
H A Dbug21732.phpt15 var_dump(preg_replace_callback("/(ab)(cd)(e)/", array(new foo(), "cb"), 'abcde'));
25 string(2) "cd"
/PHP-5.5/ext/standard/tests/file/
H A Dbug41874.phpt9 $result = exec('cd 1:\non_existent; dir nonexistent');
11 system('cd 1:\non_existent; dir nonexistent');
H A Dbug41874_3.phpt13 system('cd 1:\\non_existent; dir nonexistent');
/PHP-5.5/sapi/webjames/
H A DREADME19 $ cd php5
26 $ cd ../webjames
/PHP-5.5/ext/pdo_oci/tests/
H A Dpdo_oci_quote1.phpt22 $a = array(null, "", "a", "ab", "abc", "ab'cd", "a\b\n", "'", "''", "a'", "'z", "a''b", '"');
88 Unquoted : string(5) "ab'cd"
89 Quoted : string(8) "'ab''cd'"
94 string(5) "ab'cd"
/PHP-5.5/ext/dba/tests/
H A Ddba_db4_017.phpt2 DBA DB4 file creation dba_open("cd")
15 if (($db_file = dba_open($db_filename, "cd", $handler)) !== FALSE) {
/PHP-5.5/ext/pdo_dblib/
H A DREADME16 - cd \MSDERelA
18 - cd \Program Files\Microsoft SQL Server\80\Tools\Binn
/PHP-5.5/ext/standard/tests/array/
H A Darray_keys_variation_001.phpt18 array("a" => "abcd", "a" => "", "ab" => -6, "cd" => -0.5 ),
133 string(2) "cd"
/PHP-5.5/sapi/apache2filter/
H A DREADME22 $ cd apache-2.x
23 $ cd src
32 $ cd php-4.x
/PHP-5.5/main/
H A Drfc1867.c784 char *cd = NULL, *param = NULL, *filename = NULL, *tmp = NULL; local
794 if ((cd = php_mime_get_hdr_value(header, "Content-Disposition"))) {
798 while (isspace(*cd)) {
799 ++cd;
802 while (*cd && (pair = getword(mbuff->input_encoding, &cd, ';' TSRMLS_CC)))
806 while (isspace(*cd)) {
807 ++cd;
1156 cd = "";
1159 s = strchr(cd, ';');
1172 safe_php_register_variable(lbuf, cd, strlen(cd), NULL, 0 TSRMLS_CC);
[all …]

Completed in 120 milliseconds

1234