Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 342 for zeroed (0.25 sec)

  1. src/runtime/time.go

    	//
    	// The wakeTime method implementation reads minWhenModified *before* minWhenHeap,
    	// so that if the minWhenModified is observed to be 0, that means the minWhenHeap that
    	// follows will include the information that was zeroed out of it.
    	//
    	// Originally Step 3 locked every timer, which made sure any timer update that was
    	// already in progress during Steps 1+2 completed and was observed by Step 3.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 14:36:24 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  2. src/runtime/arena.go

    	// Add zero bits up to the bitmap word boundary
    	if zeros > 0 {
    		z := ptrBits - h.valid
    		if z > zeros {
    			z = zeros
    		}
    		h.valid += z
    		zeros -= z
    	}
    
    	// Find word in bitmap that we're going to write.
    	bitmap := s.heapBits()
    	idx := h.offset / (ptrBits * goarch.PtrSize)
    
    	// Write remaining bits.
    	if h.valid != h.low {
    		m := uintptr(1)<<h.low - 1      // don't clear existing bits below "low"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:44:56 UTC 2024
    - 37.9K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/liveness/plive.go

    				// zero it in case that malloc causes a stack scan.
    				n.SetNeedzero(true)
    				livedefer.Set(int32(i))
    			}
    			if n.OpenDeferSlot() {
    				// Open-coded defer args slots must be live
    				// everywhere in a function, since a panic can
    				// occur (almost) anywhere. Because it is live
    				// everywhere, it must be zeroed on entry.
    				livedefer.Set(int32(i))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/walk/order.go

    			// For maps tmp is just one word so it hardly matters.
    			r := n.X
    			n.X = o.copyExpr(r)
    
    			// n.Prealloc is the temp for the iterator.
    			// MapIterType contains pointers and needs to be zeroed.
    			n.Prealloc = o.newTemp(reflectdata.MapIterType(), true)
    		}
    		n.Key = o.exprInPlace(n.Key)
    		n.Value = o.exprInPlace(n.Value)
    		if orderBody {
    			orderBlock(&n.Body, o.free)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 02:00:33 UTC 2024
    - 42.7K bytes
    - Viewed (0)
  5. src/runtime/runtime2.go

    	_Pdead
    )
    
    // Mutual exclusion locks.  In the uncontended case,
    // as fast as spin locks (just a few user-level instructions),
    // but on the contention path they sleep in the kernel.
    // A zeroed Mutex is unlocked (no need to initialize each lock).
    // Initialization is helpful for static lock ranking, but not required.
    type mutex struct {
    	// Empty struct if lock ranking is disabled, otherwise includes the lock rank
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 47.9K bytes
    - Viewed (0)
  6. src/cmd/link/internal/wasm/asm.go

    						segmentEnd++
    					}
    					// look for end of zeroes
    					zeroEnd = segmentEnd
    					for zeroEnd < dataLen && data[zeroEnd] == 0 {
    						zeroEnd++
    					}
    					// emit segment if omitting zeroes reduces the output size
    					if zeroEnd-segmentEnd >= segmentOverhead || zeroEnd == dataLen {
    						break
    					}
    					segmentEnd = zeroEnd
    				}
    			}
    
    			segments = append(segments, &dataSegment{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 16:17:48 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  7. src/hash/crc32/crc32_ppc64le.s

    	VXOR    V4,V12,V4
    	VXOR    V5,V13,V5
    	VXOR    V6,V14,V6
    	VXOR    V7,V15,V7
    
    #ifdef REFLECT
    	VSLDOI  $4,V0,zeroes,V0
    	VSLDOI  $4,V1,zeroes,V1
    	VSLDOI  $4,V2,zeroes,V2
    	VSLDOI  $4,V3,zeroes,V3
    	VSLDOI  $4,V4,zeroes,V4
    	VSLDOI  $4,V5,zeroes,V5
    	VSLDOI  $4,V6,zeroes,V6
    	VSLDOI  $4,V7,zeroes,V7
    #endif
    
    	LVX	(R4),V8
    	LVX	(R4+off16),V9
    	LVX	(R4+off32),V10
    	LVX	(R4+off48),V11
    	LVX	(R4+off64),V12
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 12:09:50 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/conversion_test.go

    				},
    			},
    		},
    		{
    			Name: "internal to v1, multiple versions",
    			In: &apiextensions.CustomResourceDefinition{
    				Spec: apiextensions.CustomResourceDefinitionSpec{
    					Versions: []apiextensions.CustomResourceDefinitionVersion{
    						{Name: "v1", Served: true, Storage: true},
    						{Name: "v2", Served: false, Storage: false},
    					},
    				},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  9. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/MavenModelMerger.java

                    merged.put(key, element);
                }
    
                for (Repository element : recessive) {
                    Object key = getRepositoryKey().apply(element);
                    if (!merged.containsKey(key)) {
                        merged.put(key, element);
                    }
                }
    
                builder.repositories(merged.values());
            }
        }
    
        @Override
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  10. maven-model-builder/src/main/java/org/apache/maven/model/profile/DefaultProfileInjector.java

                        PluginExecution existing = merged.get(key);
                        if (existing != null) {
                            element = mergePluginExecution(existing, element, sourceDominant, context);
                        }
                        merged.put(key, element);
                    }
    
                    builder.executions(merged.values());
                }
            }
    
            @Override
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Nov 07 08:20:52 UTC 2023
    - 10.1K bytes
    - Viewed (0)
Back to top