Lines Matching defs:size
25 register int i, size;
29 for (size=0; info->rqt_tables[size] != (ssrt *)NULL; size++)
31 /* size == C subscript of NULL == #elements */
32 size += 2; /* new element, and NULL */
33 t = (ssrt **)realloc(info->rqt_tables, (unsigned)size*sizeof(ssrt *));
39 if (position > size - 2)
40 position = size - 2;
42 if (size > 1)
43 for (i = size - 2; i >= position; i--)
47 info->rqt_tables[size-1] = (ssrt *)NULL;