Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 35 for fInt16 (0.47 sec)

  1. src/cmd/compile/internal/test/testdata/cmpConst_test.go

    func gt_255_uint16(x uint16) bool   { return x > 255 }
    func ge_255_uint16(x uint16) bool   { return x >= 255 }
    func eq_255_uint16(x uint16) bool   { return x == 255 }
    func ne_255_uint16(x uint16) bool   { return x != 255 }
    func lt_256_uint16(x uint16) bool   { return x < 256 }
    func le_256_uint16(x uint16) bool   { return x <= 256 }
    func gt_256_uint16(x uint16) bool   { return x > 256 }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 23 06:40:04 UTC 2020
    - 103.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/windows/types_windows.go

    type DNSSRVData struct {
    	Target   *uint16
    	Priority uint16
    	Weight   uint16
    	Port     uint16
    	Pad      uint16
    }
    
    type DNSPTRData struct {
    	Host *uint16
    }
    
    type DNSMXData struct {
    	NameExchange *uint16
    	Preference   uint16
    	Pad          uint16
    }
    
    type DNSTXTData struct {
    	StringCount uint16
    	StringArray [1]*uint16
    }
    
    type DNSRecord struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 104.1K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/generic.rules

     => (Leq16U
    			(RotateLeft16 <typ.UInt16>
    				(Add16 <typ.UInt16>
    					(Mul16 <typ.UInt16>
    						(Const16 <typ.UInt16> [int16(sdivisible16(c).m)])
    						x)
    					(Const16 <typ.UInt16> [int16(sdivisible16(c).a)])
    				)
    				(Const16 <typ.UInt16> [int16(16-sdivisible16(c).k)])
    			)
    			(Const16 <typ.UInt16> [int16(sdivisible16(c).max)])
    		)
    
    (Eq32 x (Mul32 (Const32 [c])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  4. src/reflect/all_test.go

    	{V(uint16(75)), V(int64(75))},
    	{V(int64(76)), V(uint16(76))},
    	{V(uint16(77)), V(uint64(77))},
    	{V(uint64(78)), V(uint16(78))},
    	{V(uint16(79)), V(int(79))},
    	{V(int(80)), V(uint16(80))},
    	{V(uint16(81)), V(uint(81))},
    	{V(uint(82)), V(uint16(82))},
    	{V(uint16(83)), V(uintptr(83))},
    	{V(uintptr(84)), V(uint16(84))},
    	{V(uint16(85)), V(float32(85))},
    	{V(float32(86)), V(uint16(86))},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  5. src/reflect/value.go

    	case Int:
    		*(*int)(v.ptr) = 0
    	case Int8:
    		*(*int8)(v.ptr) = 0
    	case Int16:
    		*(*int16)(v.ptr) = 0
    	case Int32:
    		*(*int32)(v.ptr) = 0
    	case Int64:
    		*(*int64)(v.ptr) = 0
    	case Uint:
    		*(*uint)(v.ptr) = 0
    	case Uint8:
    		*(*uint8)(v.ptr) = 0
    	case Uint16:
    		*(*uint16)(v.ptr) = 0
    	case Uint32:
    		*(*uint32)(v.ptr) = 0
    	case Uint64:
    		*(*uint64)(v.ptr) = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    	if r1 == 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func CreateService(mgr Handle, serviceName *uint16, displayName *uint16, access uint32, srvType uint32, startType uint32, errCtl uint32, pathName *uint16, loadOrderGroup *uint16, tagId *uint32, dependencies *uint16, serviceStartName *uint16, password *uint16) (handle Handle, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
  7. api/go1.3.txt

    pkg debug/pe, type OptionalHeader32 struct, MajorSubsystemVersion uint16
    pkg debug/pe, type OptionalHeader32 struct, MinorImageVersion uint16
    pkg debug/pe, type OptionalHeader32 struct, MinorLinkerVersion uint8
    pkg debug/pe, type OptionalHeader32 struct, MinorOperatingSystemVersion uint16
    pkg debug/pe, type OptionalHeader32 struct, MinorSubsystemVersion uint16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 02 02:45:00 UTC 2014
    - 117K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/ppc64/asm9.go

    			c.ctxt.Diag("literal operation on R0\n%v", p)
    		}
    		if int64(int16(d)) == d {
    			// MOVD $int16, Ry  or  MOVD $offset(Rx), Ry
    			o1 = AOP_IRR(uint32(OP_ADDI), uint32(p.To.Reg), uint32(r), uint32(v))
    		} else {
    			// MOVD $uint16, Ry
    			if int64(uint16(d)) != d || (r != 0 && r != REGZERO) {
    				c.ctxt.Diag("Rule expects a uint16 constant load. got:\n%v", p)
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  9. pkg/proxy/ipvs/proxier_test.go

    						Protocol:  "TCP",
    						Port:      uint16(80),
    						Scheduler: "rr",
    					},
    					{
    						IP:       "100.101.102.103",
    						Port:     3001,
    						Protocol: "TCP",
    					}: {
    						Address:   netutils.ParseIPSloppy("100.101.102.103"),
    						Protocol:  "TCP",
    						Port:      uint16(3001),
    						Scheduler: "rr",
    					},
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 186.8K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/s390x/asmz.go

    		if d1 < 0 || d1 >= DISP12 {
    			if b2 == int16(regtmp(p)) {
    				c.ctxt.Diag("regtmp(p) conflict")
    			}
    			if b1 != int16(regtmp(p)) {
    				zRRE(op_LGR, regtmp(p), uint32(b1), asm)
    			}
    			zRIL(_a, op_AGFI, regtmp(p), uint32(d1), asm)
    			if d1 == d2 && b1 == b2 {
    				d2 = 0
    				b2 = int16(regtmp(p))
    			}
    			d1 = 0
    			b1 = int16(regtmp(p))
    		}
    		if d2 < 0 || d2 >= DISP12 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
Back to top