Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for sqrt32 (0.5 sec)

  1. src/cmd/vendor/golang.org/x/arch/x86/x86asm/tables.go

    	SHUFPD:          "SHUFPD",
    	SHUFPS:          "SHUFPS",
    	SIDT:            "SIDT",
    	SLDT:            "SLDT",
    	SMSW:            "SMSW",
    	SQRTPD:          "SQRTPD",
    	SQRTPS:          "SQRTPS",
    	SQRTSD:          "SQRTSD",
    	SQRTSS:          "SQRTSS",
    	STC:             "STC",
    	STD:             "STD",
    	STI:             "STI",
    	STMXCSR:         "STMXCSR",
    	STOSB:           "STOSB",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:24:28 UTC 2022
    - 266.8K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewrite386.go

    		return true
    	case OpSignmask:
    		return rewriteValue386_OpSignmask(v)
    	case OpSlicemask:
    		return rewriteValue386_OpSlicemask(v)
    	case OpSqrt:
    		v.Op = Op386SQRTSD
    		return true
    	case OpSqrt32:
    		v.Op = Op386SQRTSS
    		return true
    	case OpStaticCall:
    		v.Op = Op386CALLstatic
    		return true
    	case OpStore:
    		return rewriteValue386_OpStore(v)
    	case OpSub16:
    		v.Op = Op386SUBL
    		return true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 21:05:46 UTC 2023
    - 262.4K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewritePPC64.go

    	v_0 := v.Args[0]
    	// match: (FSQRT (FMOVDconst [x]))
    	// cond: x >= 0
    	// result: (FMOVDconst [math.Sqrt(x)])
    	for {
    		if v_0.Op != OpPPC64FMOVDconst {
    			break
    		}
    		x := auxIntToFloat64(v_0.AuxInt)
    		if !(x >= 0) {
    			break
    		}
    		v.reset(OpPPC64FMOVDconst)
    		v.AuxInt = float64ToAuxInt(math.Sqrt(x))
    		return true
    	}
    	return false
    }
    func rewriteValuePPC64_OpPPC64FSUB(v *Value) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 360.2K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/rewriteS390X.go

    		return true
    	case OpSignExt8to64:
    		v.Op = OpS390XMOVBreg
    		return true
    	case OpSlicemask:
    		return rewriteValueS390X_OpSlicemask(v)
    	case OpSqrt:
    		v.Op = OpS390XFSQRT
    		return true
    	case OpSqrt32:
    		v.Op = OpS390XFSQRTS
    		return true
    	case OpStaticCall:
    		v.Op = OpS390XCALLstatic
    		return true
    	case OpStore:
    		return rewriteValueS390X_OpStore(v)
    	case OpSub16:
    		v.Op = OpS390XSUBW
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 395.1K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/rewriteARM.go

    		return true
    	case OpSignmask:
    		return rewriteValueARM_OpSignmask(v)
    	case OpSlicemask:
    		return rewriteValueARM_OpSlicemask(v)
    	case OpSqrt:
    		v.Op = OpARMSQRTD
    		return true
    	case OpSqrt32:
    		v.Op = OpARMSQRTF
    		return true
    	case OpStaticCall:
    		v.Op = OpARMCALLstatic
    		return true
    	case OpStore:
    		return rewriteValueARM_OpStore(v)
    	case OpSub16:
    		v.Op = OpARMSUB
    		return true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 486.8K bytes
    - Viewed (0)
Back to top