Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 39 for zeroing (0.27 sec)

  1. src/runtime/malloc.go

    // already zeroed. Otherwise if needzero is true, objects are zeroed as
    // they are allocated. There are various benefits to delaying zeroing
    // this way:
    //
    //	1. Stack frame allocation can avoid zeroing altogether.
    //
    //	2. It exhibits better temporal locality, since the program is
    //	   probably about to write to the memory.
    //
    //	3. We don't zero pages that never get reused.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/AMD64.rules

    			(MOVOstoreconst [makeValAndOff(0,16)] destptr
    				(MOVOstoreconst [makeValAndOff(0,0)] destptr mem))))
    
    // Medium zeroing uses a duff device.
    (Zero [s] destptr mem)
    	&& s > 64 && s <= 1024 && s%16 == 0 && !config.noDuffDevice =>
    	(DUFFZERO [s] destptr mem)
    
    // Large zeroing uses REP STOSQ.
    (Zero [s] destptr mem)
    	&& (s > 1024 || (config.noDuffDevice && s > 64 || !config.useSSE && s > 32))
    	&& s%8 == 0 =>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 93.9K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/ARM64Ops.go

    				clobbers: buildReg("R16 R17 R20 R30"),
    			},
    			faultOnNilArg0: true,
    			unsafePoint:    true, // FP maintenance around DUFFZERO can be clobbered by interrupts
    		},
    
    		// large zeroing
    		// arg0 = address of memory to zero (in R16 aka arm64.REGRT1, changed as side effect)
    		// arg1 = address of the last 16-byte unit to zero
    		// arg2 = mem
    		// returns mem
    		//	STP.P	(ZR,ZR), 16(R16)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 58.8K bytes
    - Viewed (0)
  4. src/runtime/mgcscavenge.go

    		// and extended for more than just bytes (like nibbles
    		// and uint16s) by using an appropriate constant.
    		//
    		// To summarize the technique, quoting from that page:
    		// "[It] works by first zeroing the high bits of the [8]
    		// bytes in the word. Subsequently, it adds a number that
    		// will result in an overflow to the high bit of a byte if
    		// any of the low bits were initially set. Next the high
    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. src/runtime/mbitmap.go

    		typ = *(**_type)(unsafe.Pointer(addr))
    		addr += mallocHeaderSize
    	} else {
    		typ = span.largeType
    		if typ == nil {
    			// Allow a nil type here for delayed zeroing. See mallocgc.
    			return typePointers{}
    		}
    	}
    	gcdata := typ.GCData
    	return typePointers{elem: addr, addr: addr, mask: readUintptr(gcdata), typ: typ}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  6. src/cmd/cgo/out.go

    		// value of the argument type. This avoids including
    		// string.h for memset, and is also robust to C++
    		// types with constructors. Both GCC and LLVM optimize
    		// this into just zeroing _cgo_a.
    		fmt.Fprintf(fgcc, "\ttypedef %s %v _cgo_argtype;\n", ctype, p.packedAttribute())
    		fmt.Fprintf(fgcc, "\tstatic _cgo_argtype _cgo_zero;\n")
    		fmt.Fprintf(fgcc, "\t_cgo_argtype _cgo_a = _cgo_zero;\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  7. src/runtime/map.go

    	B := uint8(0)
    	for overLoadFactor(hint, B) {
    		B++
    	}
    	h.B = B
    
    	// allocate initial hash table
    	// if B == 0, the buckets field is allocated lazily later (in mapassign)
    	// If hint is large zeroing this memory could take a while.
    	if h.B != 0 {
    		var nextOverflow *bmap
    		h.buckets, nextOverflow = makeBucketArray(t, h.B, nil)
    		if nextOverflow != nil {
    			h.extra = new(mapextra)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  8. cmd/kube-controller-manager/app/options/options_test.go

    	"--cluster-name=k8s",
    	"--cluster-signing-cert-file=/cluster-signing-cert",
    	"--cluster-signing-key-file=/cluster-signing-key",
    	"--cluster-signing-kubelet-serving-cert-file=/cluster-signing-kubelet-serving/cert-file",
    	"--cluster-signing-kubelet-serving-key-file=/cluster-signing-kubelet-serving/key-file",
    	"--cluster-signing-kubelet-client-cert-file=/cluster-signing-kubelet-client/cert-file",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/stablehlo/python/integration_test/quantize_model_test.py

                    qc.RepresentativeDatasetConfig(
                        tf_record=qc.TfRecordFile(path=dataset_path)
                    )
                ]
            ),
            tf_saved_model=qc.TfSavedModelConfig(tags=[tag_constants.SERVING]),
            pipeline_config=qc.PipelineConfig(
                merge_fusion_with_dequantize=merge_fusion_with_dequantize
            ),
        )
        quantization.quantize_saved_model(
            self._input_saved_model_path,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  10. pkg/controller/endpointslice/endpointslice_controller_test.go

    					Port:     pointer.Int32(80),
    				},
    			},
    			expectedEndpoints: []discovery.Endpoint{
    				{
    					Conditions: discovery.EndpointConditions{
    						Ready:       pointer.Bool(true),
    						Serving:     pointer.Bool(true),
    						Terminating: pointer.Bool(false),
    					},
    					Addresses: []string{"10.0.0.1"},
    					TargetRef: &v1.ObjectReference{Kind: "Pod", Namespace: "default", Name: "pod0"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 65.5K bytes
    - Viewed (0)
Back to top