Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 81 for intSize (0.14 sec)

  1. src/sync/poolqueue.go

    	next, prev atomic.Pointer[poolChainElt]
    }
    
    func (c *poolChain) pushHead(val any) {
    	d := c.head
    	if d == nil {
    		// Initialize the chain.
    		const initSize = 8 // Must be a power of 2
    		d = new(poolChainElt)
    		d.vals = make([]eface, initSize)
    		c.head = d
    		c.tail.Store(d)
    	}
    
    	if d.pushHead(val) {
    		return
    	}
    
    	// The current dequeue is full. Allocate a new one of twice
    	// the size.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 18:12:29 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  2. src/text/template/funcs.go

    	}
    	if value.Type().AssignableTo(argType) {
    		return value, nil
    	}
    	if intLike(value.Kind()) && intLike(argType.Kind()) && value.Type().ConvertibleTo(argType) {
    		value = value.Convert(argType)
    		return value, nil
    	}
    	return reflect.Value{}, fmt.Errorf("value has type %s; should be %s", value.Type(), argType)
    }
    
    func intLike(typ reflect.Kind) bool {
    	switch typ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  3. src/cmd/link/internal/loadelf/ldelf.go

    			sect.flags = elf.SectionFlag(b.Flags)
    			sect.addr = b.Addr
    			sect.off = b.Off
    			sect.size = b.Size
    			sect.link = b.Link
    			sect.info = b.Info
    			sect.align = b.Addralign
    			sect.entsize = b.Entsize
    		} else {
    			var b elf.Section32
    
    			if err := binary.Read(f, e, &b); err != nil {
    				return errorf("malformed elf file: %v", err)
    			}
    			sect.nameoff = b.Name
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:12:12 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  4. api/go1.14.txt

    pkg runtime (freebsd-arm64), const GOOS = "freebsd"
    pkg runtime (freebsd-arm64-cgo), const GOARCH = "arm64"
    pkg runtime (freebsd-arm64-cgo), const GOOS = "freebsd"
    pkg strconv (freebsd-arm64), const IntSize = 64
    pkg strconv (freebsd-arm64-cgo), const IntSize = 64
    pkg syscall (freebsd-arm64), const AF_APPLETALK = 16
    pkg syscall (freebsd-arm64), const AF_APPLETALK ideal-int
    pkg syscall (freebsd-arm64), const AF_ARP = 35
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 20:31:46 UTC 2023
    - 508.9K bytes
    - Viewed (0)
  5. api/go1.16.txt

    pkg runtime (darwin-arm64), const GOOS = "darwin"
    pkg runtime (darwin-arm64-cgo), const GOARCH = "arm64"
    pkg runtime (darwin-arm64-cgo), const GOOS = "darwin"
    pkg strconv (darwin-arm64), const IntSize = 64
    pkg strconv (darwin-arm64-cgo), const IntSize = 64
    pkg syscall (darwin-arm64), const AF_APPLETALK = 16
    pkg syscall (darwin-arm64), const AF_APPLETALK ideal-int
    pkg syscall (darwin-arm64), const AF_CCITT = 10
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 02 16:30:41 UTC 2022
    - 479.2K bytes
    - Viewed (0)
  6. src/debug/elf/file.go

    				Info:      bo.Uint32(shdata[off+unsafe.Offsetof(sh.Info):]),
    				Addralign: uint64(bo.Uint32(shdata[off+unsafe.Offsetof(sh.Addralign):])),
    				Entsize:   uint64(bo.Uint32(shdata[off+unsafe.Offsetof(sh.Entsize):])),
    			}
    		case ELFCLASS64:
    			var sh Section64
    			names = append(names, bo.Uint32(shdata[off+unsafe.Offsetof(sh.Name):]))
    			s.SectionHeader = SectionHeader{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 23 16:49:58 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  7. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/btree/BTreePersistentIndexedCache.java

            private IndexRoot root;
    
            @Override
            protected byte getType() {
                return 0x77;
            }
    
            @Override
            protected int getSize() {
                return Block.INT_SIZE + Block.LONG_SIZE + (3 * Block.LONG_SIZE) * maxChildIndexEntries;
            }
    
            @Override
            public void read(DataInputStream instr) throws IOException {
                int count = instr.readInt();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 26.5K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/test/inl_test.go

    		// internal/runtime/atomic.Loaduintptr is only intrinsified on these platforms.
    		want["runtime"] = append(want["runtime"], "traceAcquire")
    	}
    	if bits.UintSize == 64 {
    		// mix is only defined on 64-bit architectures
    		want["runtime"] = append(want["runtime"], "mix")
    		// (*Bool).CompareAndSwap is just over budget on 32-bit systems (386, arm).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 04:07:57 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  9. api/go1.20.txt

    pkg runtime/cgo (freebsd-riscv64-cgo), type Handle uintptr #53466
    pkg runtime/cgo (freebsd-riscv64-cgo), type Incomplete struct #53466
    pkg strconv (freebsd-riscv64), const IntSize = 64 #53466
    pkg strconv (freebsd-riscv64-cgo), const IntSize = 64 #53466
    pkg syscall (freebsd-riscv64), const AF_APPLETALK = 16 #53466
    pkg syscall (freebsd-riscv64), const AF_APPLETALK ideal-int #53466
    pkg syscall (freebsd-riscv64), const AF_ARP = 35 #53466
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 21:23:32 UTC 2023
    - 602.6K bytes
    - Viewed (0)
  10. 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)
Back to top