Lines Matching defs:size
166 * Alloc string for size bytes. Free strings from history if necessary.
169 con3270_alloc_string(struct con3270 *cp, size_t size)
173 s = alloc_string(&cp->freemem, size);
181 if (free_string(&cp->freemem, s) >= size)
184 s = alloc_string(&cp->freemem, size);
463 unsigned int size;
466 size = (cp->cline->len < cp->view.cols - 5) ?
468 s = con3270_alloc_string(cp, size);
474 while (--size >= cp->cline->len)
475 s->string[size] = cp->view.ascebc[' '];