Home
last modified time | relevance | path

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

/titanic_41/usr/src/cmd/sgs/m4/common/
H A Dm4.c1053 static size_t bsiz; in wstr2str() local
1059 while (bsiz < (wcslen(from) * mb_cur_max + 1)) { in wstr2str()
1060 if ((p = realloc(retbuf, bsiz + 256)) == NULL) in wstr2str()
1062 bsiz += 256; in wstr2str()
1097 static size_t bsiz; in str2wstr() local
1103 while (bsiz < (strlen(from) + 1)) { in str2wstr()
1105 (bsiz + 256) * sizeof (wchar_t))) == NULL) { in str2wstr()
1108 bsiz += 256; in str2wstr()