Lines Matching refs:left
90 size_t left, len;
97 left = *lenp;
101 while (left && isspace(*p)) {
102 left--;
105 if (!left)
108 if (left > sizeof(tmpbuf) - 1)
110 memcpy(tmpbuf, p, left);
111 tmpbuf[left] = '\0';
115 left -= (s - tmpbuf);
116 if (left && !isspace(*s))
118 while (left && isspace(*s)) {
119 left--;
123 left = 0;
130 if (len > left)
131 len = left;
133 if ((left -= len) > 0) {
135 left--;
140 *lenp -= left;