Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for hardfloat (0.2 sec)

  1. doc/asm.html

    </li>
    
    </ul>
    
    <p>
    The value of <code>GOMIPS</code> environment variable (<code>hardfloat</code> or
    <code>softfloat</code>) is made available to assembly code by predefining either
    <code>GOMIPS_hardfloat</code> or <code>GOMIPS_softfloat</code>.
    </p>
    
    <p>
    The value of <code>GOMIPS64</code> environment variable (<code>hardfloat</code> or
    <code>softfloat</code>) is made available to assembly code by predefining either
    HTML
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Nov 28 19:15:27 GMT 2023
    - 36.3K bytes
    - Viewed (0)
  2. doc/go1.22.html

      be optionally followed by <code>,softfloat</code> or <code>,hardfloat</code> to select the floating-point implementation.
    </p>
    <p>
      This new option defaults to <code>softfloat</code> for version <code>5</code> and <code>hardfloat</code> for versions
      <code>6</code> and <code>7</code>.
    </p>
    
    <h3 id="loong64">Loong64</h3>
    <p><!-- CL 481315 -->
    HTML
    - Registered: Tue Feb 06 11:13:10 GMT 2024
    - Last Modified: Wed Jan 31 20:51:56 GMT 2024
    - 45.6K bytes
    - Viewed (0)
  3. src/cmd/cgo/gcc.go

    	case "s390x":
    		return []string{"-m64"}
    	case "mips64", "mips64le":
    		if gomips64 == "hardfloat" {
    			return []string{"-mabi=64", "-mhard-float"}
    		} else if gomips64 == "softfloat" {
    			return []string{"-mabi=64", "-msoft-float"}
    		}
    	case "mips", "mipsle":
    		if gomips == "hardfloat" {
    			return []string{"-mabi=32", "-mfp32", "-mhard-float", "-mno-odd-spreg"}
    		} else if gomips == "softfloat" {
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Nov 02 16:43:23 GMT 2023
    - 97K bytes
    - Viewed (0)
  4. api/go1.txt

    pkg expvar, method (*Int) Add(int64)
    pkg expvar, method (*Int) Set(int64)
    pkg expvar, method (*Int) String() string
    pkg expvar, method (*Map) Add(string, int64)
    pkg expvar, method (*Map) AddFloat(string, float64)
    pkg expvar, method (*Map) Do(func(KeyValue))
    pkg expvar, method (*Map) Get(string) Var
    pkg expvar, method (*Map) Init() *Map
    pkg expvar, method (*Map) Set(string, Var)
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Viewed (1)
Back to top