Searched refs:malloc (Results 1 – 25 of 144) sorted by relevance
123456
62 return malloc(aSize); in LocalPcreMalloc()68 PCRE_EXP_DATA_DEFN void *(*PUBL(malloc))(size_t) = LocalPcreMalloc;76 PCRE_EXP_DATA_DEFN void *(*PUBL(malloc))(size_t) = malloc;78 PCRE_EXP_DATA_DEFN void *(*PUBL(stack_malloc))(size_t) = malloc;
82 yield = (unsigned char*)(PUBL(malloc))(tables_length); in pcre_maketables()84 yield = (unsigned char*)malloc(tables_length); in pcre_maketables()
37 void *(*malloc)(unsigned int); member48 #define mbfl_malloc (__mbfl_allocators->malloc)
76 return malloc(sz); in __mbfl__malloc()
62 ((use_heap = ((size) > (limit))) ? malloc(size) : alloca(size))69 # define tsrm_do_alloca(p, use_heap) malloc(p)
263 p->storage[j] = (void *) malloc(resource_types_table[j].size); in ts_allocate_id()285 (*thread_resources_ptr) = (tsrm_tls_entry *) malloc(sizeof(tsrm_tls_entry)); in allocate_new_resource()288 (*thread_resources_ptr)->storage = (void **) malloc(sizeof(void *)*id_count); in allocate_new_resource()305 (*thread_resources_ptr)->storage[i] = (void *) malloc(resource_types_table[i].size); in allocate_new_resource()608 mutexp = malloc(sizeof(CRITICAL_SECTION)); in tsrm_mutex_alloc()611 mutexp = (MUTEX_T) malloc(sizeof(*mutexp)); in tsrm_mutex_alloc()614 mutexp = (pthread_mutex_t *)malloc(sizeof(pthread_mutex_t)); in tsrm_mutex_alloc()623 mutexp = (beos_ben*)malloc(sizeof(beos_ben)); in tsrm_mutex_alloc()
11 but it has "--enable-malloc-mm" instead. It is enabled by default in DEBUG13 between malloc and emalloc at runtime so you can use internal and external memory40 variables. Default values are "malloc" and "256K". Dependent on target system you
48 ret = malloc(len); in _zip_memdup()
95 if ((ctx=(struct read_data *)malloc(sizeof(*ctx))) == NULL) { in zip_source_buffer_create()264 if ((buffer = malloc(sizeof(*buffer))) == NULL) { in buffer_new()292 if ((buffer->fragments = malloc(sizeof(*(buffer->fragments)))) == NULL) { in buffer_new_read()316 if ((buffer->fragments = malloc(sizeof(*(buffer->fragments)))) == NULL) { in buffer_new_write()408 if ((buffer->fragments[buffer->nfragments] = malloc(buffer->fragment_size)) == NULL) { in buffer_write()
152 if ((s=(zip_string_t *)malloc(sizeof(*s))) == NULL) { in _zip_string_new()157 if ((s->raw=(zip_uint8_t *)malloc((size_t)(length+1))) == NULL) { in _zip_string_new()
49 za = (zip_t *)malloc(sizeof(struct zip)); in _zip_new()
75 if ((s=(char *)malloc(strlen(ss) in zip_error_strerror()
75 if ((zf=(zip_file_t *)malloc(sizeof(struct zip_file))) == NULL) { in _zip_file_new()
69 if ((wfname = (wchar_t *)malloc(sizeof(wchar_t) * size)) == NULL) { in zip_source_file_create()
65 if ((s=(char *)malloc(len+2)) == NULL) { in zip_dir_add()
26 s0 = (char *) malloc(42);27 s1 = (char *) malloc(8);
69 'persistent' means that mysqlnd uses malloc() instead of emalloc(). nothing else. ext/mysqli will71 Its only about malloc() vs. emalloc().73 …However, the bug is about malloc() and efree(). You can make make mysqlnd use malloc() by either u…
27 char *malloc(); in setenv()35 if ((cp = malloc(strlen(name) + strlen(value) + 2)) == 0) { in setenv()258 if ((new_environ = malloc((1U + env_nb) * sizeof (char *))) == NULL) { in fpm_env_init_main()
58 ret = malloc(sizeof(struct fpm_worker_pool_s)); in fpm_worker_pool_alloc()
27 #define YYMALLOC malloc100 $$.file.name = malloc($1.len + $2.len + 1);110 $$.file.name = malloc($1.len + $2.len + 1);
35 #define malloc(s) _malloc_real(s,__FILE__,__LINE__) macro
189 new_environ = (char **) malloc((i + 1) * sizeof(char *)); in save_ps_args()190 frozen_environ = (char **) malloc((i + 1) * sizeof(char *)); in save_ps_args()221 new_argv = (char **) malloc((argc + 1) * sizeof(char *)); in save_ps_args()
89 pollfds = malloc(sizeof(struct pollfd) * max); in fpm_event_devpoll_init()102 active_pollfds = malloc(sizeof(struct pollfd) * max); in fpm_event_devpoll_init()
81 pollfds = malloc(sizeof(struct pollfd) * max); in fpm_event_poll_init()94 active_pollfds = malloc(sizeof(struct pollfd) * max); in fpm_event_poll_init()
50 dp = (DIR *) malloc(sizeof(DIR)); in opendir()67 filespecw = (wchar_t *)malloc((filespecw_len + 1)*sizeof(wchar_t)); in opendir()218 filespecw = (wchar_t *)malloc((filespecw_len + 1)*sizeof(wchar_t)); in rewinddir()
Completed in 35 milliseconds