OLD | NEW |
1 // Copyright 2009 The Go Authors. All rights reserved. | 1 // Copyright 2009 The Go Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style | 2 // Use of this source code is governed by a BSD-style |
3 // license that can be found in the LICENSE file. | 3 // license that can be found in the LICENSE file. |
4 | 4 |
5 #include <u.h> | 5 #include <u.h> |
6 #include <libc.h> | 6 #include <libc.h> |
7 #include <bio.h> | 7 #include <bio.h> |
8 | 8 |
9 #undef OAPPEND | 9 #undef OAPPEND |
10 | 10 |
(...skipping 375 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
386 OINDEX, OINDEXMAP, | 386 OINDEX, OINDEXMAP, |
387 OKEY, OPARAM, | 387 OKEY, OPARAM, |
388 OLEN, | 388 OLEN, |
389 OMAKE, OMAKECHAN, OMAKEMAP, OMAKESLICE, | 389 OMAKE, OMAKECHAN, OMAKEMAP, OMAKESLICE, |
390 OHMUL, ORRC, OLRC, // high-mul and rotate-carry | 390 OHMUL, ORRC, OLRC, // high-mul and rotate-carry |
391 OMUL, ODIV, OMOD, OLSH, ORSH, OAND, OANDNOT, | 391 OMUL, ODIV, OMOD, OLSH, ORSH, OAND, OANDNOT, |
392 ONEW, | 392 ONEW, |
393 ONOT, OCOM, OPLUS, OMINUS, | 393 ONOT, OCOM, OPLUS, OMINUS, |
394 OOROR, | 394 OOROR, |
395 OPANIC, OPRINT, OPRINTN, | 395 OPANIC, OPRINT, OPRINTN, |
| 396 OPAREN, |
396 OSEND, | 397 OSEND, |
397 OSLICE, OSLICEARR, OSLICESTR, | 398 OSLICE, OSLICEARR, OSLICESTR, |
398 ORECOVER, | 399 ORECOVER, |
399 ORECV, | 400 ORECV, |
400 ORUNESTR, | 401 ORUNESTR, |
401 OSELRECV, | 402 OSELRECV, |
402 OSELRECV2, | 403 OSELRECV2, |
403 OIOTA, | 404 OIOTA, |
404 OREAL, OIMAG, OCOMPLEX, | 405 OREAL, OIMAG, OCOMPLEX, |
405 | 406 |
(...skipping 853 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1259 Node* nodarg(Type*, int); | 1260 Node* nodarg(Type*, int); |
1260 void nopout(Prog*); | 1261 void nopout(Prog*); |
1261 void patch(Prog*, Prog*); | 1262 void patch(Prog*, Prog*); |
1262 Prog* unpatch(Prog*); | 1263 Prog* unpatch(Prog*); |
1263 void zfile(Biobuf *b, char *p, int n); | 1264 void zfile(Biobuf *b, char *p, int n); |
1264 void zhist(Biobuf *b, int line, vlong offset); | 1265 void zhist(Biobuf *b, int line, vlong offset); |
1265 void zname(Biobuf *b, Sym *s, int t); | 1266 void zname(Biobuf *b, Sym *s, int t); |
1266 void data(void); | 1267 void data(void); |
1267 void text(void); | 1268 void text(void); |
1268 | 1269 |
OLD | NEW |