Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 64 for free1 (0.1 sec)

  1. src/runtime/mheap.go

    type gcBitsHeader struct {
    	free uintptr // free is the index into bits of the next free byte.
    	next uintptr // *gcBits triggers recursive type bug. (issue 14620)
    }
    
    type gcBitsArena struct {
    	_ sys.NotInHeap
    	// gcBitsHeader // side step recursive type bug (issue 14620) by including fields by hand.
    	free uintptr // free is the index into bits of the next free byte; read/write atomically
    	next *gcBitsArena
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  2. src/runtime/mprof.go

    	// active.
    	future [3]memRecordCycle
    }
    
    // memRecordCycle
    type memRecordCycle struct {
    	allocs, frees           uintptr
    	alloc_bytes, free_bytes uintptr
    }
    
    // add accumulates b into a. It does not zero b.
    func (a *memRecordCycle) add(b *memRecordCycle) {
    	a.allocs += b.allocs
    	a.frees += b.frees
    	a.alloc_bytes += b.alloc_bytes
    	a.free_bytes += b.free_bytes
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  3. src/runtime/mgcscavenge.go

    	s.chunks[ci].store(sc)
    }
    
    // free updates metadata for chunk at index ci with the fact that
    // a free of npages occurred.
    //
    // free may only run concurrently with find.
    func (s *scavengeIndex) free(ci chunkIdx, page, npages uint) {
    	sc := s.chunks[ci].load()
    	sc.free(npages, s.gen)
    	s.chunks[ci].store(sc)
    
    	// Update scavenge search addresses.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  4. src/runtime/malloc.go

    // rounded to one of about 70 size classes, each of which
    // has its own free set of objects of exactly that size.
    // Any free page of memory can be split into a set of objects
    // of one size class, which are then managed using a free bitmap.
    //
    // The allocator's data structures are:
    //
    //	fixalloc: a free-list allocator for fixed-size off-heap objects,
    //		used to manage storage used by the allocator.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  5. src/runtime/mgc.go

    // sweeps small-object spans for the same object size until it frees at least
    // one object. When a goroutine needs to allocate large-object span from heap,
    // it sweeps spans until it frees at least that many pages into heap. There is
    // one case where this may not suffice: if a goroutine sweeps and frees two
    // nonadjacent one-page spans to the heap, it will allocate a new two-page
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/AbstractConfigurationAttributesResolveIntegrationTest.groovy

      - Variant 'bar':
          - Incompatible because this component declares attribute 'buildType' with value 'release' and the consumer needed attribute 'buildType' with value 'debug'
          - Other compatible attribute:
              - Doesn't say anything about flavor (required 'free')
      - Variant 'foo' declares attribute 'flavor' with value 'free':
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 17:30:11 UTC 2024
    - 64K bytes
    - Viewed (0)
  7. src/crypto/internal/nistec/p256_asm_ppc64le.s

    	//	VMALF  X0, YDIG, T0, ADD1  // T0 Free->ADD1
    	//	VMALF  X1, YDIG, T1, ADD2  // T1 Free->ADD2
    	VMULT_ADD(X0, YDIG, T0, ONE, ADD1, ADD1H)
    	VMULT_ADD(X1, YDIG, T1, ONE, ADD2, ADD2H)
    
    	VSPLTW $0, Y0, YDIG // VREPF
    
    	//	VMALF  X0, YDIG, ADD1H, ADD3
    	//	VMALF  X1, YDIG, ADD2H, ADD4
    	//	VMALHF X0, YDIG, ADD1H, ADD3H // ADD1H Free->ADD3H
    	//	VMALHF X1, YDIG, ADD2H, ADD4H // ADD2H Free->ADD4H , YDIG Free->ZER
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  8. src/runtime/mgcmark.go

    	n := uintptr(rootBlockBytes)
    	if off+n > n0 {
    		n = n0 - off
    	}
    
    	// Scan this shard.
    	scanblock(b, n, ptrmask, gcw, nil)
    	return int64(n)
    }
    
    // markrootFreeGStacks frees stacks of dead Gs.
    //
    // This does not free stacks of dead Gs cached on Ps, but having a few
    // cached stacks around isn't a problem.
    func markrootFreeGStacks() {
    	// Take list of dead Gs with stacks.
    	lock(&sched.gFree.lock)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  9. cmd/xl-storage-format-v2.go

    		freeFound bool
    	)
    	found := false
    	for _, ver := range x.versions {
    		header := &ver.header
    		// skip listing free-version unless explicitly requested via versionID
    		if header.FreeVersion() {
    			nonFreeVersions--
    			// remember the latest free version; will return this FileInfo if no non-free version remain
    			var freeVersion xlMetaV2Version
    			if inclFreeVers && !freeFound {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 29 19:14:09 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  10. src/crypto/internal/nistec/p256_asm_s390x.s

    	VMALF  X1, YDIG, ADD2H, ADD4
    	VMALHF X0, YDIG, ADD1H, ADD3H // ADD1H Free
    	VMALHF X1, YDIG, ADD2H, ADD4H // ADD2H Free
    
    	VZERO ZER
    	VL    32(CPOOL), SEL1
    	VPERM ZER, ADD1, SEL1, RED3 // [d0 0 0 d0]
    
    	VSLDB $12, ADD2, ADD1, T0 // ADD1 Free
    	VSLDB $12, ZER, ADD2, T1  // ADD2 Free
    
    	VACCQ  T0, ADD3, CAR1
    	VAQ    T0, ADD3, T0       // ADD3 Free
    	VACCCQ T1, ADD4, CAR1, T2
    	VACQ   T1, ADD4, CAR1, T1 // ADD4 Free
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 55.4K bytes
    - Viewed (0)
Back to top