Searched refs:bsiz (Results 1 - 7 of 7) sorted by relevance

/macosx-10.10/zsh-61/zsh/Src/
H A Dlex.c191 static int len = 0, bsiz = 256; variable
215 int bsiz; member in struct:lexstack
286 ls->bsiz = bsiz;
287 bsiz = 256;
350 bsiz = lstack->bsiz;
573 if (bsiz == ++len) {
574 int newbsiz = bsiz * 2;
576 if (newbsiz > inbufct && inbufct > bsiz)
[all...]
H A Dhist.c2217 int bsiz = 256, ct = 0, c;
2218 char *buf = (char *)zalloc(bsiz), *ptr;
2225 if (++ct == bsiz) {
2226 buf = realloc(buf, bsiz *= 2);
2234 zfree(buf, bsiz);
2245 int bsiz = 256, ct = 0, c; local
2246 char *buf = (char *)zalloc(bsiz), *ptr;
2253 if (++ct == bsiz) {
2254 buf = realloc(buf, bsiz *= 2);
H A Dexec.c3583 int bsiz, qt = 0, strip = 0; local
3600 bptr = buf = zalloc(bsiz = 256);
3607 if (bptr == buf + bsiz) {
3608 char *newbuf = realloc(buf, 2 * bsiz);
3611 zfree(buf, bsiz);
3615 t = buf + bsiz - (bptr - t);
3616 bptr = buf + bsiz;
3617 bsiz *= 2;
3643 zfree(buf, bsiz);
3781 int bsiz, local
[all...]
H A Dbuiltin.c5187 int bsiz, c = 0, gotnl = 0, al = 0, first, nchars = 1, bslash, keys = 0; local
5541 buf = bptr = (char *)zalloc(bsiz = 64);
5648 if (bptr >= buf + bsiz - 1) {
5654 buf = realloc(buf, bsiz *= 2);
5740 buf = bptr = (char *)zalloc(bsiz = 64);
5831 if (bptr >= buf + bsiz - 1) {
5837 buf = realloc(buf, bsiz *= 2);
/macosx-10.10/curl-83.1.2/curl/lib/
H A Dmemdebug.c250 size_t wsiz, bsiz; local
258 bsiz = wsiz * sizeof(wchar_t);
260 mem = curl_domalloc(bsiz, 0, NULL); /* NULL prevents logging */
262 memcpy(mem, str, bsiz);
266 source, line, (void *)str, bsiz, (void *)mem);
/macosx-10.10/ruby-106/ruby/
H A Dsprintf.c85 while (blen + (l) >= bsiz) {\
86 bsiz*=2;\
88 rb_str_resize(result, bsiz);\
444 long blen, bsiz; local
482 bsiz = 120;
483 result = rb_str_buf_new(bsiz);
486 memset(buf, 0, bsiz);
1161 size_t blen = buf - RSTRING_PTR(result), bsiz = fp->_w; local
1170 fp->_w = bsiz;
/macosx-10.10/Libc-1044.1.2/stdio/FreeBSD/
H A Dvfscanf.c972 static size_t bsiz = 0; local
983 bsiz = s > BUF ? s : BUF;
984 b = (char *)malloc(bsiz);
986 bsiz = 0;
992 if (s > bsiz) {
996 bsiz = 0;
999 bsiz = s;

Completed in 493 milliseconds