Home
last modified time | relevance | path

Searched refs:dp (Results 1 – 21 of 21) sorted by relevance

/PHP-7.2/ext/gd/libgd/
H A Dgd_io_dp.c79 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()
159 dp = dctx->dp; in dynamicSeek()
171 gdReallocDynamic (dp, dp->realSize * 2); in dynamicSeek()
237 dp = dctx->dp; in dynamicGetbuf()
239 remain = dp->logicalSize - dp->pos; in dynamicGetbuf()
323 if (dp->pos > dp->logicalSize) { in appendDynamic()
324 dp->logicalSize = dp->pos; in appendDynamic()
[all …]
/PHP-7.2/win32/
H A Dreaddir.c29 DIR *dp; in opendir() local
47 free(dp); in opendir()
59 free(dp); in opendir()
81 free(dp); in opendir()
95 return dp; in opendir()
103 if (!dp || dp->finished) in readdir()
125 dp->dent.d_off = dp->offset; in readdir()
135 if (!dp || dp->finished) { in readdir_r()
161 dp->dent.d_off = dp->offset; in readdir_r()
172 if (!dp) in closedir()
[all …]
H A Dglob.c622 register struct dirent *dp; local
659 while ((dp = (*readdirfunc)(dirp))) {
664 if (dp->d_name[0] == DOT && *pattern != DOT)
667 sc = (u_char *) dp->d_name;
/PHP-7.2/main/
H A Dphp_scandir.c65 struct dirent *dp = (struct dirent *)&entry; in php_scandir() local
75 while (!php_readdir_r(dirp, (struct dirent *)entry, &dp) && dp) { in php_scandir()
79 if (selector && (*selector)(dp) == 0) { in php_scandir()
98 dsize = sizeof (struct dirent) + (((int)strlen(dp->d_name) + 1) * sizeof(char)); in php_scandir()
105 vector[nfiles++] = (struct dirent *) memcpy(newdp, dp, dsize); in php_scandir()
/PHP-7.2/ext/date/tests/
H A Dbug46874.phpt5 $dp = new DatePeriod('R5/2008-03-01T13:00:00Z/P1Y2M10DT2H30M');
7 foreach ($dp as $date) {
14 foreach ($dp as $date) {
H A Dbug44562.phpt9 $dp = new DatePeriod('2D');
19 $dp = new DatePeriod( $begin, $interval, 10 );
20 foreach ( $dp as $d )
H A Dbug52668.phpt9 $dp = new DatePeriod($start, $interval, 1);
10 foreach($dp as $dt) {
14 foreach($dp as $dt) {
H A Dbug53437_var1.phpt7 $dp = unserialize($s);
9 var_dump($dp);
H A Dbug53437.phpt5 $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-7.2/ext/standard/html_tables/
H A Dhtml_table_gen.php425 $dp = array(); variable
430 $dp[] = array($matches[1], $matches[2], $matches[3]);
432 $dp[] = array($matches[1], $matches[2]);
436 $origdp = $dp;
438 usort($dp, function($a, $b) { return hexdec($a[1])-hexdec($b[1]); });
441 foreach ($dp as $el) {
447 foreach ($dp as $el) {
525 foreach ($dp as $el) {
/PHP-7.2/ext/com_dotnet/
H A Dcom_iterator.c142 DISPPARAMS dp; in php_com_iter_get() local
158 memset(&dp, 0, sizeof(dp)); in php_com_iter_get()
204 &dp, &v, NULL, NULL))) { in php_com_iter_get()
/PHP-7.2/ext/standard/tests/math/
H A Dnumber_format_basic.phpt24 echo "\n number_format tests.....with two dp\n";
57 number_format tests.....with two dp
/PHP-7.2/ext/openssl/tests/
H A Dprivate_rsa_1024.key5 AoGBAMcP/dp+fsI9FFYBaVC3mASlUjOwxKWdH3kqGb8N9p4uKRAoEWtp3hNJM7ZX
/PHP-7.2/ext/standard/tests/strings/
H A Dnumber_format_basic.phpt32 echo "\n-- number_format tests.....with two dp --\n";
68 -- number_format tests.....with two dp --
/PHP-7.2/ext/standard/
H A Dmath.c1126 char *dp; in _php_math_number_format_ex() local
1153 dp = strpbrk(ZSTR_VAL(tmpbuf), ".,"); in _php_math_number_format_ex()
1155 dp = NULL; in _php_math_number_format_ex()
1159 if (dp) { in _php_math_number_format_ex()
1160 integral = (dp - ZSTR_VAL(tmpbuf)); in _php_math_number_format_ex()
1195 size_t declen = (dp ? s - dp : 0); in _php_math_number_format_ex()
1203 if (dp) { in _php_math_number_format_ex()
1208 memcpy(t + 1, dp + 1, declen); in _php_math_number_format_ex()
H A Dfile.c1746 char *sp, *dp; in php_copy_file_ctx() local
1752 if ((dp = expand_filepath(dest, NULL)) == NULL) { in php_copy_file_ctx()
1759 !strcmp(sp, dp); in php_copy_file_ctx()
1761 !strcasecmp(sp, dp); in php_copy_file_ctx()
1765 efree(dp); in php_copy_file_ctx()
/PHP-7.2/pear/
H A DMakefile.frag10 PEAR_PREFIX = -dp a${program_prefix}
/PHP-7.2/sapi/fpm/
H A Dconfig.m4430 int n, dp;
432 dp = 0;
436 n = ioctl(dp, DP_POLL, &dvp)
/PHP-7.2/ext/mbstring/ucgendat/
H A Ducgendat.c1176 _decomp_t *dp;
1179 if ((dp = find_decomp(d->decomp[i], compat)) != 0)
1180 decomp_it(dp, compat);
/PHP-7.2/ext/pcre/pcrelib/testdata/
H A Dtestoutput8196 a+bc+dp+q
197 0: a+bc+dp+q
H A Dtestinput896 a+bc+dp+q

Completed in 305 milliseconds