Home | History | Annotate | Download | only in unicode

Lines Matching refs:done

91 	int shifted = 0, needshift = 0, done = 0;
108 if (!(done = (source >= sourceEnd)))
110 needshift = (!done && ((r > 0x7f) || mustshift[r]));
154 if (verbose || ((!done) && (invbase64[r] >=0 || r == SHIFT_OUT)))
164 if (!needshift && !done)
171 while (!done);
184 int shifted = 0, first = 0, wroteone = 0, base64EOF, base64value, done;
196 if (!(done = (source >= sourceEnd)))
200 /* We're done with a base64 string if we hit EOF, it's not a valid
203 base64EOF = done || (c > 0x7f) || (base64value = invbase64[c]) < 0;
213 if (!done && (c == SHIFT_IN || c == SHIFT_OUT))
217 if (!(done = (source >= sourceEnd)))
272 if (!shifted && !done)
294 while (!done);