Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for armeabi (0.11 sec)

  1. tensorflow/BUILD

        name = "arm",
        values = {"cpu": "arm"},
        visibility = ["//visibility:public"],
    )
    
    config_setting(
        name = "armeabi",
        values = {"cpu": "armeabi"},
        visibility = ["//visibility:public"],
    )
    
    config_setting(
        name = "armeabi-v7a",
        values = {"cpu": "armeabi-v7a"},
        visibility = ["//visibility:public"],
    )
    
    config_setting(
        name = "arm64-v8a",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  2. .bazelrc

    build:android --crosstool_top=//external:android/crosstool
    build:android --host_crosstool_top=@bazel_tools//tools/cpp:toolchain
    build:android_arm --config=android
    build:android_arm --cpu=armeabi-v7a
    build:android_arm --fat_apk_cpu=armeabi-v7a
    build:android_arm64 --config=android
    build:android_arm64 --cpu=arm64-v8a
    build:android_arm64 --fat_apk_cpu=arm64-v8a
    build:android_x86 --config=android
    build:android_x86 --cpu=x86
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/go.go

    				remote = f[2]
    			}
    			// The compiler adds a fourth argument giving
    			// the definition ABI of function symbols.
    			abi := obj.ABI0
    			if len(f) > 3 {
    				var ok bool
    				abi, ok = obj.ParseABI(f[3])
    				if !ok {
    					fmt.Fprintf(os.Stderr, "%s: bad ABI in cgo_export directive %s\n", os.Args[0], f)
    					nerrors++
    					return
    				}
    			}
    
    			s := l.LookupOrCreateSym(local, sym.ABIToVersion(abi))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:48:30 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/html.go

                el.attributes.fill.value = 'white';
            }
        });
    }
    
    </script>
    
    </head>`)
    	w.WriteString("<body>")
    	w.WriteString("<h1>")
    	w.WriteString(html.EscapeString(w.Func.NameABI()))
    	w.WriteString("</h1>")
    	w.WriteString(`
    <a href="#" onclick="toggle_visibility('help');return false;" id="helplink">help</a>
    <div id="help">
    
    <p>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 15:11:40 UTC 2023
    - 34.8K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/func.go

    func (f *Func) NumValues() int {
    	return f.vid.num()
    }
    
    // NameABI returns the function name followed by comma and the ABI number.
    // This is intended for use with GOSSAFUNC and HTML dumps, and differs from
    // the linker's "<1>" convention because "<" and ">" require shell quoting
    // and are not legal file names (for use with GOSSADIR) on Windows.
    func (f *Func) NameABI() string {
    	return FuncNameABI(f.Name, f.ABISelf.Which())
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssagen/abi.go

    		case "def", "ref":
    			// Parse line.
    			if len(parts) != 3 {
    				log.Fatalf(`%s:%d: invalid symabi: syntax is "%s sym abi"`, file, lineNum, parts[0])
    			}
    			sym, abistr := parts[1], parts[2]
    			abi, valid := obj.ParseABI(abistr)
    			if !valid {
    				log.Fatalf(`%s:%d: invalid symabi: unknown abi "%s"`, file, lineNum, abistr)
    			}
    
    			sym = s.canonicalize(sym)
    
    			// Record for later.
    			if parts[0] == "def" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/link.go

    	// compiler generates wrappers for calls to and from other
    	// ABIs.
    	ABIInternal
    
    	ABICount
    )
    
    // ParseABI converts from a string representation in 'abistr' to the
    // corresponding ABI value. Second return value is TRUE if the
    // abi string is recognized, FALSE otherwise.
    func ParseABI(abistr string) (ABI, bool) {
    	switch abistr {
    	default:
    		return ABI0, false
    	case "ABI0":
    		return ABI0, true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  8. src/cmd/asm/internal/asm/parse.go

    		abistr := p.get(scanner.Ident).String()
    		if !p.allowABI {
    			if issueError {
    				p.errorf("ABI selector only permitted when compiling runtime, reference was to %q", name)
    			}
    		} else {
    			theabi, valid := obj.ParseABI(abistr)
    			if !valid {
    				if issueError {
    					p.errorf("malformed ABI selector %q in reference to %q",
    						abistr, name)
    				}
    			} else {
    				abi = theabi
    			}
    		}
    	}
    	p.get('>')
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 14:34:57 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  9. src/cmd/link/internal/loadelf/ldelf.go

    		if nulIndex < 0 {
    			return false, 0, fmt.Errorf("corrupt .ARM.attributes (section name not NUL-terminated)\n")
    		}
    		name := string(sectiondata[:nulIndex])
    		sectiondata = sectiondata[nulIndex+1:]
    
    		if name != "aeabi" {
    			continue
    		}
    		for len(sectiondata) != 0 {
    			subsectiontag, sz := binary.Uvarint(sectiondata)
    			subsectionsize := e.Uint32(sectiondata[sz:])
    			subsectiondata := sectiondata[sz+4 : subsectionsize]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:12:12 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssagen/ssa.go

    	s.f.Entry = s.f.NewBlock(ssa.BlockPlain)
    	s.f.Entry.Pos = fn.Pos()
    	s.f.IsPgoHot = isPgoHot
    
    	if printssa {
    		ssaDF := ssaDumpFile
    		if ssaDir != "" {
    			ssaDF = filepath.Join(ssaDir, base.Ctxt.Pkgpath+"."+s.f.NameABI()+".html")
    			ssaD := filepath.Dir(ssaDF)
    			os.MkdirAll(ssaD, 0755)
    		}
    		s.f.HTMLWriter = ssa.NewHTMLWriter(ssaDF, s.f, ssaDumpCFG)
    		// TODO: generate and print a mapping from nodes to values and blocks
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
Back to top