| /plan9/sys/src/cmd/awk/ |
| H A D | lex.c | 102 int c = input(); in peek() 114 c = input(); in gettok() 124 for ( ; (c = input()) != 0; ) { in gettok() 139 for ( ; (c = input()) != 0; ) { in gettok() 204 while ((c = input()) != '\n' && c != 0) in yylex() 212 input(); in yylex() 214 input(); input(); /* \n */ in yylex() 222 input(); RET(AND); in yylex() 227 input(); RET(BOR); in yylex() 232 input(); yylval.i = NE; RET(NE); in yylex() [all …]
|
| /plan9/sys/src/cmd/postscript/misc/ |
| H A D | pscrypt.c | 45 int input = NOTSET; variable 106 input = BINARY; in options() 141 input = HEX; in options() 183 input = (input == NOTSET) ? HEX : input; in initialize() 188 input = (input == NOTSET) ? BINARY : input; in initialize() 277 else if ( input == HEX ) { in nextbyte() 280 } else if ( input == BINARY ) in nextbyte()
|
| /plan9/sys/src/cmd/eqn/ |
| H A D | lex.c | 22 while ((c = input()) == ' ' || c == '\n' || c == '\t') in yylex() 41 for (sp = 0; (c=input())!='"' && c != '\n'; ) { in yylex() 43 if ((c = input()) != '"') in yylex() 62 c = input(); in yylex() 119 while ((c = input()) == ' ' || c == '\n') in getstr() 135 if ((c = input()) != '"') in getstr() 140 c = input(); in getstr() 152 while ((del=input()) == ' ' || del == '\t') in cstr() 155 for (i=0; (c=input()) != del && c != EOF;) { in cstr() 164 for (i=1; (c=input())!=' ' && c!= '\t' && c!='\n' && c!=EOF;) { in cstr() [all …]
|
| H A D | input.c | 89 if (input() != '(') in dodef() 95 if (input() == ')') in dodef() 113 c = input(); in getarg() 122 } while ((c = input()) != '"' && c != EOF); in getarg() 142 input(void) in input() function
|
| /plan9/sys/src/cmd/plumb/ |
| H A D | plumb.c | 42 int fd, i, input; in main() local 44 input = 0; in main() 63 input++; in main() 88 if((input && argc>0) || (!input && argc<1)) in main() 98 if(input){ in main() 109 if(input == 0){ in main()
|
| H A D | rules.c | 33 static Input *input; variable 85 printinputstackrev(input); in printinputstack() 95 for(in=input; in; in=in->next) in pushinput() 101 in->next = input; in pushinput() 102 input = in; in pushinput() 118 in = input; in popinput() 121 input = in->next; in popinput() 134 if(input == nil) in getc() 136 if(input->fd) in getc() 137 return Bgetc(input->fd); in getc() [all …]
|
| /plan9/sys/src/libsec/port/ |
| H A D | md4.c | 245 encode(uchar *output, u32int *input, ulong len) in encode() argument 251 x = *input++; in encode() 264 decode(u32int *output, uchar *input, ulong len) in decode() argument 268 for(e = input+len; input < e; input += 4) in decode() 269 *output++ = input[0] | (input[1] << 8) | in decode() 270 (input[2] << 16) | (input[3] << 24); in decode()
|
| H A D | md5block.c | 260 decode(u32int *output, uchar *input, ulong len) in decode() argument 264 for(e = input+len; input < e; input += 4) in decode() 265 *output++ = input[0] | (input[1] << 8) | in decode() 266 (input[2] << 16) | (input[3] << 24); in decode()
|
| /plan9/sys/src/cmd/unix/drawterm/libsec/ |
| H A D | md4.c | 245 encode(uchar *output, u32int *input, ulong len) in encode() argument 251 x = *input++; in encode() 264 decode(u32int *output, uchar *input, ulong len) in decode() argument 268 for(e = input+len; input < e; input += 4) in decode() 269 *output++ = input[0] | (input[1] << 8) | in decode() 270 (input[2] << 16) | (input[3] << 24); in decode()
|
| H A D | md5block.c | 260 decode(u32int *output, uchar *input, ulong len) in decode() argument 264 for(e = input+len; input < e; input += 4) in decode() 265 *output++ = input[0] | (input[1] << 8) | in decode() 266 (input[2] << 16) | (input[3] << 24); in decode()
|
| /plan9/sys/src/cmd/upas/bayes/ |
| H A D | msgdb.c | 20 int input; in main() local 23 input = 0; in main() 29 input = 1; in main() 41 if(input){ in main()
|
| /plan9/sys/src/cmd/unix/drawterm/posix-mips/ |
| H A D | md5block.c | 261 decode(u32int *output, uchar *input, ulong len) in decode() argument 265 for(e = input+len; input < e; input += 4) in decode() 266 *output++ = input[0] | (input[1] << 8) | in decode() 267 (input[2] << 16) | (input[3] << 24); in decode()
|
| /plan9/sys/src/cmd/unix/drawterm/posix-amd64/ |
| H A D | md5block.c | 261 decode(u32int *output, uchar *input, ulong len) in decode() argument 265 for(e = input+len; input < e; input += 4) in decode() 266 *output++ = input[0] | (input[1] << 8) | in decode() 267 (input[2] << 16) | (input[3] << 24); in decode()
|
| /plan9/sys/src/cmd/unix/drawterm/posix-power/ |
| H A D | md5block.c | 261 decode(u32int *output, uchar *input, ulong len) in decode() argument 265 for(e = input+len; input < e; input += 4) in decode() 266 *output++ = input[0] | (input[1] << 8) | in decode() 267 (input[2] << 16) | (input[3] << 24); in decode()
|
| /plan9/sys/src/cmd/unix/drawterm/posix-port/ |
| H A D | md5block.c | 261 decode(u32int *output, uchar *input, ulong len) in decode() argument 265 for(e = input+len; input < e; input += 4) in decode() 266 *output++ = input[0] | (input[1] << 8) | in decode() 267 (input[2] << 16) | (input[3] << 24); in decode()
|
| /plan9/sys/src/cmd/unix/drawterm/posix-arm/ |
| H A D | md5block.c | 261 decode(u32int *output, uchar *input, ulong len) in decode() argument 265 for(e = input+len; input < e; input += 4) in decode() 266 *output++ = input[0] | (input[1] << 8) | in decode() 267 (input[2] << 16) | (input[3] << 24); in decode()
|
| /plan9/sys/src/cmd/unix/drawterm/posix-sun4u/ |
| H A D | md5block.c | 261 decode(u32int *output, uchar *input, ulong len) in decode() argument 265 for(e = input+len; input < e; input += 4) in decode() 266 *output++ = input[0] | (input[1] << 8) | in decode() 267 (input[2] << 16) | (input[3] << 24); in decode()
|
| /plan9/sys/src/cmd/upas/smtp/ |
| H A D | greylist.c | 47 char input[128]; in onwhitelist() local 70 strecpy(input, input + sizeof input - 5, line); in onwhitelist() 72 strcat(input, "/128"); in onwhitelist() 74 strcat(input, "/24"); /* was /32 */ in onwhitelist() 75 parse = input; in onwhitelist()
|
| /plan9/sys/src/cmd/diff/ |
| H A D | main.c | 77 mktmpfile(int input, Dir **sb) in mktmpfile() argument 90 while ((i = read(input, buf, sizeof(buf))) > 0) { in mktmpfile() 107 int input; in statfile() local 120 if ((input = open(file, OREAD)) == -1) { in statfile() 124 file = mktmpfile(input, sb); in statfile() 125 close(input); in statfile()
|
| H A D | diffio.c | 16 static Biobuf *input[2]; variable 153 input[i] = bp; /*fix*/ in prepare() 233 if(bp == input[0]) in fetch() 317 fetch(ixold, a, b, input[0], "< "); in change() 321 fetch(ixnew, c, d, input[1], mode == 0 || mode == 'n' ? "> ": ""); in change() 379 fetch(ixold, at, changes[i].a-1, input[0], " "); in flushchanges() 380 fetch(ixold, changes[i].a, changes[i].b, input[0], "- "); in flushchanges() 381 fetch(ixnew, changes[i].c, changes[i].d, input[1], "+ "); in flushchanges() 384 fetch(ixold, at, b, input[0], " "); in flushchanges()
|
| /plan9/sys/src/cmd/cb/ |
| H A D | cb.c | 39 input = &stdin; in main() 41 Bterm(input); in main() 44 if ((input = Bopen(*argv, OREAD)) == 0) in main() 47 Bterm(input); in main() 562 while(isdigit(c=Bgetc(input))||c == '.')putch(c,NO); in work() 565 c = Bgetc(input); in work() 567 while(isdigit(c=Bgetc(input)))putch(c,NO); in work() 569 Bungetc(input); in work() 938 return(Bgetc(input)); in getch() 948 else Bungetc(input); in unget() [all …]
|
| /plan9/sys/src/cmd/ |
| H A D | join.c | 37 int input(int); 187 n[F1] = input(F1); in readboth() 188 n[F2] = input(F2); in readboth() 216 n[F2] = input(F2); in join() 222 n[F1] = input(F1); in join() 228 n[seekf] = input(seekf); in join() 236 n[seekf] = input(seekf); in join() 248 n[seekf] = input(seekf); in join() 257 input(int n) /* get input line and split into fields */ in input() function
|
| /plan9/sys/src/cmd/mk/ |
| H A D | parse.c | 265 struct input struct 269 struct input *next; argument 271 static struct input *inputs = 0; 276 struct input *in, *me; in ipush() 278 me = (struct input *)Malloc(sizeof(*me)); in ipush() 294 struct input *in, *me; in ipop()
|
| /plan9/sys/lib/lp/spooler/ |
| H A D | nospool | 9 if (! ~ $DEBUG '') echo input file is stdin >[1=2] 14 if (! ~ $DEBUG '') echo input files $* >[1=2]
|
| /plan9/sys/src/cmd/gs/lib/ |
| H A D | ps2ps.bat | 21 echo "Usage: ps2ps [options] input.ps output.ps" 22 echo " e.g. ps2ps -sPAPERSIZE=a4 input.ps output.ps
|