Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for intSize (0.17 sec)

  1. cmd/object-api-datatypes_gen.go

    	s = 1 + 7 + msgp.StringPrefixSize + len(z.Bucket) + 7 + msgp.StringPrefixSize + len(z.Object) + 9 + msgp.StringPrefixSize + len(z.UploadID) + 13 + msgp.StringPrefixSize + len(z.StorageClass) + 17 + msgp.IntSize + 21 + msgp.IntSize + 9 + msgp.IntSize + 12 + msgp.BoolSize + 6 + msgp.ArrayHeaderSize
    	for za0001 := range z.Parts {
    		s += z.Parts[za0001].Msgsize()
    	}
    	s += 12 + msgp.MapHeaderSize
    	if z.UserDefined != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 70.1K bytes
    - Viewed (0)
  2. cmd/bucket-replication-utils_gen.go

    func (z *BucketReplicationResyncStatus) Msgsize() (s int) {
    	s = 1 + 2 + msgp.IntSize + 4 + msgp.MapHeaderSize
    	if z.TargetsMap != nil {
    		for za0001, za0002 := range z.TargetsMap {
    			_ = za0002
    			s += msgp.StringPrefixSize + len(za0001) + za0002.Msgsize()
    		}
    	}
    	s += 3 + msgp.IntSize + 3 + msgp.TimeSize
    	return
    }
    
    // DecodeMsg implements msgp.Decodable
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 21 17:21:35 UTC 2024
    - 61.1K bytes
    - Viewed (0)
  3. cmd/xl-storage-format-v2_gen.go

    	for za0005 := range z.PartETags {
    		s += msgp.StringPrefixSize + len(z.PartETags[za0005])
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 29 19:14:09 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  4. src/cmd/cgo/gcc.go

    // The same dwarf.StructType pointer will always get the same tag.
    var anonymousStructTag = make(map[*dwarf.StructType]string)
    
    func (c *typeConv) Init(ptrSize, intSize int64) {
    	c.ptrSize = ptrSize
    	c.intSize = intSize
    	c.m = make(map[string]*Type)
    	c.ptrs = make(map[string][]*Type)
    	c.getTypeIDs = make(map[string]bool)
    	c.incompleteStructs = make(map[string]bool)
    	c.bool = c.Ident("bool")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  5. src/cmd/cgo/out.go

    	case *ast.Ident:
    		goTypesFixup := func(r *Type) *Type {
    			if r.Size == 0 { // int or uint
    				rr := new(Type)
    				*rr = *r
    				rr.Size = p.IntSize
    				rr.Align = p.IntSize
    				r = rr
    			}
    			if r.Align > p.PtrSize {
    				r.Align = p.PtrSize
    			}
    			return r
    		}
    		// Look up the type in the top level declarations.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  6. cmd/erasure-server-pool.go

    	if globalIsDistErasure {
    		n = 2048
    	}
    
    	// Avoid allocating more than half of the available memory
    	if maxN := availableMemory() / (blockSizeV2 * 2); n > maxN {
    		n = maxN
    	}
    
    	if globalIsCICD || strconv.IntSize == 32 {
    		n = 256 // 256MiB for CI/CD environments is sufficient or on 32bit platforms.
    	}
    
    	// Initialize byte pool once for all sets, bpool size is set to
    	// setCount * setDriveCount with each memory upto blockSizeV2.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 82.5K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    	// The final argument of the pselect6() system call is not a
    	// sigset_t * pointer, but is instead a structure
    	var kernelMask *sigset_argpack
    	if sigmask != nil {
    		wordBits := 32 << (^uintptr(0) >> 63) // see math.intSize
    
    		// A sigset stores one bit per signal,
    		// offset by 1 (because signal 0 does not exist).
    		// So the number of words needed is ⌈__C_NSIG - 1 / wordBits⌉.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/elf.go

    		if elf.Machine(eh.Machine) == elf.EM_X86_64 {
    			sh.Entsize = 16
    		} else if elf.Machine(eh.Machine) == elf.EM_S390 {
    			sh.Entsize = 32
    		} else if elf.Machine(eh.Machine) == elf.EM_PPC64 {
    			// On ppc64, this is just a table of addresses
    			// filled by the dynamic linker
    			sh.Type = uint32(elf.SHT_NOBITS)
    
    			sh.Flags = uint64(elf.SHF_ALLOC + elf.SHF_WRITE)
    			sh.Entsize = 8
    		} else {
    			sh.Entsize = 4
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/windows/security_windows.go

    func (t Token) Close() error {
    	return CloseHandle(Handle(t))
    }
    
    // getInfo retrieves a specified type of information about an access token.
    func (t Token) getInfo(class uint32, initSize int) (unsafe.Pointer, error) {
    	n := uint32(initSize)
    	for {
    		b := make([]byte, n)
    		e := GetTokenInformation(t, class, &b[0], uint32(len(b)), &n)
    		if e == nil {
    			return unsafe.Pointer(&b[0]), nil
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  10. src/debug/elf/file_test.go

    			Link:      0xFF10,
    			Info:      0x02,
    			Addralign: 0x04,
    			Entsize:   0x10,
    		})
    		// .symtab_shndx
    		binary.Write(&buf, binary.LittleEndian, Section32{
    			Name:      0x0CF3AD,
    			Type:      uint32(SHT_SYMTAB_SHNDX),
    			Off:       0x13ED1C,
    			Size:      0x03FC28,
    			Link:      0xFF0E,
    			Addralign: 0x04,
    			Entsize:   0x04,
    		})
    		// .strtab
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:22:42 UTC 2023
    - 60.1K bytes
    - Viewed (0)
Back to top