Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for UInt16 (0.24 sec)

  1. 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)
  2. 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)
  3. 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)
  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/debug/elf/elf.go

    	Ehsize    uint16          /* Size of ELF header in bytes. */
    	Phentsize uint16          /* Size of program header entry. */
    	Phnum     uint16          /* Number of program header entries. */
    	Shentsize uint16          /* Size of section header entry. */
    	Shnum     uint16          /* Number of section header entries. */
    	Shstrndx  uint16          /* Section name strings section. */
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  6. 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)
  7. cmd/bucket-replication.go

    	// Read resync meta header
    	switch binary.LittleEndian.Uint16(data[0:2]) {
    	case resyncMetaFormat:
    	default:
    		return brs, fmt.Errorf("resyncMeta: unknown format: %d", binary.LittleEndian.Uint16(data[0:2]))
    	}
    	switch binary.LittleEndian.Uint16(data[2:4]) {
    	case resyncMetaVersion:
    	default:
    		return brs, fmt.Errorf("resyncMeta: unknown version: %d", binary.LittleEndian.Uint16(data[2:4]))
    	}
    	// OK, parse data.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K 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. 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)
  10. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    (ORNshiftRO (RORconst x [c]) x [c]) => (MOVDconst [-1])
    
    // rev16w | rev16
    // ((x>>8) | (x<<8)) => (REV16W x), the type of x is uint16, "|" can also be "^" or "+".
    ((ADDshiftLL|ORshiftLL|XORshiftLL) <typ.UInt16> [8] (UBFX <typ.UInt16> [armBFAuxInt(8, 8)] x) x) => (REV16W x)
    
    // ((x & 0xff00ff00)>>8) | ((x & 0x00ff00ff)<<8), "|" can also be "^" or "+".
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
Back to top