Home
last modified time | relevance | path

Searched refs:str_realloc (Results 1 – 25 of 46) sorted by relevance

12

/dports/devel/bglibs/bglibs-2.04/str/
H A Dcat.c36 if (!str_realloc(s, s->len+1)) return 0; in str_catc()
45 if (!str_realloc(s, s->len + len)) return 0; in str_catb()
H A Dtruncate.c29 if (!str_realloc(s, len)) return 0; in str_truncate()
H A Dcatsllnum.c28 if (!str_realloc(s, s->len + len)) return 0; in str_catsllnumw()
H A Dcatullnum.c28 if (!str_realloc(s, s->len + len)) return 0; in str_catullnumw()
H A Dcatsnum.c27 if (!str_realloc(s, s->len + len)) return 0; in str_catsnumw()
H A Dcatunum.c27 if (!str_realloc(s, s->len + len)) return 0; in str_catunumw()
H A Dcat2s.c27 if (!str_realloc(s, s->len+alen+blen)) return 0; in str_cat2s()
H A Dcatf.c30 if (!str_realloc(s, s->len + length)) in str_catfv()
/dports/mail/qmail-notify/qmail-notify-0.93/str/
H A Dcat.c33 if (!str_realloc(s, s->len+1)) return 0; in str_catc()
41 if (!str_realloc(s, s->len + len)) return 0; in str_catb()
H A Dtruncate.c22 if (!str_realloc(s, len)) return 0; in str_truncate()
H A Drealloc.c23 int str_realloc(str* s, unsigned size) in str_realloc() function
H A Dcat2s.c26 if (!str_realloc(s, s->len+alen+blen)) return 0; in str_cat2s()
H A Dcat3s.c27 if (!str_realloc(s, s->len+alen+blen+clen)) return 0; in str_cat3s()
H A Dcatuw.c32 if (!str_realloc(s, s->len + padsize+size)) return 0; in str_catuw()
H A Dcat4s.c29 if (!str_realloc(s, s->len+alen+blen+clen+dlen)) return 0; in str_cat4s()
H A Dcat5s.c30 if (!str_realloc(s, s->len+alen+blen+clen+dlen+elen)) return 0; in str_cat5s()
/dports/security/stunnel/stunnel-5.60/src/
H A Dnetwork.c165 fds->ufds=str_realloc(fds->ufds, fds->allocated*sizeof(struct pollfd)); in s_poll_realloc()
201 ufds=str_realloc(ufds, nfds*sizeof(struct pollfd)); in scan_waiting_queue()
474 fds->irfds=str_realloc(fds->irfds, FD_SIZE(fds)); in s_poll_realloc()
475 fds->iwfds=str_realloc(fds->iwfds, FD_SIZE(fds)); in s_poll_realloc()
476 fds->ixfds=str_realloc(fds->ixfds, FD_SIZE(fds)); in s_poll_realloc()
477 fds->orfds=str_realloc(fds->orfds, FD_SIZE(fds)); in s_poll_realloc()
478 fds->owfds=str_realloc(fds->owfds, FD_SIZE(fds)); in s_poll_realloc()
479 fds->oxfds=str_realloc(fds->oxfds, FD_SIZE(fds)); in s_poll_realloc()
744 line=str_realloc(line, allocated); in fd_getline()
857 line=str_realloc(line, allocated); in ssl_getstring()
[all …]
/dports/ftp/weex/weex-2.8.3/src/
H A Dcache.c93 cache_dir=str_realloc(cache_dir,(max_cache_dir+1)*sizeof(*cache_dir)); in load_cache()
102 …cache_dir[max_cache_dir-1].ptr=str_realloc(cache_dir[max_cache_dir-1].ptr,(max_cache_file+1)*sizeo… in load_cache()
204 …cache_dir[cache_dir_num].ptr=str_realloc(cache_dir[cache_dir_num].ptr,(max_cache_file+1)*sizeof(*c… in update_cache()
249 cache_dir=str_realloc(cache_dir,sizeof(*cache_dir)*(max_cache_dir+1)); in update_cache_directory()
H A Dstrlib.c79 void *str_realloc(void *ptr,size_t size) in str_realloc() function
156 ptr=str_realloc(ptr,size); in str_concat()
349 ptr=str_realloc(ptr,127*(i+1)+1); in str_fgets()
H A Dfiledata.c104 *local_data=str_realloc(*local_data,sizeof(**local_data)*(file_num+1)); in get_local_file_data()
225 add_cache_num=str_realloc(add_cache_num,sizeof(*add_cache_num)*(add_cache_files+1)); in get_remote_file_data()
235 add_cache_num=str_realloc(add_cache_num,sizeof(*add_cache_num)*(add_cache_files+1)); in get_remote_file_data()
242 *remote_data=str_realloc(*remote_data,sizeof(**remote_data)*(file_num+1)); in get_remote_file_data()
H A Dstrlib.h31 void *str_realloc(void *ptr,size_t size);
/dports/devel/texlab/texlab-3.3.0/cargo-crates/bibutils-sys-0.1.1/vendor/lib/
H A Dstr.c72 str_realloc( str *s, unsigned long minsize )
96 str_realloc( str *s, unsigned long minsize )
306 str_realloc( s, s->len*2 );
365 str_realloc( s, s->len + lenaddstr + 1 );
381 str_realloc( s, m );
489 str_realloc( s, m );
653 if (s->dim <= minsize) str_realloc( s, minsize );
1099 str_realloc( s, n+1 );
/dports/textproc/R-cran-rbibutils/rbibutils/src/
H A Dstr.c79 str_realloc( str *s, unsigned long minsize ) in str_realloc() function
103 str_realloc( str *s, unsigned long minsize ) in str_realloc() function
347 str_realloc( s, s->len*2 ); in str_addchar()
406 str_realloc( s, s->len + lenaddstr + 1 ); in str_prepend()
431 str_realloc( s, m ); in str_strcat_ensurespace()
544 str_realloc( s, m ); in str_strcpy_ensurespace()
747 if (s->dim <= minsize) str_realloc( s, minsize ); in str_findreplace()
1193 str_realloc( s, n+1 ); in str_fill()
/dports/textproc/bibutils/bibutils_7.2/lib/
H A Dstr.c72 str_realloc( str *s, unsigned long minsize ) in str_realloc() function
96 str_realloc( str *s, unsigned long minsize ) in str_realloc() function
306 str_realloc( s, s->len*2 ); in str_addchar()
365 str_realloc( s, s->len + lenaddstr + 1 ); in str_prepend()
381 str_realloc( s, m ); in str_strcat_ensurespace()
489 str_realloc( s, m ); in str_strcpy_ensurespace()
653 if (s->dim <= minsize) str_realloc( s, minsize ); in str_findreplace()
1099 str_realloc( s, n+1 ); in str_fill()
/dports/devel/bglibs/bglibs-2.04/net/
H A Ddns_domain_todot.c7 if (!str_realloc(out, out->len + len)) in dns_domain_todot_cat()

12