Searched defs:memmove (Results 1 - 3 of 3) sorted by relevance
| /PHP_TRUNK/ext/ereg/regex/ |
| H A D | utils.h | 20 /* for old systems with bcopy() but no memmove() */ 22 #define memmove(d, s, c) bcopy(s, d, c) macro
|
| /PHP_TRUNK/main/ |
| H A D | php.h | 194 # define memmove(d, s, n) bcopy ((s), (d), (n)) macro
|
| /PHP_TRUNK/ext/pcre/pcrelib/ |
| H A D | pcre_internal.h | 367 #define memmove(d,s,n) _memmove(d,s,n) macro 371 /* To cope with SunOS4 and other systems that lack memmove() but have bcopy(), 372 define a macro for memmove() if HAVE_MEMMOVE is false, provided that HAVE_BCOPY 377 #undef memmove /* some systems may have a macro */ macro 379 #define memmove(a, b, c) bcopy(b, a, c) macro 400 #define memmove(a, b, c) pcre_memmove(a, b, c) macro
|
Completed in 11 milliseconds