HomeSort by relevance Sort by last modified time
    Searched refs:go (Results 276 - 300 of 3824) sorted by null

<<11121314151617181920>>

  /prebuilts/go/linux-x86/test/fixedbugs/
bug209.go 3 // Copyright 2009 The Go Authors. All rights reserved.
16 uetli:/home/gri/go/test/bugs gri$ 6g bug209.go
17 bug209.go:5: Bus error
bug313.go 3 // Copyright 2010 The Go Authors. All rights reserved.
12 6g bug313.dir/[ab].go
15 bug313.dir/b.go:7: internal compiler error: fault
18 bug313.dir/a.go:10: undefined: fmt.DoesNotExist
issue15141.go 3 // Copyright 2016 The Go Authors. All rights reserved.
16 //go:noinline
22 //go:noinline
29 //go:noinline
bug302.go 4 // Copyright 2010 The Go Authors. All rights reserved.
18 run("go", "tool", "compile", filepath.Join("fixedbugs", "bug302.dir", "p.go"))
19 run("go", "tool", "pack", "grc", "pp.a", "p.o")
20 run("go", "tool", "compile", "-I", ".", filepath.Join("fixedbugs", "bug302.dir", "main.go"))
issue18149.go 3 // Copyright 2016 The Go Authors. All rights reserved.
9 // (For a related issue, see test/fixedbugs/bug305.go)
29 //line /foo/bar.go:123
30 check(`/foo/bar.go`, 123)
31 //line c:/foo/bar.go:987
32 check(`c:/foo/bar.go`, 987)
issue4468.go 3 // Copyright 2012 The Go Authors. All rights reserved.
7 // Issue 4468: go/defer calls may not be parenthesized.
22 go F // ERROR "must be function call"
24 go (F) // ERROR "must be function call|must not be parenthesized"
26 go (F()) // ERROR "must be function call|must not be parenthesized"
30 go (&s.t).F()
  /prebuilts/go/darwin-x86/src/runtime/race/testdata/
atomic_test.go 1 // Copyright 2011 The Go Authors. All rights reserved.
19 go func() {
26 go func() {
41 go func() {
48 go func() {
63 go func() {
70 go func() {
84 go func() {
97 go func() {
110 go func()
    [all...]
  /prebuilts/go/linux-x86/src/runtime/race/testdata/
atomic_test.go 1 // Copyright 2011 The Go Authors. All rights reserved.
19 go func() {
26 go func() {
41 go func() {
48 go func() {
63 go func() {
70 go func() {
84 go func() {
97 go func() {
110 go func()
    [all...]
  /external/ppp/pppd/
lcp.c 649 lcp_options *go = &lcp_gotoptions[f->unit]; local
654 *go = *wo;
656 go->neg_mrru = 0;
657 go->neg_ssnhf = 0;
658 go->neg_endpoint = 0;
674 lcp_options *go = &lcp_gotoptions[f->unit]; local
687 return (LENCISHORT(go->neg_mru && go->mru != DEFMRU) +
688 LENCILONG(go->neg_asyncmap && go->asyncmap != 0xFFFFFFFF)
712 lcp_options *go = &lcp_gotoptions[f->unit]; local
800 lcp_options *go = &lcp_gotoptions[f->unit]; local
956 lcp_options *go = &lcp_gotoptions[f->unit]; local
1349 lcp_options *go = &lcp_gotoptions[f->unit]; local
1509 lcp_options *go = &lcp_gotoptions[f->unit]; local
1899 lcp_options *go = &lcp_gotoptions[f->unit]; local
1948 lcp_options *go = &lcp_gotoptions[f->unit]; local
    [all...]
  /external/wpa_supplicant_8/src/p2p/
p2p_dev_disc.c 18 struct p2p_device *go,
28 go->dialog_token++;
29 if (go->dialog_token == 0)
30 go->dialog_token = 1;
31 p2p_buf_add_public_action_hdr(buf, P2P_DEV_DISC_REQ, go->dialog_token);
35 p2p_buf_add_group_id(buf, go->info.p2p_device_addr, go->oper_ssid,
36 go->oper_ssid_len);
58 p2p_dbg(p2p, "GO acknowledged Device Discoverability Request - wait for response");
69 struct p2p_device *go; local
218 struct p2p_device *go; local
    [all...]
  /external/tpm2/
Time.c 23 NvReadReserved(NV_ORDERLY_DATA, &go);
29 go.clockSafe= NO;
31 go.clockSafe = YES;
113 oldClock = go.clock;
116 go.clock += elapsed;
119 // CLOCK_UPDATE_MASK is measured by second, while the value in go.clock is
123 if( ((go.clock/1000) | CLOCK_UPDATE_MASK)
128 go.clockSafe = YES;
131 NvWriteReserved(NV_ORDERLY_DATA, &go);
223 clockInfo->clock = go.clock
    [all...]
  /prebuilts/go/darwin-x86/src/go/parser/
example_test.go 1 // Copyright 2012 The Go Authors. All rights reserved.
9 "go/parser"
10 "go/token"
18 f, err := parser.ParseFile(fset, "example_test.go", nil, parser.ImportsOnly)
32 // "go/parser"
33 // "go/token"
  /prebuilts/go/darwin-x86/src/runtime/internal/sys/
sys.go 1 // Copyright 2015 The Go Authors. All rights reserved.
9 // The next line makes 'go generate' write the zgen_*.go files with
15 //go:generate go run gengoos.go
  /prebuilts/go/darwin-x86/test/bench/go1/
parser_test.go 1 // Copyright 2012 The Go Authors. All rights reserved.
7 // go parser benchmark based on go/parser/performance_test.go
12 "go/parser"
13 "go/token"
  /prebuilts/go/darwin-x86/test/fixedbugs/
bug302.go 4 // Copyright 2010 The Go Authors. All rights reserved.
18 run("go", "tool", "compile", filepath.Join("fixedbugs", "bug302.dir", "p.go"))
19 run("go", "tool", "pack", "grc", "pp.a", "p.o")
20 run("go", "tool", "compile", "-I", ".", filepath.Join("fixedbugs", "bug302.dir", "main.go"))
issue18149.go 3 // Copyright 2016 The Go Authors. All rights reserved.
9 // (For a related issue, see test/fixedbugs/bug305.go)
29 //line /foo/bar.go:123
30 check(`/foo/bar.go`, 123)
31 //line c:/foo/bar.go:987
32 check(`c:/foo/bar.go`, 987)
issue4468.go 3 // Copyright 2012 The Go Authors. All rights reserved.
7 // Issue 4468: go/defer calls may not be parenthesized.
22 go F // ERROR "must be function call"
24 go (F) // ERROR "must be function call|must not be parenthesized"
26 go (F()) // ERROR "must be function call|must not be parenthesized"
30 go (&s.t).F()
bug369.go 4 // Copyright 2011 The Go Authors. All rights reserved.
23 run("go", "tool", "compile", "-N", "-o", "slow.o", "pkg.go")
24 run("go", "tool", "compile", "-o", "fast.o", "pkg.go")
25 run("go", "tool", "compile", "-o", "main.o", "main.go")
26 run("go", "tool", "link", "-o", "a.exe", "main.o")
  /prebuilts/go/linux-x86/src/go/parser/
example_test.go 1 // Copyright 2012 The Go Authors. All rights reserved.
9 "go/parser"
10 "go/token"
18 f, err := parser.ParseFile(fset, "example_test.go", nil, parser.ImportsOnly)
32 // "go/parser"
33 // "go/token"
  /prebuilts/go/linux-x86/src/runtime/internal/sys/
sys.go 1 // Copyright 2015 The Go Authors. All rights reserved.
9 // The next line makes 'go generate' write the zgen_*.go files with
15 //go:generate go run gengoos.go
  /prebuilts/go/linux-x86/test/bench/go1/
parser_test.go 1 // Copyright 2012 The Go Authors. All rights reserved.
7 // go parser benchmark based on go/parser/performance_test.go
12 "go/parser"
13 "go/token"
  /prebuilts/go/darwin-x86/test/
notinheap.go 3 // Copyright 2016 The Go Authors. All rights reserved.
7 // Test type-checking errors for go:notinheap.
11 //go:notinheap
18 } // ERROR "must be go:notinheap"
20 type embed2 [1]nih // ERROR "must be go:notinheap"
24 } // ERROR "must be go:notinheap"
26 type embed4 map[nih]int // ERROR "go:notinheap map key not allowed"
28 type embed5 map[int]nih // ERROR "go:notinheap map value not allowed"
30 type emebd6 chan nih // ERROR "chan of go:notinheap type not allowed"
46 //go:notinhea
    [all...]
phiopt.go 4 // Copyright 2016 The Go Authors. All rights reserved.
10 //go:noinline
21 //go:noinline
32 //go:noinline
41 //go:noinline
50 //go:noinline
55 //go:noinline
66 //go:noinline
77 //go:noinline
87 //go:noinlin
    [all...]
  /prebuilts/go/linux-x86/test/
notinheap.go 3 // Copyright 2016 The Go Authors. All rights reserved.
7 // Test type-checking errors for go:notinheap.
11 //go:notinheap
18 } // ERROR "must be go:notinheap"
20 type embed2 [1]nih // ERROR "must be go:notinheap"
24 } // ERROR "must be go:notinheap"
26 type embed4 map[nih]int // ERROR "go:notinheap map key not allowed"
28 type embed5 map[int]nih // ERROR "go:notinheap map value not allowed"
30 type emebd6 chan nih // ERROR "chan of go:notinheap type not allowed"
46 //go:notinhea
    [all...]
phiopt.go 4 // Copyright 2016 The Go Authors. All rights reserved.
10 //go:noinline
21 //go:noinline
32 //go:noinline
41 //go:noinline
50 //go:noinline
55 //go:noinline
66 //go:noinline
77 //go:noinline
87 //go:noinlin
    [all...]

Completed in 748 milliseconds

<<11121314151617181920>>