| /PHP_TRUNK/ext/ereg/regex/ |
| H A D | engine.c | 77 register unsigned char *dp; local 98 for (dp = start; dp < stop; dp++) 99 if (*dp == g->must[0] && stop - dp >= g->mlen && 100 memcmp(dp, g->must, (size_t)g->mlen) == 0) 102 if (dp == stop) /* we didn't find g->must */ 156 dp = dissect(m, m->coldp, endp, gf, gl); 167 dp 251 register unsigned char *dp; local 434 register unsigned char *dp; local [all...] |
| /PHP_TRUNK/ext/standard/html_tables/ |
| H A D | html_table_gen.php | 423 $dp = array(); variable 428 $dp[] = array($matches[1], $matches[2], $matches[3]); 430 $dp[] = array($matches[1], $matches[2]); 434 $origdp = $dp; 436 usort($dp, function($a, $b) { return hexdec($a[1])-hexdec($b[1]); }); 439 foreach ($dp as $el) { 445 foreach ($dp as $el) { 522 foreach ($dp as $el) { 661 //$dp = $origdp; 662 //usort($dp, functio [all...] |
| /PHP_TRUNK/win32/ |
| H A D | glob.c | 619 register struct dirent *dp; local 656 while ((dp = (*readdirfunc)(dirp))) { 661 if (dp->d_name[0] == DOT && *pattern != DOT) 664 sc = (u_char *) dp->d_name;
|
| H A D | readdir.c | 24 DIR *dp; local 46 dp = (DIR *) malloc(sizeof(DIR)); 47 if (dp == NULL) { 50 dp->offset = 0; 51 dp->finished = 0; 53 if ((handle = FindFirstFile(filespec, &(dp->fileinfo))) == INVALID_HANDLE_VALUE) { 56 dp->finished = 1; 58 free(dp); 63 dp->dir = strdup(resolved_path_buff); 64 dp 70 readdir(DIR *dp) argument 91 readdir_r(DIR *dp, struct dirent *entry, struct dirent **result) argument 119 closedir(DIR *dp) argument 136 rewinddir(DIR *dp) argument [all...] |
| /PHP_TRUNK/ext/gd/libgd/ |
| H A D | gd_io_dp.c | 42 dynamicPtr *dp; member in struct:dpIOCtx 48 static int allocDynamic (dynamicPtr * dp, int initialSize, void *data); 49 static int appendDynamic (dynamicPtr * dp, const void *src, int size); 50 static int gdReallocDynamic (dynamicPtr * dp, int required); 51 static int trimDynamic (dynamicPtr * dp); 73 dynamicPtr *dp; local 77 dp = newDynamic(initialSize, data, freeOKFlag); 79 ctx->dp = dp; 97 dynamicPtr *dp; local 126 dynamicPtr *dp; local 152 dynamicPtr *dp; local 186 dynamicPtr *dp; local 231 dynamicPtr *dp; local 272 allocDynamic(dynamicPtr * dp, int initialSize, void *data) argument 293 appendDynamic(dynamicPtr * dp, const void *src, int size) argument 328 gdReallocDynamic(dynamicPtr * dp, int required) argument 353 trimDynamic(dynamicPtr * dp) argument [all...] |
| /PHP_TRUNK/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_TRUNK/ext/standard/ |
| H A D | math.c | 1106 char *dp; local 1132 dp = strpbrk(tmpbuf, ".,"); 1134 dp = NULL; 1138 if (dp) { 1139 integral = dp - tmpbuf; 1174 int declen = dp ? s - dp : 0; 1182 if (dp) { 1187 memcpy(t + 1, dp + 1, declen);
|
| H A D | file.c | 1687 char *sp, *dp; local 1693 if ((dp = expand_filepath(dest, NULL TSRMLS_CC)) == NULL) { 1700 !strcmp(sp, dp); 1702 !strcasecmp(sp, dp); 1706 efree(dp);
|
| /PHP_TRUNK/main/ |
| H A D | php_scandir.c | 67 struct dirent *dp = (struct dirent *)&entry; local 77 while (!php_readdir_r(dirp, (struct dirent *)entry, &dp) && dp) { 81 if (selector && (*selector)(dp) == 0) { 100 dsize = sizeof (struct dirent) + ((strlen(dp->d_name) + 1) * sizeof(char)); 107 vector[nfiles++] = (struct dirent *) memcpy(newdp, dp, dsize);
|
| /PHP_TRUNK/ext/com_dotnet/ |
| H A D | com_iterator.c | 146 DISPPARAMS dp; local 162 memset(&dp, 0, sizeof(dp)); 207 &dp, &v, NULL, NULL))) {
|