HomeSort by relevance Sort by last modified time
    Searched refs:goarch (Results 1 - 25 of 68) sorted by null

1 2 3

  /prebuilts/go/darwin-x86/src/cmd/cgo/
zdefaultcc.go 6 func defaultCC(goos, goarch string) string {
7 switch goos+`/`+goarch {
11 func defaultCXX(goos, goarch string) string {
12 switch goos+`/`+goarch {
main.go 209 var goarch, goos string var
346 goarch = runtime.GOARCH
347 if s := os.Getenv("GOARCH"); s != "" {
348 goarch = s
354 ptrSize := ptrSizeMap[goarch]
356 fatalf("unknown ptrSize for $GOARCH %q", goarch)
358 intSize := intSizeMap[goarch]
360 fatalf("unknown intSize for $GOARCH %q", goarch
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/go/internal/cfg/
zdefaultcc.go 6 func DefaultCC(goos, goarch string) string {
7 switch goos+`/`+goarch {
11 func DefaultCXX(goos, goarch string) string {
12 switch goos+`/`+goarch {
  /prebuilts/go/linux-x86/src/cmd/cgo/
zdefaultcc.go 6 func defaultCC(goos, goarch string) string {
7 switch goos+`/`+goarch {
11 func defaultCXX(goos, goarch string) string {
12 switch goos+`/`+goarch {
main.go 209 var goarch, goos string var
346 goarch = runtime.GOARCH
347 if s := os.Getenv("GOARCH"); s != "" {
348 goarch = s
354 ptrSize := ptrSizeMap[goarch]
356 fatalf("unknown ptrSize for $GOARCH %q", goarch)
358 intSize := intSizeMap[goarch]
360 fatalf("unknown intSize for $GOARCH %q", goarch
    [all...]
  /prebuilts/go/linux-x86/src/cmd/go/internal/cfg/
zdefaultcc.go 6 func DefaultCC(goos, goarch string) string {
7 switch goos+`/`+goarch {
11 func DefaultCXX(goos, goarch string) string {
12 switch goos+`/`+goarch {
  /prebuilts/go/darwin-x86/src/
bootstrap.bash 8 # GOOS=linux GOARCH=ppc64 bootstrap.bash
10 # this script cross-compiles a toolchain for that GOOS/GOARCH
11 # combination, leaving the resulting tree in ../../go-${GOOS}-${GOARCH}-bootstrap.
29 if [ "$GOOS" = "" -o "$GOARCH" = "" ]; then
30 echo "usage: GOOS=os GOARCH=arch ./bootstrap.bash" >&2
34 targ="../../go-${GOOS}-${GOARCH}-bootstrap"
64 goarch="$(../bin/go env GOARCH)"
69 if [ "$goos" = "$gohostos" -a "$goarch" = "$gohostarch" ]; then
93 OUTGZ="gobootstrap-${GOOS}-${GOARCH}-${GITREV}.tar.gz
    [all...]
  /prebuilts/go/linux-x86/src/
bootstrap.bash 8 # GOOS=linux GOARCH=ppc64 bootstrap.bash
10 # this script cross-compiles a toolchain for that GOOS/GOARCH
11 # combination, leaving the resulting tree in ../../go-${GOOS}-${GOARCH}-bootstrap.
29 if [ "$GOOS" = "" -o "$GOARCH" = "" ]; then
30 echo "usage: GOOS=os GOARCH=arch ./bootstrap.bash" >&2
34 targ="../../go-${GOOS}-${GOARCH}-bootstrap"
64 goarch="$(../bin/go env GOARCH)"
69 if [ "$goos" = "$gohostos" -a "$goarch" = "$gohostarch" ]; then
93 OUTGZ="gobootstrap-${GOOS}-${GOARCH}-${GITREV}.tar.gz
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/vet/all/
main.go 71 var hostPlatform = platform{os: build.Default.GOOS, arch: build.Default.GOARCH}
102 log.Fatalf("could not parse platform %s, must be of form goos/goarch", s)
110 func (w whitelist) load(goos string, goarch string) {
111 sz := types.SizesFor("gc", goarch)
113 log.Fatalf("unknown type sizes for arch %q", goarch)
117 // Look up whether goarch has a shared arch suffix,
119 archsuff := goarch
120 if x, ok := archAsmX[goarch]; ok {
128 goarch + ".txt",
129 goos + "_" + goarch + ".txt"
    [all...]
  /prebuilts/go/linux-x86/src/cmd/vet/all/
main.go 71 var hostPlatform = platform{os: build.Default.GOOS, arch: build.Default.GOARCH}
102 log.Fatalf("could not parse platform %s, must be of form goos/goarch", s)
110 func (w whitelist) load(goos string, goarch string) {
111 sz := types.SizesFor("gc", goarch)
113 log.Fatalf("unknown type sizes for arch %q", goarch)
117 // Look up whether goarch has a shared arch suffix,
119 archsuff := goarch
120 if x, ok := archAsmX[goarch]; ok {
128 goarch + ".txt",
129 goos + "_" + goarch + ".txt"
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/dist/
build.go 26 goarch string
97 // xinit handles initialization of the various global state, like goroot and goarch.
162 b = os.Getenv("GOARCH")
166 goarch = b
167 if find(goarch, okgoarch) < 0 {
168 fatalf("unknown $GOARCH %s", goarch)
199 os.Setenv("GOARCH", goarch)
226 // compilerEnv returns a map from "goos/goarch" to th
25 goarch string var
    [all...]
  /prebuilts/go/linux-x86/src/cmd/dist/
build.go 26 goarch string
97 // xinit handles initialization of the various global state, like goroot and goarch.
162 b = os.Getenv("GOARCH")
166 goarch = b
167 if find(goarch, okgoarch) < 0 {
168 fatalf("unknown $GOARCH %s", goarch)
199 os.Setenv("GOARCH", goarch)
226 // compilerEnv returns a map from "goos/goarch" to th
25 goarch string var
    [all...]
  /prebuilts/go/darwin-x86/src/runtime/internal/sys/
gengoos.go 73 fmt.Fprintf(&buf, "const GOARCH = `%s`\n\n", target)
74 for _, goarch := range goarches {
76 if goarch == target {
79 fmt.Fprintf(&buf, "const Goarch%s = %d\n", strings.Title(goarch), value)
  /prebuilts/go/linux-x86/src/runtime/internal/sys/
gengoos.go 73 fmt.Fprintf(&buf, "const GOARCH = `%s`\n\n", target)
74 for _, goarch := range goarches {
76 if goarch == target {
79 fmt.Fprintf(&buf, "const Goarch%s = %d\n", strings.Title(goarch), value)
  /prebuilts/go/darwin-x86/src/cmd/internal/objfile/
disasm.go 37 goarch string // GOARCH string
38 disasm disasmFunc // disassembler function for goarch
39 byteOrder binary.ByteOrder // byte order for goarch
59 goarch := e.GOARCH()
60 disasm := disasms[goarch]
61 byteOrder := byteOrders[goarch]
83 goarch: goarch,
    [all...]
  /prebuilts/go/linux-x86/src/cmd/internal/objfile/
disasm.go 37 goarch string // GOARCH string
38 disasm disasmFunc // disassembler function for goarch
39 byteOrder binary.ByteOrder // byte order for goarch
59 goarch := e.GOARCH()
60 disasm := disasms[goarch]
61 byteOrder := byteOrders[goarch]
83 goarch: goarch,
    [all...]
  /prebuilts/go/darwin-x86/src/syscall/
mkpost.go 31 goarch := os.Getenv("GOARCH")
33 if goarch == "s390x" && goos == "linux" {
  /prebuilts/go/linux-x86/src/syscall/
mkpost.go 31 goarch := os.Getenv("GOARCH")
33 if goarch == "s390x" && goos == "linux" {
  /prebuilts/go/darwin-x86/src/cmd/internal/objabi/
util.go 25 GOARCH = envOr("GOARCH", defaultGOARCH)
68 func Framepointer_enabled(goos, goarch string) bool {
69 return framepointer_enabled != 0 && goarch == "amd64" && goos != "nacl"
  /prebuilts/go/linux-x86/src/cmd/internal/objabi/
util.go 25 GOARCH = envOr("GOARCH", defaultGOARCH)
68 func Framepointer_enabled(goos, goarch string) bool {
69 return framepointer_enabled != 0 && goarch == "amd64" && goos != "nacl"
  /prebuilts/go/darwin-x86/src/cmd/objdump/
objdump_test.go 77 var target = flag.String("target", "", "test disassembly of `goos/goarch` binary")
89 goarch := runtime.GOARCH
93 t.Fatalf("-target argument must be goos/goarch")
96 defer os.Setenv("GOARCH", os.Getenv("GOARCH"))
98 os.Setenv("GOARCH", f[1])
99 goarch = f[1]
120 switch goarch {
151 if goarch == "386"
    [all...]
  /prebuilts/go/linux-x86/src/cmd/objdump/
objdump_test.go 77 var target = flag.String("target", "", "test disassembly of `goos/goarch` binary")
89 goarch := runtime.GOARCH
93 t.Fatalf("-target argument must be goos/goarch")
96 defer os.Setenv("GOARCH", os.Getenv("GOARCH"))
98 os.Setenv("GOARCH", f[1])
99 goarch = f[1]
120 switch goarch {
151 if goarch == "386"
    [all...]
  /prebuilts/go/darwin-x86/test/
nosplit.go 197 goarch := os.Getenv("GOARCH")
198 if goarch == "" {
199 goarch = runtime.GOARCH
208 if s := string(version); goarch == "amd64" && strings.Contains(s, "X:") && !strings.Contains(s, "framepointer") {
249 if rej == goarch {
264 switch goarch {
322 if size%ptrSize == 4 || goarch == "arm64" && size != 0 && (size+8)%16 != 0 {
  /prebuilts/go/linux-x86/test/
nosplit.go 197 goarch := os.Getenv("GOARCH")
198 if goarch == "" {
199 goarch = runtime.GOARCH
208 if s := string(version); goarch == "amd64" && strings.Contains(s, "X:") && !strings.Contains(s, "framepointer") {
249 if rej == goarch {
264 switch goarch {
322 if size%ptrSize == 4 || goarch == "arm64" && size != 0 && (size+8)%16 != 0 {
  /prebuilts/go/darwin-x86/src/cmd/asm/internal/asm/
endtoend_test.go 29 func testEndToEnd(t *testing.T, goarch, file string) {
31 architecture, ctxt := setArch(goarch)
47 t.Errorf("asm: %s assembly failed", goarch)
272 func testErrors(t *testing.T, goarch, file string) {
274 architecture, ctxt := setArch(goarch)
295 t.Errorf("asm: %s had no errors", goarch)

Completed in 873 milliseconds

1 2 3