Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 133 for fmin32 (0.11 sec)

  1. src/runtime/minmax.go

    	if y > x {
    		return y
    	}
    	return x
    }
    
    func fmin32(x, y float32) float32 { return fmin(x, y) }
    func fmin64(x, y float64) float64 { return fmin(x, y) }
    func fmax32(x, y float32) float32 { return fmax(x, y) }
    func fmax64(x, y float64) float64 { return fmax(x, y) }
    
    type floaty interface{ ~float32 | ~float64 }
    
    func fmin[F floaty](x, y F) F {
    	if y != y || y < x {
    		return y
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 18:15:22 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  2. src/testing/quick/quick_test.go

    	reportError("fInt16", CheckEqual(fInt16, fInt16, nil), t)
    	reportError("fInt16Alias", CheckEqual(fInt16Alias, fInt16Alias, nil), t)
    	reportError("fInt32", CheckEqual(fInt32, fInt32, nil), t)
    	reportError("fInt32Alias", CheckEqual(fInt32Alias, fInt32Alias, nil), t)
    	reportError("fInt64", CheckEqual(fInt64, fInt64, nil), t)
    	reportError("fInt64Alias", CheckEqual(fInt64Alias, fInt64Alias, nil), t)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 12:54:00 UTC 2019
    - 9K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/riscv/anames.go

    	"RDINSTRETH",
    	"FRCSR",
    	"FSCSR",
    	"FRRM",
    	"FSRM",
    	"FRFLAGS",
    	"FSFLAGS",
    	"FSRMI",
    	"FSFLAGSI",
    	"FLW",
    	"FSW",
    	"FADDS",
    	"FSUBS",
    	"FMULS",
    	"FDIVS",
    	"FMINS",
    	"FMAXS",
    	"FSQRTS",
    	"FMADDS",
    	"FMSUBS",
    	"FNMADDS",
    	"FNMSUBS",
    	"FCVTWS",
    	"FCVTLS",
    	"FCVTSW",
    	"FCVTSL",
    	"FCVTWUS",
    	"FCVTLUS",
    	"FCVTSWU",
    	"FCVTSLU",
    	"FSGNJS",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 14:19:33 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  4. test/codegen/floats.go

    	// ppc64/power10:"XSMAXJDP"
    	return max(a, b)
    }
    
    func Float32Min(a, b float32) float32 {
    	// amd64:"MINSS"
    	// arm64:"FMINS"
    	// riscv64:"FMINS"
    	// ppc64/power9:"XSMINJDP"
    	// ppc64/power10:"XSMINJDP"
    	return min(a, b)
    }
    
    func Float32Max(a, b float32) float32 {
    	// amd64:"MINSS"
    	// arm64:"FMAXS"
    	// riscv64:"FMAXS"
    	// ppc64/power9:"XSMAXJDP"
    	// ppc64/power10:"XSMAXJDP"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 15:24:29 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/tables.go

    	FMAX:      "FMAX",
    	FMAXNM:    "FMAXNM",
    	FMAXNMP:   "FMAXNMP",
    	FMAXNMV:   "FMAXNMV",
    	FMAXP:     "FMAXP",
    	FMAXV:     "FMAXV",
    	FMIN:      "FMIN",
    	FMINNM:    "FMINNM",
    	FMINNMP:   "FMINNMP",
    	FMINNMV:   "FMINNMV",
    	FMINP:     "FMINP",
    	FMINV:     "FMINV",
    	FMLA:      "FMLA",
    	FMLS:      "FMLS",
    	FMOV:      "FMOV",
    	FMSUB:     "FMSUB",
    	FMUL:      "FMUL",
    	FMULX:     "FMULX",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 17:57:48 UTC 2017
    - 211.8K bytes
    - Viewed (0)
  6. tensorflow/c/c_api_macros.h

    ==============================================================================*/
    
    #ifndef TENSORFLOW_C_C_API_MACROS_H_
    #define TENSORFLOW_C_C_API_MACROS_H_
    
    #ifdef SWIG
    #define TF_CAPI_EXPORT
    #else
    #if defined(_WIN32)
    #ifdef TF_COMPILE_LIBRARY
    #define TF_CAPI_EXPORT __declspec(dllexport)
    #else
    #define TF_CAPI_EXPORT __declspec(dllimport)
    #endif  // TF_COMPILE_LIBRARY
    #else
    #ifdef TF_CAPI_WEAK
    #define TF_CAPI_EXPORT \
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat May 13 04:44:45 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  7. src/runtime/hash32.go

    	a, b := mix32(uint32(seed), uint32(4^hashkey[0]))
    	t := readUnaligned32(p)
    	a ^= t
    	b ^= t
    	a, b = mix32(a, b)
    	a, b = mix32(a, b)
    	return uintptr(a ^ b)
    }
    
    func memhash64Fallback(p unsafe.Pointer, seed uintptr) uintptr {
    	a, b := mix32(uint32(seed), uint32(8^hashkey[0]))
    	a ^= readUnaligned32(p)
    	b ^= readUnaligned32(add(p, 4))
    	a, b = mix32(a, b)
    	a, b = mix32(a, b)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/native-binaries/cpp-lib/groovy/src/main/headers/hello.h

    #if defined(_WIN32) && defined(DLL_EXPORT)
    #define LIB_FUNC __declspec(dllexport)
    #else
    #define LIB_FUNC
    #endif
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 136 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/native-binaries/pre-compiled-headers/groovy/src/hello/headers/hello.h

    #ifndef HELLO_H
    #define HELLO_H
    #if defined(_WIN32) && defined(DLL_EXPORT)
    #define LIB_FUNC __declspec(dllexport)
    #else
    #define LIB_FUNC
    #endif
    
    class Greeter {
        public:
        void LIB_FUNC hello();
    };
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 210 bytes
    - Viewed (0)
  10. platforms/ide/ide-native/src/test/groovy/org/gradle/ide/visualstudio/tasks/internal/VisualStudioSolutionFileTest.groovy

    		${getUUID(project1.file)}.configA|Win32.ActiveCfg = config2|Win32
    		${getUUID(project2.file)}.config1|Win32.ActiveCfg = config1|Win32
    		${getUUID(project2.file)}.config1|Win32.Build.0 = config1|Win32
    		${getUUID(project2.file)}.config2|Win32.ActiveCfg = configA|Win32
    		${getUUID(project2.file)}.configA|Win32.ActiveCfg = configA|Win32
    		${getUUID(project2.file)}.configA|Win32.Build.0 = configA|Win32
    	EndGlobalSection
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 8.6K bytes
    - Viewed (0)
Back to top