Home | History | Annotate | Download | only in posix

Lines Matching defs:out

38   int i = 0, out;
56 if (!(out = *(c++))) break;
59 if (out == '\\' && *c) {
62 if (n) out = n;
65 out = 0;
66 while (*c>='0' && *c<='7' && n++<3) out = (out*8)+*(c++)-'0';
68 out = 0;
70 if (*c>='0' && *c<='9') out = (out*16)+*(c++)-'0';
74 out = (out*16)+temp-'a'+10;
82 putchar(out);