Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 3,430 for UInt32 (0.14 sec)

  1. src/encoding/binary/binary.go

    		for i, x := range v {
    			order.PutUint16(bs[2*i:], x)
    		}
    	case *int32:
    		order.PutUint32(bs, uint32(*v))
    	case int32:
    		order.PutUint32(bs, uint32(v))
    	case []int32:
    		for i, x := range v {
    			order.PutUint32(bs[4*i:], uint32(x))
    		}
    	case *uint32:
    		order.PutUint32(bs, *v)
    	case uint32:
    		order.PutUint32(bs, v)
    	case []uint32:
    		for i, x := range v {
    			order.PutUint32(bs[4*i:], x)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:29:31 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  2. src/runtime/os_netbsd.go

    func osyield()
    
    //go:nosplit
    func osyield_no_g() {
    	osyield()
    }
    
    func kqueue() int32
    
    //go:noescape
    func kevent(kq int32, ch *keventt, nch int32, ev *keventt, nev int32, ts *timespec) int32
    
    func pipe2(flags int32) (r, w int32, errno int32)
    func fcntl(fd, cmd, arg int32) (ret int32, errno int32)
    
    func issetugid() int32
    
    const (
    	_ESRCH     = 3
    	_ETIMEDOUT = 60
    
    	// From NetBSD's <sys/time.h>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  3. src/internal/syscall/windows/registry/syscall.go

    //sys	regEnumValue(key syscall.Handle, index uint32, name *uint16, nameLen *uint32, reserved *uint32, valtype *uint32, buf *byte, buflen *uint32) (regerrno error) = advapi32.RegEnumValueW
    //sys	regDeleteValue(key syscall.Handle, name *uint16) (regerrno error) = advapi32.RegDeleteValueW
    //sys   regLoadMUIString(key syscall.Handle, name *uint16, buf *uint16, buflen uint32, buflenCopied *uint32, flags uint32, dir *uint16) (regerrno error) = advapi32.RegLoadMUIStringW
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 14 07:20:34 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  4. src/internal/runtime/atomic/atomic_s390x.s

    	MOVW	val+8(FP), R4
    	LAO	R4, R6, 0(R3)        // R6 = *R3; *R3 |= R4; (atomic)
    	RET
    
    // func And(addr *uint32, v uint32)
    TEXT ·And(SB), NOSPLIT, $0-12
    	MOVD	ptr+0(FP), R3
    	MOVW	val+8(FP), R4
    	LAN	R4, R6, 0(R3)        // R6 = *R3; *R3 &= R4; (atomic)
    	RET
    
    // func Or32(addr *uint32, v uint32) old uint32
    TEXT ·Or32(SB), NOSPLIT, $0-20
    	MOVD	ptr+0(FP), R4
    	MOVW	val+8(FP), R5
    	MOVW	(R4), R3
    repeat:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  5. src/sync/atomic/doc.go

    // Consider using the more ergonomic and less error-prone [Int32.And] instead.
    func AndInt32(addr *int32, mask int32) (old int32)
    
    // AndUint32 atomically performs a bitwise AND operation on *addr using the bitmask provided as mask
    // and returns the old value.
    // Consider using the more ergonomic and less error-prone [Uint32.And] instead.
    func AndUint32(addr *uint32, mask uint32) (old uint32)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/syscall_netbsd_386.go

    	return Timespec{Sec: sec, Nsec: int32(nsec)}
    }
    
    func setTimeval(sec, usec int64) Timeval {
    	return Timeval{Sec: sec, Usec: int32(usec)}
    }
    
    func SetKevent(k *Kevent_t, fd, mode, flags int) {
    	k.Ident = uint32(fd)
    	k.Filter = uint32(mode)
    	k.Flags = uint32(flags)
    }
    
    func (iov *Iovec) SetLen(length int) {
    	iov.Len = uint32(length)
    }
    
    func (msghdr *Msghdr) SetControllen(length int) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 819 bytes
    - Viewed (0)
  7. src/cmd/internal/obj/arm64/asm7.go

    func OPDP3(sf uint32, op54 uint32, op31 uint32, o0 uint32) uint32 {
    	return sf<<31 | op54<<29 | 0x1B<<24 | op31<<21 | o0<<15
    }
    
    func OPBcc(x uint32) uint32 {
    	return 0x2A<<25 | 0<<24 | 0<<4 | x&15
    }
    
    func OPBLR(x uint32) uint32 {
    	/* x=0, JMP; 1, CALL; 2, RET */
    	return 0x6B<<25 | 0<<23 | x<<21 | 0x1F<<16 | 0<<10
    }
    
    func SYSOP(l uint32, op0 uint32, op1 uint32, crn uint32, crm uint32, op2 uint32, rt uint32) uint32 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  8. test/intcvt.go

    	//	chku16(uint16(f64), 0)
    
    	chku32(uint32(i8), ci8&0xffffffff)
    	chku32(uint32(i16), ci16&0xffffffff)
    	chku32(uint32(i32), ci32&0xffffffff)
    	chku32(uint32(i64), ci64&0xffffffff)
    	chku32(uint32(u8), cu8&0xffffffff)
    	chku32(uint32(u16), cu16&0xffffffff)
    	chku32(uint32(u32), cu32&0xffffffff)
    	chku32(uint32(u64), cu64&0xffffffff)
    	//	chku32(uint32(f32), 0)
    	//	chku32(uint32(f64), 0)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 23 07:47:26 UTC 2012
    - 4.3K bytes
    - Viewed (0)
  9. src/internal/xcoff/xcoff.go

    type LoaderHeader32 struct {
    	Lversion uint32 // Loader section version number
    	Lnsyms   uint32 // Number of symbol table entries
    	Lnreloc  uint32 // Number of relocation table entries
    	Listlen  uint32 // Length of import file ID string table
    	Lnimpid  uint32 // Number of import file IDs
    	Limpoff  uint32 // Offset to start of import file IDs
    	Lstlen   uint32 // Length of string table
    	Lstoff   uint32 // Offset to start of string table
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 08 20:36:37 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  10. api/except.txt

    pkg syscall (freebsd-386), func Mknod(string, uint32, int) error
    pkg syscall (freebsd-386), type Dirent struct, Fileno uint32
    pkg syscall (freebsd-386), type Dirent struct, Namlen uint8
    pkg syscall (freebsd-386), type Stat_t struct, Blksize uint32
    pkg syscall (freebsd-386), type Stat_t struct, Dev uint32
    pkg syscall (freebsd-386), type Stat_t struct, Gen uint32
    pkg syscall (freebsd-386), type Stat_t struct, Ino uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:13:30 UTC 2023
    - 34.6K bytes
    - Viewed (0)
Back to top