Home
last modified time | relevance | path

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

/illumos-gate/usr/src/cmd/sgs/m4/common/
H A Dm4.c1057 static size_t bsiz; in wstr2str() local
1063 while (bsiz < (wcslen(from) * mb_cur_max + 1)) { in wstr2str()
1064 if ((p = realloc(retbuf, bsiz + 256)) == NULL) in wstr2str()
1066 bsiz += 256; in wstr2str()
1101 static size_t bsiz; in str2wstr() local
1107 while (bsiz < (strlen(from) + 1)) { in str2wstr()
1109 (bsiz + 256) * sizeof (wchar_t))) == NULL) { in str2wstr()
1112 bsiz += 256; in str2wstr()