Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 32 for fmin32 (0.32 sec)

  1. schema/field_test.go

    		{Name: "INT16", DBName: "fint16", BindNames: []string{"INT16"}, DataType: schema.Int, Creatable: true, Updatable: true, Readable: true, Size: 16, Tag: `gorm:"column:fint16"`},
    		{Name: "INT32", DBName: "fint32", BindNames: []string{"INT32"}, DataType: schema.Int, Creatable: true, Updatable: true, Readable: true, Size: 32, Tag: `gorm:"column:fint32"`},
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Sat Feb 19 09:02:53 UTC 2022
    - 12.7K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/test/testdata/fp_test.go

    	fail64("/", div64_ssa, a, b, 0.75)
    	fail64("neg", neg64_ssa, a, b, -7)
    
    	fail32("+", add32_ssa, c, d, 7.0)
    	fail32("*", mul32_ssa, c, d, 12.0)
    	fail32("-", sub32_ssa, c, d, -1.0)
    	fail32("/", div32_ssa, c, d, 0.75)
    	fail32("neg", neg32_ssa, c, d, -7)
    
    	// denorm-squared should underflow to zero.
    	fail32("*", mul32_ssa, tiny, tiny, 0)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 05 17:54:15 UTC 2022
    - 35K bytes
    - Viewed (0)
  3. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/VisualStudioSoftwareModelSingleProjectIntegrationTest.groovy

            installation('build/install/main/win32/debug').assertInstalled()
        }
    
        @Requires(IntegTestPreconditions.HasMsBuild)
        @ToBeFixedForConfigurationCache
        def "can build library from visual studio"() {
            useMsbuildTool()
            def debugBinaryLib = staticLibrary("build/libs/main/static/win32/debug/main")
            def debugBinaryDll = sharedLibrary("build/libs/main/shared/win32/debug/main")
    
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 35.7K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/test/testdata/arith_test.go

    		-nineteenS + 1, -2*nineteenS - 5, -3*nineteenS + 3, -5*nineteenS + 4, -12345*nineteenS - 2,
    		minI32, minI32 + 1, minI32 + 2, minI32 + 3, minI32 + 4,
    		minI32 + 5, minI32 + 6, minI32 + 7, minI32 + 8,
    		minI32 + 9, minI32 + 10, minI32 + 11, minI32 + 12,
    		minI32 + 13, minI32 + 14, minI32 + 15, minI32 + 16,
    		minI32 + 17, minI32 + 18, minI32 + 19, minI32 + 20,
    		maxI32, maxI32 - 1, maxI32 - 2, maxI32 - 3, maxI32 - 4,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:30:59 UTC 2023
    - 43.5K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/gcc/metadata/GccMetadataProviderTest.groovy

    ignoring nonexistent directory "/usr/lib/gcc/x86_64-w64-mingw32/10-win32/../../../../x86_64-w64-mingw32/sys-include"
    #include "..." search starts here:
    #include <...> search starts here:
     /usr/lib/gcc/x86_64-w64-mingw32/10-win32/include
     /usr/lib/gcc/x86_64-w64-mingw32/10-win32/include-fixed
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 16 06:01:47 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  6. cluster/gce/windows/testonly/install-ssh.psm1

        net start ${service}
        Set-Service ${service} -StartupType Automatic
      }
    }
    
    # Installs open-ssh using the instructions in
    # https://github.com/PowerShell/Win32-OpenSSH/wiki/Install-Win32-OpenSSH.
    #
    # After installation run StartProcess-WriteSshKeys to fetch ssh keys from the
    # metadata server.
    function InstallAndStart-OpenSsh {
      if (-not (ShouldWrite-File $OPENSSH_ROOT)) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 09 05:09:18 UTC 2021
    - 11.6K bytes
    - Viewed (0)
  7. src/runtime/softfloat64.go

    	}
    
    	return q1*b + q0, (un21*b + un0 - q0*v) >> s
    }
    
    func fadd32(x, y uint32) uint32 {
    	return f64to32(fadd64(f32to64(x), f32to64(y)))
    }
    
    func fmul32(x, y uint32) uint32 {
    	return f64to32(fmul64(f32to64(x), f32to64(y)))
    }
    
    func fdiv32(x, y uint32) uint32 {
    	// TODO: are there double-rounding problems here? See issue 48807.
    	return f64to32(fdiv64(f32to64(x), f32to64(y)))
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 08 17:58:41 UTC 2021
    - 11.5K bytes
    - Viewed (0)
  8. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/AbstractVisualStudioProjectIntegrationTest.groovy

            then:
            resultSolution.size() == 1
            resultSolution[0].assertOutputContains('The project "' + visualStudioProjectName + '" is not selected for building in solution configuration "unbuildable|Win32".')
    
            when:
            def resultProject = msbuild
                    .withWorkingDir(testDirectory)
                    .withSolution(solutionFile)
                    .withProject(visualStudioProjectName)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 14.7K bytes
    - Viewed (0)
  9. src/cmd/asm/internal/asm/testdata/riscv64.s

    	// 11.6: Single-Precision Floating-Point Computational Instructions
    	FADDS	F1, F0, F2				// 53011000
    	FSUBS	F1, F0, F2				// 53011008
    	FMULS	F1, F0, F2				// 53011010
    	FDIVS	F1, F0, F2				// 53011018
    	FMINS	F1, F0, F2				// 53011028
    	FMAXS	F1, F0, F2				// 53111028
    	FSQRTS	F0, F1					// d3000058
    
    	// 11.7: Single-Precision Floating-Point Conversion and Move Instructions
    	FCVTWS	F0, X5					// d31200c0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 04:42:21 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/gcc/metadata/GccMetadataProvider.java

            String line;
            try {
                while ((line = reader.readLine()) != null) {
                    // allowing win32 to bypass the check is due to the mingw compiler on linux not including major.minor in the version string.
                    if ((line.contains(majorMinorOnly) || line.contains("win32"))
                        && line.contains(" version ")
                        && line.contains(compilerType.getIdentifier())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 15 06:39:06 UTC 2024
    - 13K bytes
    - Viewed (0)
Back to top