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 package PACKAGE | 5 package PACKAGE |
6 | 6 |
7 // emitted by compiler, not referred to by go programs | 7 // emitted by compiler, not referred to by go programs |
8 | 8 |
9 func mal(int32) *any | 9 func mal(int32) *any |
10 func throwindex() | 10 func throwindex() |
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
72 func closechan(hchan any) | 72 func closechan(hchan any) |
73 func closedchan(hchan any) bool | 73 func closedchan(hchan any) bool |
74 | 74 |
75 func newselect(size int) (sel *byte) | 75 func newselect(size int) (sel *byte) |
76 func selectsend(sel *byte, hchan chan<- any, elem any) (selected bool) | 76 func selectsend(sel *byte, hchan chan<- any, elem any) (selected bool) |
77 func selectrecv(sel *byte, hchan <-chan any, elem *any) (selected bool) | 77 func selectrecv(sel *byte, hchan <-chan any, elem *any) (selected bool) |
78 func selectdefault(sel *byte) (selected bool) | 78 func selectdefault(sel *byte) (selected bool) |
79 func selectgo(sel *byte) | 79 func selectgo(sel *byte) |
80 | 80 |
81 func makeslice(nel int, cap int, width int) (ary []any) | 81 func makeslice(nel int, cap int, width int) (ary []any) |
| 82 func sliceslice1(old []any, lb int, width int) (ary []any) |
82 func sliceslice(old []any, lb int, hb int, width int) (ary []any) | 83 func sliceslice(old []any, lb int, hb int, width int) (ary []any) |
83 func slicearray(old *any, nel int, lb int, hb int, width int) (ary []any) | 84 func slicearray(old *any, nel int, lb int, hb int, width int) (ary []any) |
84 func arraytoslice(old *any, nel int) (ary []any) | |
85 | 85 |
86 func closure() // has args, but compiler fills in | 86 func closure() // has args, but compiler fills in |
87 | 87 |
88 // only used on 32-bit | 88 // only used on 32-bit |
89 func int64div(int64, int64) int64 | 89 func int64div(int64, int64) int64 |
90 func uint64div(uint64, uint64) uint64 | 90 func uint64div(uint64, uint64) uint64 |
91 func int64mod(int64, int64) int64 | 91 func int64mod(int64, int64) int64 |
92 func uint64mod(uint64, uint64) uint64 | 92 func uint64mod(uint64, uint64) uint64 |
93 func float64toint64(float64) int64 | 93 func float64toint64(float64) int64 |
94 func int64tofloat64(int64) float64 | 94 func int64tofloat64(int64) float64 |
OLD | NEW |