/PHP-5.6/win32/ |
H A D | readdir.c | 24 DIR *dp; in opendir() local 59 free(dp); in opendir() 68 return dp; in opendir() 73 if (!dp || dp->finished) in readdir() 86 dp->dent.d_reclen = strlen(dp->dent.d_name); in readdir() 87 dp->dent.d_off = dp->offset; in readdir() 94 if (!dp || dp->finished) { in readdir_r() 110 dp->dent.d_reclen = strlen(dp->dent.d_name); in readdir_r() 111 dp->dent.d_off = dp->offset; in readdir_r() 122 if (!dp) in closedir() [all …]
|
H A D | glob.c | 628 register struct dirent *dp; local 665 while ((dp = (*readdirfunc)(dirp))) { 670 if (dp->d_name[0] == DOT && *pattern != DOT) 673 sc = (u_char *) dp->d_name;
|
/PHP-5.6/ext/gd/libgd/ |
H A D | gd_io_dp.c | 79 ctx->dp = dp; in gdNewDynamicCtxEx() 102 dp = dctx->dp; in gdDPExtractData() 112 if (dp->data != NULL && dp->freeOK) { in gdDPExtractData() 130 dp = dctx->dp; in gdFreeDynamicCtx() 156 dp = dctx->dp; in dynamicSeek() 168 gdReallocDynamic (dp, dp->realSize * 2); in dynamicSeek() 234 dp = dctx->dp; in dynamicGetbuf() 236 remain = dp->logicalSize - dp->pos; in dynamicGetbuf() 320 if (dp->pos > dp->logicalSize) { in appendDynamic() 321 dp->logicalSize = dp->pos; in appendDynamic() [all …]
|
/PHP-5.6/main/ |
H A D | php_scandir.c | 67 struct dirent *dp = (struct dirent *)&entry; in php_scandir() local 77 while (!php_readdir_r(dirp, (struct dirent *)entry, &dp) && dp) { in php_scandir() 81 if (selector && (*selector)(dp) == 0) { in php_scandir() 100 dsize = sizeof (struct dirent) + ((strlen(dp->d_name) + 1) * sizeof(char)); in php_scandir() 107 vector[nfiles++] = (struct dirent *) memcpy(newdp, dp, dsize); in php_scandir()
|
/PHP-5.6/ext/date/tests/ |
H A D | bug46874.phpt | 5 $dp = new DatePeriod('R5/2008-03-01T13:00:00Z/P1Y2M10DT2H30M'); 7 foreach ($dp as $date) { 14 foreach ($dp as $date) {
|
H A D | bug44562.phpt | 9 $dp = new DatePeriod('2D'); 19 $dp = new DatePeriod( $begin, $interval, 10 ); 20 foreach ( $dp as $d )
|
H A D | bug52668.phpt | 9 $dp = new DatePeriod($start, $interval, 1); 10 foreach($dp as $dt) { 14 foreach($dp as $dt) {
|
H A D | bug53437_var1.phpt | 7 $dp = unserialize($s); 9 var_dump($dp);
|
H A D | bug53437.phpt | 5 $dp = new DatePeriod(new DateTime('2010-01-01 UTC'), new DateInterval('P1D'), 2); 8 foreach($dp as $dt) { 12 var_dump($dp); 14 $ser = serialize($dp); // $ser is: O:10:"DatePeriod":0:{}
|
/PHP-5.6/ext/ereg/regex/ |
H A D | engine.c | 98 for (dp = start; dp < stop; dp++) 99 if (*dp == g->must[0] && stop - dp >= g->mlen && 169 if (dp != NULL) 192 assert(dp == NULL || dp == endp); 544 if (dp != NULL) 560 if (dp == NULL) 563 return(dp); 572 return(dp); 592 if (dp != NULL) 593 return(dp); [all …]
|
/PHP-5.6/ext/standard/html_tables/ |
H A D | html_table_gen.php | 426 $dp = array(); variable 431 $dp[] = array($matches[1], $matches[2], $matches[3]); 433 $dp[] = array($matches[1], $matches[2]); 437 $origdp = $dp; 439 usort($dp, function($a, $b) { return hexdec($a[1])-hexdec($b[1]); }); 442 foreach ($dp as $el) { 448 foreach ($dp as $el) { 526 foreach ($dp as $el) {
|
/PHP-5.6/ext/com_dotnet/ |
H A D | com_iterator.c | 146 DISPPARAMS dp; in php_com_iter_get() local 162 memset(&dp, 0, sizeof(dp)); in php_com_iter_get() 207 &dp, &v, NULL, NULL))) { in php_com_iter_get()
|
/PHP-5.6/ext/standard/tests/math/ |
H A D | number_format_basic.phpt | 24 echo "\n number_format tests.....with two dp\n"; 57 number_format tests.....with two dp
|
/PHP-5.6/ext/openssl/tests/ |
H A D | private_rsa_1024.key | 5 AoGBAMcP/dp+fsI9FFYBaVC3mASlUjOwxKWdH3kqGb8N9p4uKRAoEWtp3hNJM7ZX
|
/PHP-5.6/ext/standard/tests/strings/ |
H A D | number_format_basic.phpt | 32 echo "\n-- number_format tests.....with two dp --\n"; 68 -- number_format tests.....with two dp --
|
/PHP-5.6/ext/standard/ |
H A D | math.c | 1084 char *dp; in _php_math_number_format_ex_len() local 1110 dp = strpbrk(tmpbuf, ".,"); in _php_math_number_format_ex_len() 1112 dp = NULL; in _php_math_number_format_ex_len() 1116 if (dp) { in _php_math_number_format_ex_len() 1117 integral = dp - tmpbuf; in _php_math_number_format_ex_len() 1160 int declen = dp ? s - dp : 0; in _php_math_number_format_ex_len() 1168 if (dp) { in _php_math_number_format_ex_len() 1173 memcpy(t + 1, dp + 1, declen); in _php_math_number_format_ex_len()
|
H A D | file.c | 1704 char *sp, *dp; in php_copy_file_ctx() local 1710 if ((dp = expand_filepath(dest, NULL TSRMLS_CC)) == NULL) { in php_copy_file_ctx() 1717 !strcmp(sp, dp); in php_copy_file_ctx() 1719 !strcasecmp(sp, dp); in php_copy_file_ctx() 1723 efree(dp); in php_copy_file_ctx()
|
/PHP-5.6/pear/ |
H A D | Makefile.frag | 10 PEAR_PREFIX = -dp a${program_prefix}
|
/PHP-5.6/ext/standard/tests/general_functions/ |
H A D | import_request.phpt | 8 ap=25&bp=test&cp=blah3&dp[]=ar
|
/PHP-5.6/sapi/fpm/ |
H A D | config.m4 | 430 int n, dp; 432 dp = 0; 436 n = ioctl(dp, DP_POLL, &dvp)
|
/PHP-5.6/ext/mbstring/ucgendat/ |
H A D | ucgendat.c | 1162 _decomp_t *dp; 1165 if ((dp = find_decomp(d->decomp[i], compat)) != 0) 1166 decomp_it(dp, compat);
|
/PHP-5.6/ext/pcre/pcrelib/testdata/ |
H A D | testoutput8 | 196 a+bc+dp+q 197 0: a+bc+dp+q
|
H A D | testinput8 | 96 a+bc+dp+q
|