Software: Apache/2.0.54 (Unix) mod_perl/1.99_09 Perl/v5.8.0 mod_ssl/2.0.54 OpenSSL/0.9.7l DAV/2 FrontPage/5.0.2.2635 PHP/4.4.0 mod_gzip/2.0.26.1a uname -a: Linux snow.he.net 4.4.276-v2-mono-1 #1 SMP Wed Jul 21 11:21:17 PDT 2021 i686 uid=99(nobody) gid=98(nobody) groups=98(nobody) Safe-mode: OFF (not secure) /usr/doc/ImageMagick-5.5.4-3/api/ drwxr-xr-x | |
| Viewing file: Select action/file-type:
NAMEmemory - Memory Allocation
SYNOPSISvoid * AcquireMemory( const size_t size ); void * CloneMemory( void *destination, const void *source, const size_t size ); void LiberateMemory( void ** memory ); void ReacquireMemory( void ** memory, const size_t size );
FUNCTION DESCRIPTIONS
AcquireMemoryAcquireMemory() returns a pointer to a block of memory at least size bytes suitably aligned for any use. The format of the AcquireMemory method is: void *AcquireMemory ( const size_t size ); A description of each parameter follows:
CloneMemoryCloneMemory() copies size bytes from memory area source to the destination. Copying between objects that overlap will take place correctly. It returns destination. The format of the CloneMemory method is: void *CloneMemory ( void *destination, const void *source, const size_t size ); A description of each parameter follows:
LiberateMemoryLiberateMemory() frees memory that has already been allocated, and NULLs the pointer to it. The format of the LiberateMemory method is: void LiberateMemory ( void **memory ); A description of each parameter follows:
ReacquireMemoryReacquireMemory() changes the size of the memory and returns a pointer to the ( possibly moved ) block. The contents will be unchanged up to the lesser of the new and old sizes. The format of the ReacquireMemory method is: void ReacquireMemory ( void **memory, const size_t size ); A description of each parameter follows:
|
:: Command execute :: | |
--[ c99shell v. 1.0 pre-release build #13 powered by Captain Crunch Security Team | http://ccteam.ru | Generation time: 0.0044 ]-- |