Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 716 for wbMove (0.23 sec)

  1. src/runtime/mbarrier.go

    	// bulkBarrierPreWrite.
    	bulkBarrierPreWrite(uintptr(dst), 0, typ.PtrBytes, typ)
    }
    
    // wbMove performs the write barrier operations necessary before
    // copying a region of memory from src to dst of type typ.
    // Does not actually do the copying.
    //
    //go:nowritebarrierrec
    //go:nosplit
    func wbMove(typ *_type, dst, src unsafe.Pointer) {
    	// This always copies a full value of type typ so it's safe to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/liveness/plive.go

    	// wbZero and wbCopy are write barriers and
    	// deeply non-preemptible. They are unsafe points and
    	// hence should not have liveness maps.
    	if sym, ok := v.Aux.(*ssa.AuxCall); ok && (sym.Fn == ir.Syms.WBZero || sym.Fn == ir.Syms.WBMove) {
    		return false
    	}
    	return true
    }
    
    // Initializes the sets for solving the live variables. Visits all the
    // instructions in each basic block to summarizes the information at each basic
    // block
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssagen/ssa.go

    	ir.Syms.Racewriterange = typecheck.LookupRuntimeFunc("racewriterange")
    	ir.Syms.TypeAssert = typecheck.LookupRuntimeFunc("typeAssert")
    	ir.Syms.WBZero = typecheck.LookupRuntimeFunc("wbZero")
    	ir.Syms.WBMove = typecheck.LookupRuntimeFunc("wbMove")
    	ir.Syms.X86HasPOPCNT = typecheck.LookupRuntimeVar("x86HasPOPCNT")       // bool
    	ir.Syms.X86HasSSE41 = typecheck.LookupRuntimeVar("x86HasSSE41")         // bool
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  4. pkg/util/coverage/fake_test_deps.go

    //nolint:unused // U1000 see comment above, we know it's unused normally.
    func (fakeTestDeps) StartCPUProfile(io.Writer) error {
    	return nil
    }
    
    //nolint:unused // U1000 see comment above, we know it's unused normally.
    func (fakeTestDeps) StopCPUProfile() {}
    
    //nolint:unused // U1000 see comment above, we know it's unused normally.
    func (fakeTestDeps) StartTestLog(io.Writer) {}
    
    //nolint:unused // U1000 see comment above, we know it's unused normally.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 15:31:22 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  5. src/math/big/float_test.go

    		out int64
    		acc Accuracy
    	}{
    		{"-Inf", math.MinInt64, Above},
    		{"-1e10000", math.MinInt64, Above},
    		{"-9223372036854775809", math.MinInt64, Above},
    		{"-9223372036854775808.000000000000000000001", math.MinInt64, Above},
    		{"-9223372036854775808", -9223372036854775808, Exact},
    		{"-9223372036854775807.000000000000000000001", -9223372036854775807, Above},
    		{"-9223372036854775807", -9223372036854775807, Exact},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 51.9K bytes
    - Viewed (0)
  6. src/runtime/mklockrank.go

      gscan,
      mspanSpecial,
      pollCache,
      sudog,
      timer
    # Anything that can have write barriers can acquire WB.
    # Above WB, we can have write barriers.
    < WB
    # Below WB is the write barrier implementation.
    < wbufSpans;
    
    # Span allocator
    stackLarge,
      stackpool,
      wbufSpans
    # Above mheap is anything that can call the span allocator.
    < mheap;
    # Below mheap is the span allocator implementation.
    #
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:47:01 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/schema/schema_v3b.fbs

    table FullyConnectedOptions {
      // Parameters for FullyConnected version 1 or above.
      fused_activation_function:ActivationFunctionType;
    
      // Parameters for FullyConnected version 2 or above.
      weights_format:FullyConnectedOptionsWeightsFormat = DEFAULT;
    
      // Parameters for FullyConnected version 5 or above.
      // If set to true, then the number of dimension is preserved. Furthermore,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 14:28:27 UTC 2024
    - 30K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/artifacts/dsl/ArtifactHandler.java

         * @return The artifact.
         */
        PublishArtifact add(String configurationName, Object artifactNotation);
    
        /**
         * Adds an artifact to the given configuration.
         *
         * @param configurationName The name of the configuration.
         * @param artifactNotation The artifact notation, in one of the notations described above.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 20:25:05 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/schema/schema.fbs

    table FullyConnectedOptions {
      // Parameters for FullyConnected version 1 or above.
      fused_activation_function:ActivationFunctionType;
    
      // Parameters for FullyConnected version 2 or above.
      weights_format:FullyConnectedOptionsWeightsFormat = DEFAULT;
    
      // Parameters for FullyConnected version 5 or above.
      // If set to true, then the number of dimension is preserved. Furthermore,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  10. apache-maven/src/main/appended-resources/licenses/BSD-2-Clause.txt

    modification, are permitted provided that the following conditions
    are met:
    
    1. Redistributions of source code must retain the above copyright
    notice, this list of conditions and the following disclaimer.
    
    2. Redistributions in binary form must reproduce the above copyright
    notice, this list of conditions and the following disclaimer in the
    documentation and/or other materials provided with the distribution.
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri May 17 19:14:22 UTC 2024
    - 1.2K bytes
    - Viewed (0)
Back to top