Lines Matching refs:left
71 size_t left, len;
78 left = *lenp;
82 while (left && isspace(*p)) {
83 left--;
86 if (!left)
89 if (left > sizeof(tmpbuf) - 1)
91 memcpy(tmpbuf, p, left);
92 tmpbuf[left] = '\0';
96 left -= (s - tmpbuf);
97 if (left && !isspace(*s))
99 while (left && isspace(*s)) {
100 left--;
104 left = 0;
111 if (len > left)
112 len = left;
114 if ((left -= len) > 0) {
116 left--;
121 *lenp -= left;