Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 24 for __reserved1 (0.24 sec)

  1. src/runtime/defs_linux_amd64.go

    }
    
    type stackt struct {
    	ss_sp     *byte
    	ss_flags  int32
    	pad_cgo_0 [4]byte
    	ss_size   uintptr
    }
    
    type mcontext struct {
    	gregs       [23]uint64
    	fpregs      *fpstate
    	__reserved1 [8]uint64
    }
    
    type ucontext struct {
    	uc_flags     uint64
    	uc_link      *ucontext
    	uc_stack     stackt
    	uc_mcontext  mcontext
    	uc_sigmask   usigset
    	__fpregs_mem fpstate
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 19:05:10 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  2. src/encoding/gob/type.go

    	tReserved7 = bootstrapType("_reserved1", (*struct{ r7 int })(nil))
    	tReserved6 = bootstrapType("_reserved1", (*struct{ r6 int })(nil))
    	tReserved5 = bootstrapType("_reserved1", (*struct{ r5 int })(nil))
    	tReserved4 = bootstrapType("_reserved1", (*struct{ r4 int })(nil))
    	tReserved3 = bootstrapType("_reserved1", (*struct{ r3 int })(nil))
    	tReserved2 = bootstrapType("_reserved1", (*struct{ r2 int })(nil))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 02:00:26 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  3. src/syscall/zerrors_aix_ppc64.go

    	S_MSG                         = 0x8
    	S_OUTPUT                      = 0x4
    	S_RDBAND                      = 0x20
    	S_RDNORM                      = 0x10
    	S_RESERVED1                   = 0x20000
    	S_RESERVED2                   = 0x200000
    	S_RESERVED3                   = 0x400000
    	S_RESERVED4                   = 0x80000000
    	S_RESFMT1                     = 0x10000000
    	S_RESFMT10                    = 0x34000000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 16:18:12 UTC 2019
    - 47.2K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zerrors_aix_ppc64.go

    	S_MSG                         = 0x8
    	S_OUTPUT                      = 0x4
    	S_RDBAND                      = 0x20
    	S_RDNORM                      = 0x10
    	S_RESERVED1                   = 0x20000
    	S_RESERVED2                   = 0x200000
    	S_RESERVED3                   = 0x400000
    	S_RESERVED4                   = 0x80000000
    	S_RESFMT1                     = 0x10000000
    	S_RESFMT10                    = 0x34000000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 52.7K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/zerrors_aix_ppc.go

    	S_MSG                         = 0x8
    	S_OUTPUT                      = 0x4
    	S_RDBAND                      = 0x20
    	S_RDNORM                      = 0x10
    	S_RESERVED1                   = 0x20000
    	S_RESERVED2                   = 0x200000
    	S_RESERVED3                   = 0x400000
    	S_RESERVED4                   = 0x80000000
    	S_RESFMT1                     = 0x10000000
    	S_RESFMT10                    = 0x34000000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 52.4K bytes
    - Viewed (0)
  6. src/runtime/export_debug_arm64_test.go

    	}
    }
    
    // fpRegAddr returns the address of the ith fp-simd register in sigcontext.
    func fpRegAddr(dst *sigcontext, i int) *uint64 {
    	/* FP-SIMD registers are saved in sigcontext.__reserved, which is orgnized in
    	the following C structs:
    	struct fpsimd_context {
    		struct _aarch64_ctx head;
    		__u32 fpsr;
    		__u32 fpcr;
    		__uint128_t vregs[32];
    	};
    	struct _aarch64_ctx {
    		__u32 magic;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Apr 23 05:38:56 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  7. src/main/java/jcifs/internal/smb2/io/Smb2FlushRequest.java

         */
        @Override
        protected int writeBytesWireFormat ( byte[] dst, int dstIndex ) {
            int start = dstIndex;
            SMBUtil.writeInt2(24, dst, dstIndex);
            dstIndex += 2;
            dstIndex += 2; // Reserved1
            dstIndex += 4; // Reserved2
    
            System.arraycopy(this.fileId, 0, dst, dstIndex, 16);
            dstIndex += 16;
    
            return dstIndex - start;
        }
    
    
        /**
         * {@inheritDoc}
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 2.7K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/ioctl_linux.go

    	rawrange := (*RawFileDedupeRange)(unsafe.Pointer(&buf[0]))
    	rawrange.Src_offset = value.Src_offset
    	rawrange.Src_length = value.Src_length
    	rawrange.Dest_count = uint16(len(value.Info))
    	rawrange.Reserved1 = value.Reserved1
    	rawrange.Reserved2 = value.Reserved2
    
    	for i := range value.Info {
    		rawinfo := (*RawFileDedupeRangeInfo)(unsafe.Pointer(
    			uintptr(unsafe.Pointer(&buf[0])) + uintptr(SizeofRawFileDedupeRange) +
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  9. src/runtime/defs_linux_arm64.go

    type sigcontext struct {
    	fault_address uint64
    	/* AArch64 registers */
    	regs       [31]uint64
    	sp         uint64
    	pc         uint64
    	pstate     uint64
    	_pad       [8]byte // __attribute__((__aligned__(16)))
    	__reserved [4096]byte
    }
    
    type sockaddr_un struct {
    	family uint16
    	path   [108]byte
    }
    
    type ucontext struct {
    	uc_flags    uint64
    	uc_link     *ucontext
    	uc_stack    stackt
    	uc_sigmask  uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 19:05:10 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/windows/types_windows.go

    	dst.LastAccessTime = src.LastAccessTime
    	dst.LastWriteTime = src.LastWriteTime
    	dst.FileSizeHigh = src.FileSizeHigh
    	dst.FileSizeLow = src.FileSizeLow
    	dst.Reserved0 = src.Reserved0
    	dst.Reserved1 = src.Reserved1
    
    	// The src is 1 element bigger than dst, but it must be NUL.
    	copy(dst.FileName[:], src.FileName[:])
    	copy(dst.AlternateFileName[:], src.AlternateFileName[:])
    }
    
    type ByHandleFileInformation 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)
Back to top