/prebuilts/go/darwin-x86/test/fixedbugs/ |
issue9731.go | 9 func f(x interface{}) { 12 func() { 16 func() {
|
issue9738.go | 9 func F() (x int) { 10 defer func() { 18 func main() {
|
/prebuilts/go/linux-x86/misc/cgo/test/ |
issue4273b.c | 6 extern void _compilerrt_abort_impl(const char *file, int line, const char *func); 8 void __my_abort(const char *file, int line, const char *func) { 9 _compilerrt_abort_impl(file, line, func);
|
/prebuilts/go/linux-x86/pkg/bootstrap/src/bootstrap/compile/internal/big/ |
arith_decl.go | 10 func mulWW(x, y Word) (z1, z0 Word) { 14 func divWW(x1, x0, y Word) (q, r Word) { 18 func addVV(z, x, y []Word) (c Word) { 22 func subVV(z, x, y []Word) (c Word) { 26 func addVW(z, x []Word, y Word) (c Word) { 30 func subVW(z, x []Word, y Word) (c Word) { 34 func shlVU(z, x []Word, s uint) (c Word) { 38 func shrVU(z, x []Word, s uint) (c Word) { 42 func mulAddVWW(z, x []Word, y, r Word) (c Word) { 46 func addMulVVW(z, x []Word, y Word) (c Word) [all...] |
/prebuilts/go/linux-x86/src/cmd/compile/internal/big/ |
arith_decl.go | 7 func mulWW(x, y Word) (z1, z0 Word) { 11 func divWW(x1, x0, y Word) (q, r Word) { 15 func addVV(z, x, y []Word) (c Word) { 19 func subVV(z, x, y []Word) (c Word) { 23 func addVW(z, x []Word, y Word) (c Word) { 27 func subVW(z, x []Word, y Word) (c Word) { 31 func shlVU(z, x []Word, s uint) (c Word) { 35 func shrVU(z, x []Word, s uint) (c Word) { 39 func mulAddVWW(z, x []Word, y, r Word) (c Word) { 43 func addMulVVW(z, x []Word, y Word) (c Word) [all...] |
/prebuilts/go/linux-x86/src/math/big/ |
arith_decl_pure.go | 9 func mulWW(x, y Word) (z1, z0 Word) { 13 func divWW(x1, x0, y Word) (q, r Word) { 17 func addVV(z, x, y []Word) (c Word) { 21 func subVV(z, x, y []Word) (c Word) { 25 func addVW(z, x []Word, y Word) (c Word) { 29 func subVW(z, x []Word, y Word) (c Word) { 33 func shlVU(z, x []Word, s uint) (c Word) { 37 func shrVU(z, x []Word, s uint) (c Word) { 41 func mulAddVWW(z, x []Word, y, r Word) (c Word) { 45 func addMulVVW(z, x []Word, y Word) (c Word) [all...] |
/prebuilts/go/linux-x86/src/net/ |
cgo_windows.go | 11 func (eai addrinfoErrno) Error() string { return "<nil>" } 12 func (eai addrinfoErrno) Temporary() bool { return false } 13 func (eai addrinfoErrno) Timeout() bool { return false }
|
hook.go | 10 testHookLookupIP = func(fn func(string) ([]IPAddr, error), host string) ([]IPAddr, error) { return fn(host) } 11 testHookSetKeepAlive = func() {}
|
/prebuilts/go/linux-x86/src/runtime/ |
closure_test.go | 10 func BenchmarkCallClosure(b *testing.B) { 12 s += func(ii int) int { return 2 * ii }(i) 16 func BenchmarkCallClosure1(b *testing.B) { 19 s += func(ii int) int { return 2*ii + j }(i) 25 func BenchmarkCallClosure2(b *testing.B) { 28 s += func() int { 35 func addr1(x int) *int { 36 return func() *int { return &x }() 39 func BenchmarkCallClosure3(b *testing.B) { 45 func addr2() (x int, p *int) [all...] |
/prebuilts/go/linux-x86/src/sync/ |
once_test.go | 14 func (o *one) Increment() { 18 func run(t *testing.T, once *Once, o *one, c chan bool) { 19 once.Do(func() { o.Increment() }) 26 func TestOnce(t *testing.T) { 42 func TestOncePanic(t *testing.T) { 44 func() { 45 defer func() { 50 once.Do(func() { 55 once.Do(func() { 60 func BenchmarkOnce(b *testing.B) [all...] |
/prebuilts/go/linux-x86/test/ |
closure1.go | 9 func main() { 11 func() { 14 func() {
|
/prebuilts/go/linux-x86/test/fixedbugs/bug088.dir/ |
bug0.go | 7 var V0 func() int; 8 var V1 func() (a int); 9 var V2 func() (a, b int);
|
/prebuilts/go/linux-x86/test/fixedbugs/bug404.dir/ |
one.go | 11 func F1(T2) { 14 func (p *T1) M1() T3 { 18 func (p T3) M2() {
|
/prebuilts/go/linux-x86/test/fixedbugs/bug466.dir/ |
a.go | 9 func Func() []complex128 { 13 func Mul(z complex128) complex128 {
|
/prebuilts/go/linux-x86/test/fixedbugs/ |
issue4085b.go | 16 func main() { 18 shouldPanic("len out of range", func() {_ = make(T, n)}) 19 shouldPanic("cap out of range", func() {_ = make(T, 0, n)}) 24 shouldPanic("len out of range", func() {_ = make(T, n)}) 25 shouldPanic("cap out of range", func() {_ = make(T, 0, n)}) 27 shouldPanic("len out of range", func() {_ = make(T, n)}) 28 shouldPanic("cap out of range", func() {_ = make(T, 0, n)}) 31 shouldPanic("len out of range", func() {_ = make(T, n)}) 32 shouldPanic("cap out of range", func() {_ = make(T, 0, n)}) 36 func shouldPanic(str string, f func()) [all...] |
issue6399.go | 11 func (b Bar) Print() {} 13 func main() { 23 func T(f []Foo) {
|
issue9731.go | 9 func f(x interface{}) { 12 func() { 16 func() {
|
issue9738.go | 9 func F() (x int) { 10 defer func() { 18 func main() {
|
/prebuilts/go/linux-x86/test/fixedbugs/issue4879.dir/ |
a.go | 17 func MakePrivateCollection() *Collection { 23 func MakePrivateCollection2() *Collection { 28 func MakePrivateCollection3() *Collection {
|
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/ia64/ |
proc.s | 4 .proc func, func1, func2 5 func:: 7 .endp func, func1, func2
|
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/mips/ |
pcrel-3.s | 2 .ent func 3 func: label 7 .end func
|
/toolchain/binutils/binutils-2.25/ld/testsuite/ld-plugin/ |
plugin-3.d | 2 .*: LDPT_MESSAGE func@0x.* 7 .*: LDPT_REGISTER_CLAIM_FILE_HOOK func@0x.* 8 .*: LDPT_REGISTER_ALL_SYMBOLS_READ_HOOK func@0x.* 9 .*: LDPT_REGISTER_CLEANUP_HOOK func@0x.* 10 .*: LDPT_ADD_SYMBOLS func@0x.* 11 .*: LDPT_GET_INPUT_FILE func@0x.* 12 .*: LDPT_RELEASE_INPUT_FILE func@0x.* 13 .*: LDPT_GET_SYMBOLS func@0x.* 14 .*: LDPT_GET_SYMBOLS_V2 func@0x.* 15 .*: LDPT_ADD_INPUT_FILE func@0x. [all...] |
plugin-4.d | 2 .*: LDPT_MESSAGE func@0x.* 7 .*: LDPT_REGISTER_CLAIM_FILE_HOOK func@0x.* 8 .*: LDPT_REGISTER_ALL_SYMBOLS_READ_HOOK func@0x.* 9 .*: LDPT_REGISTER_CLEANUP_HOOK func@0x.* 10 .*: LDPT_ADD_SYMBOLS func@0x.* 11 .*: LDPT_GET_INPUT_FILE func@0x.* 12 .*: LDPT_RELEASE_INPUT_FILE func@0x.* 13 .*: LDPT_GET_SYMBOLS func@0x.* 14 .*: LDPT_GET_SYMBOLS_V2 func@0x.* 15 .*: LDPT_ADD_INPUT_FILE func@0x. [all...] |
/prebuilts/go/darwin-x86/src/go/types/testdata/ |
gotos.src | 18 func _() { 26 func _() { 34 func _() { 42 func _() { 52 func _() { 64 func _() { 71 func _() { 80 func _() { 90 func _() { 101 func _() [all...] |
/prebuilts/go/linux-x86/src/go/types/testdata/ |
gotos.src | 18 func _() { 26 func _() { 34 func _() { 42 func _() { 52 func _() { 64 func _() { 71 func _() { 80 func _() { 90 func _() { 101 func _() [all...] |