Home | History | Annotate | Download | only in posix

Lines Matching refs:out

43   int i = 0, out;
61 if (!(out = *(c++))) break;
64 if (out == '\\' && *c) {
67 if (n) out = n;
70 out = 0;
71 while (*c>='0' && *c<='7' && n++<3) out = (out*8)+*(c++)-'0';
73 out = 0;
75 if (*c>='0' && *c<='9') out = (out*16)+*(c++)-'0';
79 out = (out*16)+temp-'a'+10;
87 putchar(out);