Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 83 for free1 (0.05 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. tensorflow/c/experimental/filesystem/filesystem_interface.h

      ///
      /// An opaque transaction token is returned in `token`. Ownership of the token
      /// is in filesystem. Token will be freed in `end_transaction` call and any
      /// access to token after that is invalid.
      ///
      /// In case of error, plugins must set `status` to a value different than
      /// `TF_OK`, free memory allocated for `token` and return -1.
      ///
      /// The allocation and freeing of memory must happen via the functions sent to
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 17:36:54 UTC 2022
    - 53.1K bytes
    - Viewed (0)
  4. 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)
  5. pkg/kubelet/cm/memorymanager/memory_manager_test.go

    					MemoryMap: map[v1.ResourceName]*state.MemoryTable{
    						v1.ResourceMemory: {
    							Allocatable:    9 * gb,
    							Free:           7 * gb,
    							Reserved:       2 * gb,
    							SystemReserved: 1 * gb,
    							TotalMemSize:   10 * gb,
    						},
    						hugepages1Gi: {
    							Allocatable:    5 * gb,
    							Free:           3 * gb,
    							Reserved:       2 * gb,
    							SystemReserved: 0 * gb,
    							TotalMemSize:   5 * gb,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 05 13:01:40 UTC 2023
    - 70.2K bytes
    - Viewed (0)
  6. 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)
  7. src/cmd/compile/internal/ssa/regalloc.go

    						// or the input is dead, free the registers. This may make room
    						// for other inputs.
    						oldregs := s.values[v.Args[i.idx].ID].regs
    						if oldregs&^regspec.clobbers == 0 || !s.liveAfterCurrentInstruction(v.Args[i.idx]) {
    							s.freeRegs(oldregs &^ mask &^ s.nospill)
    							freed = true
    						}
    					}
    				}
    				if !freed {
    					break
    				}
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top