Home
last modified time | relevance | path

Searched refs:src (Results 76 – 100 of 181) sorted by relevance

12345678

/PHP-5.4/sapi/apache/
H A Dconfig.w3212 ";" + PHP_PHP_BUILD + "\\apache\\src\\include") &&
15 ";" + PHP_PHP_BUILD + "\\apache\\src\\corer")) {
/PHP-5.4/main/
H A Dsnprintf.c166 src = digits; in php_gcvt()
167 *dst++ = *src++; in php_gcvt()
169 if (*src == '\0') { in php_gcvt()
173 *dst++ = *src++; in php_gcvt()
202 src = digits; in php_gcvt()
203 while (*src != '\0') { in php_gcvt()
204 *dst++ = *src++; in php_gcvt()
210 if (*src != '\0') { in php_gcvt()
211 *dst++ = *src++; in php_gcvt()
216 if (*src != '\0') { in php_gcvt()
[all …]
H A Dphp_streams.h64 #define php_stream_copy_to_mem_rel(src, buf, maxlen, persistent) _php_stream_copy_to_mem((src), (bu… argument
443 PHPAPI size_t _php_stream_copy_to_stream(php_stream *src, php_stream *dest, size_t maxlen STREAMS_D…
444 #define php_stream_copy_to_stream(src, dest, maxlen) _php_stream_copy_to_stream((src), (dest), (max… argument
445 PHPAPI int _php_stream_copy_to_stream_ex(php_stream *src, php_stream *dest, size_t maxlen, size_t *…
446 #define php_stream_copy_to_stream_ex(src, dest, maxlen, len) _php_stream_copy_to_stream_ex((src), (… argument
451 PHPAPI size_t _php_stream_copy_to_mem(php_stream *src, char **buf, size_t maxlen,
453 #define php_stream_copy_to_mem(src, buf, maxlen, persistent) _php_stream_copy_to_mem((src), (buf), … argument
456 PHPAPI size_t _php_stream_passthru(php_stream * src STREAMS_DC TSRMLS_DC);
H A Dphp.h111 #define PHP_STRLCPY(dst, src, size, src_size) \ argument
119 memcpy(dst, src, php_str_len); \
125 PHPAPI size_t php_strlcpy(char *dst, const char *src, size_t siz);
133 PHPAPI size_t php_strlcat(char *dst, const char *src, size_t siz);
/PHP-5.4/ext/standard/
H A Dfile.h77 PHPAPI int php_copy_file(char *src, char *dest TSRMLS_DC);
78 PHPAPI int php_copy_file_ex(char *src, char *dest, int src_chk TSRMLS_DC);
79 PHPAPI int php_copy_file_ctx(char *src, char *dest, int src_chk, php_stream_context *ctx TSRMLS_DC);
H A Dphp_array.h106 PHPAPI int php_array_merge(HashTable *dest, HashTable *src, int recursive TSRMLS_DC);
107 PHPAPI int php_array_replace_recursive(HashTable *dest, HashTable *src TSRMLS_DC);
H A Dcrypt_blowfish.c377 #define BF_safe_atoi64(dst, src) \ argument
379 tmp = (unsigned char)(src); \
387 static int BF_decode(BF_word *dst, const char *src, int size) in BF_decode() argument
391 const unsigned char *sptr = (const unsigned char *)src; in BF_decode()
414 static void BF_encode(char *dst, const BF_word *src, int size) in BF_encode() argument
416 const unsigned char *sptr = (const unsigned char *)src; in BF_encode()
/PHP-5.4/ext/mbstring/libmbfl/mbfl/
H A Dmbfl_memory_device.c276 mbfl_memory_device_devcat(mbfl_memory_device *dest, mbfl_memory_device *src) in mbfl_memory_device_devcat() argument
281 if ((dest->pos + src->pos) >= dest->length) { in mbfl_memory_device_devcat()
283 int newlen = dest->length + src->pos + MBFL_MEMORY_DEVICE_ALLOC_SIZE; in mbfl_memory_device_devcat()
292 p = src->buffer; in mbfl_memory_device_devcat()
294 n = src->pos; in mbfl_memory_device_devcat()
/PHP-5.4/win32/build/
H A Dprojectgen.js40 var src = FSO.CreateTextFile("tmp\\src\\" + fname, true);
59 src.WriteLine("# Begin Source File");
60 src.WriteLine("SOURCE=" + arr[i]);
61 src.WriteLine('# PROP Intermediate_Dir "' + intpath + out + '\\' + path + libpath + '"');
62 src.WriteLine("# End Source File");
63 src.WriteBlankLines(1);
67 src.Close();
411 src = src.replace(/\.\.\\\.\.\\/g, "..\\");
415 CORE_SOURCES += begins + src + "# End Group\r\n";
418 EXT_SOURCES += begins + src + "# End Group\r\n";
H A Dmkdist.php245 foreach ($text_files as $src => $dest) {
246 copy_text_file($src, $dist_dir . '/' . $dest);
255 foreach ($general_files as $src => $dest) {
256 copy($src, $dist_dir . '/' . $dest);
/PHP-5.4/Zend/
H A Dzend_llist.c160 ZEND_API void zend_llist_copy(zend_llist *dst, zend_llist *src) in zend_llist_copy() argument
164 zend_llist_init(dst, src->size, src->dtor, src->persistent); in zend_llist_copy()
165 ptr = src->head; in zend_llist_copy()
/PHP-5.4/ext/dom/tests/
H A Ddom001.phpt46 //$attr = $dom->createAttribute("src", "picture.gif");
50 $attr = $rootnode->setAttribute("src", "picture.gif");
51 $attr = $rootnode->getAttribute("src");
56 $attr = $rootnode->getAttributeNode("src");
60 $attr = $rootnode->removeAttribute("src");
166 Node Name: src
H A DDOMDocumentType_basic_001.phpt27 $xml .= ' <!ATTLIST img src ENTITY #REQUIRED>';
31 $xml .= '<img src="logo"/>';
/PHP-5.4/ext/standard/tests/file/
H A Drename_variation1.phpt37 // create the src dir
39 // rename the src dir to a new dir in dest dir
H A Drename_variation1-win32.phpt44 // create the src dir
46 // rename the src dir to a new dir in dest dir
/PHP-5.4/ext/tidy/tests/
H A D032.phpt11 $buffer = '<img src="file.png" /><php>';
H A D033.phpt11 $buffer = '<img src="file.png" /><php>';
H A D034.phpt11 $buffer = '<img src="file.png" /><php>';
/PHP-5.4/pear/
H A Dinstall-pear.txt8 | download http://pear.php.net/go-pear.phar to php-src/pear/ |
/PHP-5.4/ext/gd/tests/
H A Dcreatefromwbmp.phpt9 $file = dirname(__FILE__) . '/src.wbmp';
H A Dcreatefromgd2.phpt9 $file = dirname(__FILE__) . '/src.gd2';
/PHP-5.4/ext/bcmath/libbcmath/
H A Dconfigure.in17 AC_OUTPUT(Makefile src/Makefile doc/Makefile)
/PHP-5.4/sapi/apache_hooks/
H A Dphp5apache_hooks.dsp47 …\regex" /I "..\.." /I "..\..\..\bindlib_w32" /I "..\..\..\php_build\apache\src\include" /I "..\..\…
57 …00000" /version:4.0 /dll /machine:I386 /libpath:"..\..\..\php_build\apache\src\corer" /libpath:"..…
73 …\regex" /I "..\.." /I "..\..\..\bindlib_w32" /I "..\..\..\php_build\apache\src\include" /I "..\..\…
83 …TS/php5apache_hooks.dll" /pdbtype:sept /libpath:"..\..\..\php_build\apache\src\cored" /libpath:"..…
99 …\regex" /I "..\.." /I "..\..\..\bindlib_w32" /I "..\..\..\php_build\apache\src\include" /I "..\..\…
109 …lib odbccp32.lib /nologo /version:4.0 /dll /machine:I386 /libpath:"\apache\src\corer" /libpath:"..…
/PHP-5.4/build/
H A Dshtool834 for src in $srcs; do
839 dstfile=`echo "$src" | sed -e 's;.*/\([^/]*\)$;\1;'`
844 if [ ".$src" = ".$dst" ]; then
848 if [ -d "$src" ]; then
849 echo "$msgprefix:Warning: source \`$src' is a directory - skipped" 1>&2
860 echo "$src -> $dst" 1>&2
870 echo "cp $src $dsttmp" 1>&2
872 cp "$src" "$dsttmp" || shtool_exit $?
875 echo "mv $src $dsttmp" 1>&2
877 mv "$src" "$dsttmp" || shtool_exit $?
[all …]
/PHP-5.4/Zend/RFCs/
H A D002.txt103 4 var $src;
104 5 function Image($src) {
105 6 $this->src = $src;

Completed in 53 milliseconds

12345678