HomeSort by relevance Sort by last modified time
    Searched refs:GOARCH (Results 251 - 275 of 408) sorted by null

<<11121314151617

  /prebuilts/go/darwin-x86/src/log/syslog/
syslog_test.go 55 switch runtime.GOARCH {
170 t.Skipf("skipping on %s/%s; 'unix' is not supported", runtime.GOOS, runtime.GOARCH)
340 t.Skipf("skipping on %s/%s; neither 'unix' or 'tcp' is supported", runtime.GOOS, runtime.GOARCH)
  /prebuilts/go/linux-x86/src/cmd/compile/
doc.go 26 The GOOS and GOARCH environment variables set the desired target.
34 after consulting $GOROOT/pkg/$GOOS_$GOARCH.
62 instead of $GOROOT/pkg/$GOOS_$GOARCH.
  /prebuilts/go/linux-x86/src/cmd/dist/
buildtool.go 121 // and GOOS, GOHOSTOS, GOARCH, and GOHOSTOS are empty,
124 // Don't bother with GOOS, GOHOSTOS, GOARCH, and GOHOSTARCH,
138 os.Setenv("GOARCH", "")
build.go 24 goarch string
94 // xinit handles initialization of the various global state, like goroot and goarch.
157 b = os.Getenv("GOARCH")
161 goarch = b
162 if find(goarch, okgoarch) < 0 {
163 fatal("unknown $GOARCH %s", goarch)
222 os.Setenv("GOARCH", goarch)
405 if goos != gohostos || goarch != gohostarch
23 goarch string var
    [all...]
  /prebuilts/go/linux-x86/src/log/syslog/
syslog_test.go 55 switch runtime.GOARCH {
170 t.Skipf("skipping on %s/%s; 'unix' is not supported", runtime.GOOS, runtime.GOARCH)
340 t.Skipf("skipping on %s/%s; neither 'unix' or 'tcp' is supported", runtime.GOOS, runtime.GOARCH)
  /prebuilts/go/darwin-x86/src/runtime/
extern.go 158 The GOARCH, GOOS, GOPATH, and GOROOT environment variables complete
161 GOARCH, GOOS, and GOROOT are recorded at compile time and made available by
249 // GOARCH is the running program's architecture target:
251 const GOARCH string = sys.GOARCH
defs2_linux.go 10 GOARCH=386 go tool cgo -cdefs defs2_linux.go >defs_linux_386.h
softfloat64_test.go 81 if GOARCH != "386" { // 386 is not precise!
  /prebuilts/go/linux-x86/src/runtime/
extern.go 158 The GOARCH, GOOS, GOPATH, and GOROOT environment variables complete
161 GOARCH, GOOS, and GOROOT are recorded at compile time and made available by
249 // GOARCH is the running program's architecture target:
251 const GOARCH string = sys.GOARCH
defs2_linux.go 10 GOARCH=386 go tool cgo -cdefs defs2_linux.go >defs_linux_386.h
softfloat64_test.go 81 if GOARCH != "386" { // 386 is not precise!
  /prebuilts/go/darwin-x86/src/cmd/dist/
build.go 24 goarch string
94 // xinit handles initialization of the various global state, like goroot and goarch.
157 b = os.Getenv("GOARCH")
161 goarch = b
162 if find(goarch, okgoarch) < 0 {
163 fatal("unknown $GOARCH %s", goarch)
222 os.Setenv("GOARCH", goarch)
405 if goos != gohostos || goarch != gohostarch
23 goarch string var
    [all...]
  /prebuilts/go/darwin-x86/test/
run.go 51 goos, goarch string var
77 goarch = getenv("GOARCH", runtime.GOARCH)
340 GOARCH string
345 func shouldTest(src string, goos, goarch string) (ok bool, whyNot string) {
362 GOARCH: goarch,
406 if name == ctxt.GOOS || name == ctxt.GOARCH {
458 if ok, why := shouldTest(t.src[:pkgPos], goos, goarch); !ok
    [all...]
  /prebuilts/go/linux-x86/test/
run.go 51 goos, goarch string var
77 goarch = getenv("GOARCH", runtime.GOARCH)
340 GOARCH string
345 func shouldTest(src string, goos, goarch string) (ok bool, whyNot string) {
362 GOARCH: goarch,
406 if name == ctxt.GOOS || name == ctxt.GOARCH {
458 if ok, why := shouldTest(t.src[:pkgPos], goos, goarch); !ok
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/asm/internal/arch/
arch.go 48 // Set configures the architecture specified by GOARCH and returns its representation.
49 // It returns nil if GOARCH is not recognized.
50 func Set(GOARCH string) *Arch {
51 switch GOARCH {
  /prebuilts/go/darwin-x86/src/cmd/internal/objfile/
objfile.go 20 goarch() string
114 func (f *File) GOARCH() string {
115 return f.raw.goarch()
disasm.go 30 goarch string // GOARCH string
31 disasm disasmFunc // disassembler function for goarch
32 byteOrder binary.ByteOrder // byte order for goarch
52 goarch := f.GOARCH()
53 disasm := disasms[goarch]
54 byteOrder := byteOrders[goarch]
76 goarch: goarch,
    [all...]
  /prebuilts/go/linux-x86/src/cmd/asm/internal/arch/
arch.go 48 // Set configures the architecture specified by GOARCH and returns its representation.
49 // It returns nil if GOARCH is not recognized.
50 func Set(GOARCH string) *Arch {
51 switch GOARCH {
  /prebuilts/go/linux-x86/src/cmd/internal/objfile/
objfile.go 20 goarch() string
114 func (f *File) GOARCH() string {
115 return f.raw.goarch()
  /prebuilts/go/darwin-x86/misc/cgo/testcshared/
test.bash 18 goarch=$(go env GOARCH)
29 installdir=pkg/${goos}_${goarch}_testcshared_shared
31 installdir=pkg/${goos}_${goarch}_testcshared
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/
asm_test.go 54 func compileToAsm(t *testing.T, dir, goarch, goos, pkg string) string {
69 cmd.Env = mergeEnvLists([]string{"GOARCH=" + goarch, "GOOS=" + goos}, os.Environ())
84 cmd.Env = mergeEnvLists([]string{"GOARCH=" + goarch, "GOOS=" + goos}, os.Environ())
  /prebuilts/go/darwin-x86/src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/
objdumpext_test.go 29 if runtime.GOARCH != "ppc64le" && runtime.GOARCH != "ppc64" {
  /prebuilts/go/darwin-x86/src/debug/gosym/
pclntab_test.go 28 if runtime.GOARCH != "amd64" {
29 t.Skipf("skipping on non-AMD64 system %s", runtime.GOARCH)
  /prebuilts/go/darwin-x86/src/go/build/
doc.go 97 // - the target architecture, as spelled by runtime.GOARCH
115 // (example: source_windows_amd64.go) where GOOS and GOARCH represent
  /prebuilts/go/darwin-x86/src/net/
parse.go 85 // strings.IndexByte is implemented in runtime/asm_$GOARCH.s
324 // bytes.IndexByte is implemented in runtime/asm_$GOARCH.s

Completed in 749 milliseconds

<<11121314151617