Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for one32 (0.14 sec)

  1. src/cmd/compile/internal/ssa/rewriteCond_test.go

    	}
    
    	if x32-v32_n*one32 > 0 {
    		t.Errorf("'%#x - %#x*1 > 0' failed", x32, v32_n)
    	}
    
    	if x32-v32_n*one32 >= 0 {
    		t.Errorf("'%#x - %#x*1 >= 0' failed", x32, v32_n)
    	}
    
    	if y32-v32*one32 < 0 {
    		t.Errorf("'%#x - %#x*1 < 0' failed", y32, v32)
    	}
    
    	if y32-v32*one32 <= 0 {
    		t.Errorf("'%#x - %#x*1 <= 0' failed", y32, v32)
    	}
    
    	if x32-x32b*one32 < 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 24 01:19:09 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  2. src/runtime/iface_test.go

    	eight8I T8    = 8
    	yes     bool  = true
    
    	zero16     uint16 = 0
    	zero16I    T16    = 0
    	one16      uint16 = 1
    	thousand16 uint16 = 1000
    
    	zero32     uint32 = 0
    	zero32I    T32    = 0
    	one32      uint32 = 1
    	thousand32 uint32 = 1000
    
    	zero64     uint64 = 0
    	zero64I    T64    = 0
    	one64      uint64 = 1
    	thousand64 uint64 = 1000
    
    	zerostr  string = ""
    	zerostrI Tstr   = ""
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 7.5K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/test/shift_test.go

    	}
    	if one64u>>N<<2>>N == 1 {
    		t.Errorf("shift overflow mishandled")
    	}
    	if one32<<N>>2<<N == 1 {
    		t.Errorf("shift overflow mishandled")
    	}
    	if one32u<<N>>2<<N == 1 {
    		t.Errorf("shift overflow mishandled")
    	}
    	if one32>>N<<2>>N == 1 {
    		t.Errorf("shift overflow mishandled")
    	}
    	if one32u>>N<<2>>N == 1 {
    		t.Errorf("shift overflow mishandled")
    	}
    	if one16<<N>>2<<N == 1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 23 22:26:39 UTC 2023
    - 25.6K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/test/testdata/fp_test.go

    		expectAll32(t, "zero32", 0, a, b, c, d, e, f, g, h, i)
    	}
    	{
    		a, b, c, d, e, f, g, h, i := conv2Float32_ssa(1, 1, 1, 1, 1, 1, 1, 1, 1)
    		expectAll32(t, "one32", 1, a, b, c, d, e, f, g, h, i)
    	}
    	{
    		// Check maximum values
    		a, b, c, d, e, f, g, h, i := conv2Float64_ssa(127, 255, 32767, 65535, 0x7fffffff, 0xffffffff, 0x7fffFFFFffffFFFF, 0xffffFFFFffffFFFF, 3.402823e38)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 05 17:54:15 UTC 2022
    - 35K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    //sys	stringFromGUID2(rguid *GUID, lpsz *uint16, cchMax int32) (chars int32) = ole32.StringFromGUID2
    //sys	coCreateGuid(pguid *GUID) (ret error) = ole32.CoCreateGuid
    //sys	CoTaskMemFree(address unsafe.Pointer) = ole32.CoTaskMemFree
    //sys	CoInitializeEx(reserved uintptr, coInit uint32) (ret error) = ole32.CoInitializeEx
    //sys	CoUninitialize() = ole32.CoUninitialize
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    	modkernel32 = NewLazySystemDLL("kernel32.dll")
    	modmswsock  = NewLazySystemDLL("mswsock.dll")
    	modnetapi32 = NewLazySystemDLL("netapi32.dll")
    	modntdll    = NewLazySystemDLL("ntdll.dll")
    	modole32    = NewLazySystemDLL("ole32.dll")
    	modpsapi    = NewLazySystemDLL("psapi.dll")
    	modsechost  = NewLazySystemDLL("sechost.dll")
    	modsecur32  = NewLazySystemDLL("secur32.dll")
    	modsetupapi = NewLazySystemDLL("setupapi.dll")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
Back to top