Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for intSize (0.17 sec)

  1. cmd/storage-datatypes_gen.go

    	for za0003 := range z.Parts {
    		s += z.Parts[za0003].Msgsize()
    	}
    	s += z.Erasure.Msgsize() + msgp.BoolSize + z.ReplicationState.Msgsize() + msgp.BytesPrefixSize + len(z.Data) + msgp.IntSize + msgp.TimeSize + msgp.BoolSize + msgp.IntSize + msgp.BytesPrefixSize + len(z.Checksum) + msgp.BoolSize
    	return
    }
    
    // DecodeMsg implements msgp.Decodable
    func (z *FileInfoVersions) DecodeMsg(dc *msgp.Reader) (err error) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 130.6K bytes
    - Viewed (0)
  2. src/cmd/go/internal/work/exec.go

    package main
    const i int = 1 << 32
    `
    
    // Determine the size of int on the target system for the -intgosize option
    // of swig >= 2.0.9. Run only once.
    func (b *Builder) swigDoIntSize(objdir string) (intsize string, err error) {
    	if cfg.BuildN {
    		return "$INTBITS", nil
    	}
    	src := filepath.Join(b.WorkDir, "swig_intsize.go")
    	if err = os.WriteFile(src, []byte(swigIntSizeCode), 0666); err != nil {
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    func CreateNamedPipe(name *uint16, flags uint32, pipeMode uint32, maxInstances uint32, outSize uint32, inSize uint32, defaultTimeout uint32, sa *SecurityAttributes) (handle Handle, err error) {
    	r0, _, e1 := syscall.Syscall9(procCreateNamedPipeW.Addr(), 8, uintptr(unsafe.Pointer(name)), uintptr(flags), uintptr(pipeMode), uintptr(maxInstances), uintptr(outSize), uintptr(inSize), uintptr(defaultTimeout), uintptr(unsafe.Pointer(sa)), 0)
    	handle = Handle(r0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
  4. src/debug/elf/elf.go

    	Size      uint32 /* Size in bytes. */
    	Link      uint32 /* Index of a related section. */
    	Info      uint32 /* Depends on section type. */
    	Addralign uint32 /* Alignment in bytes. */
    	Entsize   uint32 /* Size of each entry in section. */
    }
    
    // ELF32 Program header.
    type Prog32 struct {
    	Type   uint32 /* Entry type. */
    	Off    uint32 /* File offset of contents. */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
Back to top