/PHP-5.4/ext/standard/ |
H A D | dns.c | 449 cp += n; in php_parserr() 485 snprintf(name, sizeof(name), "%d.%d.%d.%d", cp[0], cp[1], cp[2], cp[3]); in php_parserr() 521 cp++; in php_parserr() 527 cp++; in php_parserr() 628 cp++; in php_parserr() 726 cp++; in php_parserr() 733 cp++; in php_parserr() 740 cp++; in php_parserr() 935 while (an-- && cp && cp < end) { in PHP_FUNCTION() 948 while (ns-- > 0 && cp && cp < end) { in PHP_FUNCTION() [all …]
|
H A D | crypt_sha256.c | 362 char *cp; in php_sha256_crypt_r() local 464 cp = p_bytes = alloca(key_len); in php_sha256_crypt_r() 466 cp = __php_mempcpy((void *)cp, (const void *)temp_result, 32); in php_sha256_crypt_r() 468 memcpy(cp, temp_result, cnt); in php_sha256_crypt_r() 482 cp = s_bytes = alloca(salt_len); in php_sha256_crypt_r() 484 cp = __php_mempcpy(cp, temp_result, 32); in php_sha256_crypt_r() 486 memcpy(cp, temp_result, cnt); in php_sha256_crypt_r() 533 cp += n; in php_sha256_crypt_r() 537 cp = __php_stpncpy(cp, salt, MIN ((size_t) MAX (0, buflen), salt_len)); in php_sha256_crypt_r() 541 *cp++ = '$'; in php_sha256_crypt_r() [all …]
|
H A D | crypt_sha512.c | 395 char *cp; in php_sha512_crypt_r() local 498 cp = p_bytes = alloca(key_len); in php_sha512_crypt_r() 500 cp = __php_mempcpy((void *) cp, (const void *)temp_result, 64); in php_sha512_crypt_r() 503 memcpy(cp, temp_result, cnt); in php_sha512_crypt_r() 517 cp = s_bytes = alloca(salt_len); in php_sha512_crypt_r() 519 cp = __php_mempcpy(cp, temp_result, 64); in php_sha512_crypt_r() 521 memcpy(cp, temp_result, cnt); in php_sha512_crypt_r() 568 cp += n; in php_sha512_crypt_r() 572 cp = __php_stpncpy(cp, salt, MIN((size_t) MAX(0, buflen), salt_len)); in php_sha512_crypt_r() 576 *cp++ = '$'; in php_sha512_crypt_r() [all …]
|
H A D | flock_compat.c | 175 int inet_aton(const char *cp, struct in_addr *ap) in inet_aton() argument 181 register char cc = *cp; in inet_aton() 214 } while (*cp++) ; in inet_aton()
|
/PHP-5.4/ext/bcmath/libbcmath/ |
H A D | Makefile.am | 9 cp $(srcdir)/doc/bcmath.1 $(distdir)/doc 10 cp $(srcdir)/src/private.h $(distdir)/src 11 cp $(srcdir)/FAQ $(distdir)
|
/PHP-5.4/ext/ereg/regex/ |
H A D | regex2.h | 99 #define MCadd(p, cs, cp) mcadd(p, cs, cp) /* regcomp() internal fns */ argument 100 #define MCsub(p, cs, cp) mcsub(p, cs, cp) argument 101 #define MCin(p, cs, cp) mcin(p, cs, cp) argument
|
H A D | regcomp.c | 743 for (cp = cclasses; cp->name != NULL; cp++) 744 if (strncmp(cp->name, sp, len) == 0 && cp->name[len] == '\0') 746 if (cp->name == NULL) { 752 u = cp->chars; 816 for (cp = cnames; cp->name != NULL; cp++) 817 if (strncmp(cp->name, sp, len) == 0 && cp->name[len] == '\0') 1161 mcadd(p, cs, cp) in mcadd() argument 1188 mcsub(cs, cp) 1215 mcin(cs, cp) 1228 mcfind(cs, cp) [all …]
|
H A D | regcomp.ih | 30 static void mcadd(register struct parse *p, register cset *cs, register const unsigned char *cp); 32 static void mcsub(register cset *cs, register unsigned char *cp); 33 static int mcin(register cset *cs, register unsigned char *cp); 34 static unsigned char *mcfind(register cset *cs, register unsigned char *cp);
|
/PHP-5.4/ext/curl/ |
H A D | interface.c | 1544 CURL *cp; in PHP_FUNCTION() local 1554 cp = curl_easy_init(); in PHP_FUNCTION() 1555 if (!cp) { in PHP_FUNCTION() 1563 ch->cp = cp; in PHP_FUNCTION() 1594 curl_easy_setopt(ch->cp, CURLOPT_NOSIGNAL, 1); in PHP_FUNCTION() 1613 CURL *cp; in PHP_FUNCTION() local 1623 cp = curl_easy_duphandle(ch->cp); in PHP_FUNCTION() 1624 if (!cp) { in PHP_FUNCTION() 1632 dupch->cp = cp; in PHP_FUNCTION() 2349 error = curl_easy_perform(ch->cp); in PHP_FUNCTION() [all …]
|
/PHP-5.4/sapi/isapi/stresstest/ |
H A D | getopt.c | 50 char *cp; in ap_getopt() local 85 if (!(cp = strchr(optstr, argv[ap_optind][optchr]))) in ap_getopt() 99 if (cp[1] == ':') in ap_getopt() 115 return(*cp); in ap_getopt() 126 return(*cp); in ap_getopt()
|
/PHP-5.4/sapi/milter/ |
H A D | getopt.c | 48 char *cp; in ap_php_getopt() local 83 if (!(cp = strchr(optstr, argv[ap_php_optind][optchr]))) in ap_php_getopt() 97 if (cp[1] == ':') in ap_php_getopt() 113 return(*cp); in ap_php_getopt() 124 return(*cp); in ap_php_getopt()
|
/PHP-5.4/ |
H A D | Makefile.gcov | 42 test -f "$$x.gcno" && cp $$x.gcno lcov_data/$$y.gcno ; \ 43 test -f "$$x.gcda" && cp $$x.gcda lcov_data/$$y.gcda ; \ 44 test -f "$$x.da" && cp $$x.da lcov_data/$$y.da ; \ 45 test -f "$$x.bb" && cp $$x.bb lcov_data/$$y.bb ; \ 46 test -f "$$x.bbg" && cp $$x.bbg lcov_data/$$y.bbg ; \
|
H A D | genfiles | 17 cp $f $f.orig
|
/PHP-5.4/ext/dba/ |
H A D | install_cdb.sh | 42 cp ../error.o . 51 cp cdb.h uint32.h "$prefix/include"
|
/PHP-5.4/sapi/apache_hooks/ |
H A D | apMakefile.tmpl | 23 cp $(OBJS_LIB) $@ 29 cp $(OBJS_LIB) $@ 32 cp libphp5. libphp5.a 60 cp Makefile.tmpl Makefile.tmpl.bak \
|
H A D | config.m4 | 150 …APACHE_HOOKS_INSTALL="mkdir -p $APACHE_TARGET; cp $SAPI_STATIC $APACHE_HOOKS_INSTALL_FILES $APACHE… 169 …cp $SAPI_STATIC $APACHE_TARGET/libmodphp5.a; cp $APACHE_HOOKS_INSTALL_FILES $APACHE_TARGET; cp $sr… 194 …cp $SAPI_STATIC $APACHE_TARGET/libmodphp5.a; cp $APACHE_HOOKS_INSTALL_FILES $APACHE_TARGET; cp $sr… 214 …APACHE_HOOKS_INSTALL="mkdir -p $APACHE_TARGET; cp $SAPI_STATIC $APACHE_TARGET/libmodphp5.a; cp $AP…
|
/PHP-5.4/sapi/fpm/fpm/ |
H A D | fpm_env.c | 30 char *cp; in setenv() local 36 if ((cp = malloc(strlen(name) + strlen(value) + 2)) == 0) { in setenv() 39 sprintf(cp, "%s=%s", name, value); in setenv() 40 return putenv(cp); in setenv()
|
/PHP-5.4/sapi/apache/ |
H A D | apMakefile.tmpl | 23 cp $(OBJS_LIB) $@ 29 cp $(OBJS_LIB) $@ 32 cp libphp5. libphp5.a 60 cp Makefile.tmpl Makefile.tmpl.bak \
|
H A D | config.m4 | 148 APACHE_INSTALL="mkdir -p $APACHE_TARGET; cp $SAPI_STATIC $APACHE_INSTALL_FILES $APACHE_TARGET" 167 …cp $SAPI_STATIC $APACHE_TARGET/libmodphp5.a; cp $APACHE_INSTALL_FILES $APACHE_TARGET; cp $srcdir/s… 192 …cp $SAPI_STATIC $APACHE_TARGET/libmodphp5.a; cp $APACHE_INSTALL_FILES $APACHE_TARGET; cp $srcdir/s… 212 …APACHE_INSTALL="mkdir -p $APACHE_TARGET; cp $SAPI_STATIC $APACHE_TARGET/libmodphp5.a; cp $APACHE_I…
|
/PHP-5.4/win32/ |
H A D | inet.c | 79 int inet_aton(const char *cp, struct in_addr *inp) { in inet_aton() argument 80 inp->s_addr = inet_addr(cp); in inet_aton()
|
H A D | inet.h | 9 PHPAPI int inet_aton(const char *cp, struct in_addr *inp);
|
/PHP-5.4/scripts/dev/ |
H A D | conv_z_macros | 57 < $i > tmp && cp tmp $i
|
H A D | conv_proto | 25 cp $tmpfile $file
|
/PHP-5.4/ext/filter/tests/ |
H A D | 040.phpt | 8 ap[]=1&bp=test&cp= 16 var_dump(filter_has_var(INPUT_POST, "cp"));
|
/PHP-5.4/build/ |
H A D | build.mk | 47 cd .. && cp -rp $$myname $$distname; \ 51 test -d $$i || (test -d ../$$i && cp -rp ../$$i $$i); \
|