Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for fmin32 (0.09 sec)

  1. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    // EscapeCommFunction constants. See https://learn.microsoft.com/en-us/windows/win32/api/winbase/nf-winbase-escapecommfunction.
    const (
    	SETXOFF  = 1
    	SETXON   = 2
    	SETRTS   = 3
    	CLRRTS   = 4
    	SETDTR   = 5
    	CLRDTR   = 6
    	SETBREAK = 8
    	CLRBREAK = 9
    )
    
    // PurgeComm constants. See https://learn.microsoft.com/en-us/windows/win32/api/winbase/nf-winbase-purgecomm.
    const (
    	PURGE_TXABORT = 0x0001
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/ARM64Ops.go

    		{name: "FSQRTS", argLength: 1, reg: fp11, asm: "FSQRTS"},                              // sqrt(arg0), float32
    		{name: "FMIND", argLength: 2, reg: fp21, asm: "FMIND"},                                // min(arg0, arg1)
    		{name: "FMINS", argLength: 2, reg: fp21, asm: "FMINS"},                                // min(arg0, arg1)
    		{name: "FMAXD", argLength: 2, reg: fp21, asm: "FMAXD"},                                // max(arg0, arg1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 58.8K bytes
    - Viewed (0)
  3. src/math/all_test.go

    		if f := Min(vffdimSC[i][0], vffdimSC[i][1]); !alike(fminSC[i], f) {
    			t.Errorf("Min(%g, %g) = %g, want %g", vffdimSC[i][0], vffdimSC[i][1], f, fminSC[i])
    		}
    	}
    	for i := 0; i < len(vffdim2SC); i++ {
    		if f := Min(vffdim2SC[i][0], vffdim2SC[i][1]); !alike(fminSC[i], f) {
    			t.Errorf("Min(%g, %g) = %g, want %g", vffdim2SC[i][0], vffdim2SC[i][1], f, fminSC[i])
    		}
    	}
    }
    
    func TestMod(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 07 17:39:26 UTC 2023
    - 86.8K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/regalloc.go

    func (s *regAllocState) makeSpill(v *Value, b *Block) *Value {
    	vi := &s.values[v.ID]
    	if vi.spill != nil {
    		// Final block not known - keep track of subtree where restores reside.
    		vi.restoreMin = min32(vi.restoreMin, s.sdom[b.ID].entry)
    		vi.restoreMax = max32(vi.restoreMax, s.sdom[b.ID].exit)
    		return vi.spill
    	}
    	// Make a spill for v. We don't know where we want
    	// to put it yet, so we leave it blockless for now.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  5. src/syscall/syscall_windows.go

    var procSetFilePointerEx = modkernel32.NewProc("SetFilePointerEx")
    
    const ptrSize = unsafe.Sizeof(uintptr(0))
    
    // setFilePointerEx calls SetFilePointerEx.
    // See https://learn.microsoft.com/en-us/windows/win32/api/fileapi/nf-fileapi-setfilepointerex
    func setFilePointerEx(handle Handle, distToMove int64, newFilePointer *int64, whence uint32) error {
    	var e1 Errno
    	if unsafe.Sizeof(uintptr(0)) == 8 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 52.7K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    #endif  // __GNUC__
    
    // Determines the platform on which Google Test is compiled.
    #ifdef __CYGWIN__
    # define GTEST_OS_CYGWIN 1
    #elif defined __SYMBIAN32__
    # define GTEST_OS_SYMBIAN 1
    #elif defined _WIN32
    # define GTEST_OS_WINDOWS 1
    # ifdef _WIN32_WCE
    #  define GTEST_OS_WINDOWS_MOBILE 1
    # elif defined(__MINGW__) || defined(__MINGW32__)
    #  define GTEST_OS_WINDOWS_MINGW 1
    # else
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  7. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    #endif  // __GNUC__
    
    // Determines the platform on which Google Test is compiled.
    #ifdef __CYGWIN__
    # define GTEST_OS_CYGWIN 1
    #elif defined __SYMBIAN32__
    # define GTEST_OS_SYMBIAN 1
    #elif defined _WIN32
    # define GTEST_OS_WINDOWS 1
    # ifdef _WIN32_WCE
    #  define GTEST_OS_WINDOWS_MOBILE 1
    # elif defined(__MINGW__) || defined(__MINGW32__)
    #  define GTEST_OS_WINDOWS_MINGW 1
    # else
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
Back to top