Lines Matching refs:text_size
100 int text_size; /* the size of allocated text memory */ variable
576 text_size += 1000; in extend_text()
578 text = REALLOC(text, text_size); in extend_text()
580 text = MALLOC(text_size); in extend_text()
597 while (i >= text_size)
606 while (i >= text_size)
709 while ((text_len + (int)MB_CUR_MAX + 1) >= text_size)
716 while ((text_len + 1) >= text_size)
800 while ((text_len + (int)MB_CUR_MAX + 1) >= text_size)
807 while ((text_len + 1) >= text_size)
843 while (text_len >= text_size)
847 while ((text_len + 1) >= text_size)
854 while ((text_len + 1) >= text_size)
1035 int text_size; local
1050 text_size = 0;
1055 text_size += msgp->msg_len;
1059 mem = nsets * _CAT_SET_HDR_SIZE + nmsgs * _CAT_MSG_HDR_SIZE + text_size;