Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for softfloat (0.2 sec)

  1. doc/asm.html

    <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

      Previously, valid <code>GOARM</code> values were <code>5</code>, <code>6</code>, or <code>7</code>. Now those same values can
      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>
    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

    		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" {
    			return []string{"-mabi=32", "-msoft-float"}
    		}
    	case "loong64":
    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. schema/field.go

    			case int:
    				field.ReflectValueOf(ctx, value).SetFloat(float64(data))
    			case int8:
    				field.ReflectValueOf(ctx, value).SetFloat(float64(data))
    			case int16:
    				field.ReflectValueOf(ctx, value).SetFloat(float64(data))
    			case int32:
    				field.ReflectValueOf(ctx, value).SetFloat(float64(data))
    			case uint:
    				field.ReflectValueOf(ctx, value).SetFloat(float64(data))
    			case uint8:
    Go
    - Registered: Sun Apr 28 09:35:09 GMT 2024
    - Last Modified: Mon Apr 15 03:20:20 GMT 2024
    - 32K bytes
    - Viewed (1)
  5. internal/s3select/sql/value.go

    		}
    
    		fA, okAf := a.bytesToFloat()
    		fB, okBf := b.bytesToFloat()
    		if okAf && okBf {
    			a.setFloat(fA)
    			b.setFloat(fB)
    			return nil
    		}
    
    		// Check if they int and float combination.
    		if okAi && okBf {
    			a.setInt(iA)
    			b.setFloat(fA)
    			return nil
    		}
    		if okBi && okAf {
    			a.setFloat(fA)
    			b.setInt(iB)
    			return nil
    		}
    
    		// Not numeric types at this point.
    
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Fri Feb 25 20:31:19 GMT 2022
    - 20.2K bytes
    - Viewed (0)
  6. internal/s3select/sql/aggregation.go

    		// inferring untyped values are numbers.
    		if !argVal.isNumeric() {
    			if i, ok := argVal.bytesToInt(); ok {
    				argVal.setInt(i)
    			} else if f, ok := argVal.bytesToFloat(); ok {
    				argVal.setFloat(f)
    			} else {
    				return errNonNumericArg(funcName)
    			}
    		}
    	}
    
    	// Mark that we have seen one non-null value.
    	isFirstRow := false
    	if !e.aggregate.seen {
    		e.aggregate.seen = true
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Sat Dec 23 07:19:11 GMT 2023
    - 7.9K bytes
    - Viewed (0)
  7. api/go1.txt

    pkg reflect, method (Value) Set(Value)
    pkg reflect, method (Value) SetBool(bool)
    pkg reflect, method (Value) SetBytes([]uint8)
    pkg reflect, method (Value) SetComplex(complex128)
    pkg reflect, method (Value) SetFloat(float64)
    pkg reflect, method (Value) SetInt(int64)
    pkg reflect, method (Value) SetLen(int)
    pkg reflect, method (Value) SetMapIndex(Value, Value)
    pkg reflect, method (Value) SetPointer(unsafe.Pointer)
    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