Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 212 for zeroed (0.4 sec)

  1. src/runtime/slice.go

    // Added entries [oldLen, newLen) are not initialized by growslice
    // (although for pointer-containing element types, they are zeroed). They
    // must be initialized by the caller.
    // Trailing entries [newLen, newCap) are zeroed.
    //
    // growslice's odd calling convention makes the generated code that calls
    // this function simpler. In particular, it accepts and returns the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  2. src/runtime/string.go

    // The storage is not zeroed. Callers should use
    // b to set the string contents and then drop b.
    func rawstring(size int) (s string, b []byte) {
    	p := mallocgc(uintptr(size), nil, false)
    	return unsafe.String((*byte)(p), size), unsafe.Slice((*byte)(p), size)
    }
    
    // rawbyteslice allocates a new byte slice. The byte slice is not zeroed.
    func rawbyteslice(size int) (b []byte) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  3. src/runtime/profbuf.go

    // time of the first discarded write. The high 32 bits of 'overflow'
    // increment each time the low 32 bits transition from zero to non-zero
    // or vice versa. This sequence number avoids ABA problems in the use of
    // compare-and-swap to coordinate between reader and writer.
    // The overflowTime is only written when the low 32 bits of overflow are
    // zero, that is, only when there is no pending overflow entry, in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet_node_status.go

    		}
    	}
    	return requiresUpdate
    }
    
    // Zeros out extended resource capacity during reconciliation.
    func (kl *Kubelet) reconcileExtendedResource(initialNode, node *v1.Node) bool {
    	requiresUpdate := updateDefaultResources(initialNode, node)
    	// Check with the device manager to see if node has been recreated, in which case extended resources should be zeroed until they are available
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  5. src/crypto/internal/bigmod/nat.go

    func (x *Nat) IsZero() choice {
    	// Eliminate bounds checks in the loop.
    	size := len(x.limbs)
    	xLimbs := x.limbs[:size]
    
    	zero := yes
    	for i := 0; i < size; i++ {
    		zero &= ctEq(xLimbs[i], 0)
    	}
    	return zero
    }
    
    // cmpGeq returns 1 if x >= y, and 0 otherwise.
    //
    // Both operands must have the same announced length.
    func (x *Nat) cmpGeq(y *Nat) choice {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 24K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/staticinit/sched.go

    		return true
    	}
    	if rn.Class != ir.PEXTERN || rn.Sym().Pkg != types.LocalPkg {
    		return false
    	}
    	if rn.Defn == nil {
    		// No explicit initialization value. Probably zeroed but perhaps
    		// supplied externally and of unknown value.
    		return false
    	}
    	if rn.Defn.Op() != ir.OAS {
    		return false
    	}
    	if rn.Type().IsString() { // perhaps overwritten by cmd/link -X (#34675)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 17:16:14 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/link.go

    // those bulk allocators should always be used, rather than new(Prog).
    //
    // The other fields not yet mentioned are for use by the back ends and should
    // be left zeroed by creators of Prog lists.
    type Prog struct {
    	Ctxt     *Link     // linker context
    	Link     *Prog     // next Prog in linked list
    	From     Addr      // first source operand
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  8. src/cmd/go/internal/list/list.go

    error and instead processes the erroneous packages with the usual
    printing. Erroneous packages will have a non-empty ImportPath and
    a non-nil Error field; other information may or may not be missing
    (zeroed).
    
    The -export flag causes list to set the Export field to the name of a
    file containing up-to-date export information for the given package,
    and the BuildID field to the build ID of the compiled package.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 16:56:39 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  9. src/runtime/mgcsweep.go

    			// Only mark the span as needing zeroing if we've freed any
    			// objects, because a fresh span that had been allocated into,
    			// wasn't totally filled, but then swept, still has all of its
    			// free slots zeroed.
    			s.needzero = 1
    			stats := memstats.heapStats.acquire()
    			atomic.Xadd64(&stats.smallFreeCount[spc.sizeclass()], int64(nfreed))
    			memstats.heapStats.release()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:52:18 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  10. src/net/netip/netip.go

    func (ip Addr) appendTo6(ret []byte) []byte {
    	zeroStart, zeroEnd := uint8(255), uint8(255)
    	for i := uint8(0); i < 8; i++ {
    		j := i
    		for j < 8 && ip.v6u16(j) == 0 {
    			j++
    		}
    		if l := j - i; l >= 2 && l > zeroEnd-zeroStart {
    			zeroStart, zeroEnd = i, j
    		}
    	}
    
    	for i := uint8(0); i < 8; i++ {
    		if i == zeroStart {
    			ret = append(ret, ':', ':')
    			i = zeroEnd
    			if i >= 8 {
    				break
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 43.2K bytes
    - Viewed (0)
Back to top