Searched defs:free (Results 1 - 8 of 8) sorted by relevance
| /PHP_TRUNK/ext/sqlite3/libsqlite/ |
| H A D | sqlite3ext.h | 93 void (*free)(void*); member in struct:sqlite3_api_routines 292 #define sqlite3_free sqlite3_api->free
|
| /PHP_TRUNK/ext/xmlrpc/libxmlrpc/ |
| H A D | base64.h | 36 #define free(p) _free_real(p, __FILE__,__LINE__) macro
|
| /PHP_TRUNK/ext/mbstring/libmbfl/mbfl/ |
| H A D | mbfl_allocators.h | 40 void (*free)(void *); member in struct:_mbfl_allocators 51 #define mbfl_free (__mbfl_allocators->free)
|
| /PHP_TRUNK/ext/standard/ |
| H A D | md5.c | 308 php_uint32 used, free; local 319 free = 64 - used; 321 if (size < free) { 326 memcpy(&ctx->buffer[used], data, free); 327 data = (unsigned char *)data + free; 328 size -= free; 342 php_uint32 used, free; local 348 free = 64 - used; 350 if (free < 8) { 351 memset(&ctx->buffer[used], 0, free); [all...] |
| /PHP_TRUNK/ext/sysvshm/ |
| H A D | php_sysvshm.h | 51 long free; member in struct:__anon261
|
| /PHP_TRUNK/ext/zlib/ |
| H A D | php_zlib.h | 41 size_t free; member in struct:_php_zlib_buffer
|
| /PHP_TRUNK/main/ |
| H A D | output.c | 717 * Destroy and free an output handler */ 800 static inline void php_output_context_feed(php_output_context *context, char *data, size_t size, size_t used, zend_bool free) argument 802 if (context->in.free && context->in.data) { 807 context->in.free = free; 816 if (context->in.free && context->in.data) { 821 context->in.free = context->out.free; 825 context->out.free = 0; 837 context->out.free [all...] |
| H A D | php_output.h | 97 uint free:1; member in struct:_php_output_buffer
|
Completed in 31 milliseconds