Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for intrinsicCall (0.16 sec)

  1. src/cmd/compile/internal/ssagen/ssa.go

    		return false
    	}
    	name, ok := n.Fun.(*ir.Name)
    	if !ok {
    		return false
    	}
    	return findIntrinsic(name.Sym()) != nil
    }
    
    // intrinsicCall converts a call to a recognized intrinsic function into the intrinsic SSA operation.
    func (s *state) intrinsicCall(n *ir.CallExpr) *ssa.Value {
    	v := findIntrinsic(n.Fun.Sym())(s, n, s.intrinsicArgs(n))
    	if ssa.IntrinsicsDebug > 0 {
    		x := v
    		if x == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/cache/LongAdder.java

      }
    
      /**
       * Resets variables maintaining the sum to zero. This method may be a useful alternative to
       * creating a new adder, but is only effective if there are no concurrent updates. Because this
       * method is intrinsically racy, it should only be used when it is known that no threads are
       * concurrently updating.
       */
      public void reset() {
        internalReset(0L);
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 15 18:00:07 UTC 2021
    - 5.5K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/plugins/ExtraPropertiesExtension.java

     * <p>
     * Extra properties extensions allow new properties to be added to existing domain objects. They act like maps,
     * allowing the storage of arbitrary key/value pairs. All {@link ExtensionAware} Gradle domain objects intrinsically have an extension
     * named “{@value #EXTENSION_NAME}” of this type.
     * <p>
     * An important feature of extra properties extensions is that all of its properties are exposed for reading and writing via the {@link ExtensionAware}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:35:02 UTC 2017
    - 6.8K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/hash/LongAdder.java

      }
    
      /**
       * Resets variables maintaining the sum to zero. This method may be a useful alternative to
       * creating a new adder, but is only effective if there are no concurrent updates. Because this
       * method is intrinsically racy, it should only be used when it is known that no threads are
       * concurrently updating.
       */
      public void reset() {
        internalReset(0L);
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 20 18:43:59 UTC 2021
    - 5.4K bytes
    - Viewed (0)
  5. guava/src/com/google/common/hash/LongAdder.java

      }
    
      /**
       * Resets variables maintaining the sum to zero. This method may be a useful alternative to
       * creating a new adder, but is only effective if there are no concurrent updates. Because this
       * method is intrinsically racy, it should only be used when it is known that no threads are
       * concurrently updating.
       */
      public void reset() {
        internalReset(0L);
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 20 18:43:59 UTC 2021
    - 5.4K bytes
    - Viewed (0)
  6. guava/src/com/google/common/cache/LongAdder.java

      }
    
      /**
       * Resets variables maintaining the sum to zero. This method may be a useful alternative to
       * creating a new adder, but is only effective if there are no concurrent updates. Because this
       * method is intrinsically racy, it should only be used when it is known that no threads are
       * concurrently updating.
       */
      public void reset() {
        internalReset(0L);
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 15 18:00:07 UTC 2021
    - 5.5K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/ctrlflow/ctrlflow.go

    func hasReachableReturn(g *cfg.CFG) bool {
    	for _, b := range g.Blocks {
    		if b.Live && b.Return() != nil {
    			return true
    		}
    	}
    	return false
    }
    
    // isIntrinsicNoReturn reports whether a function intrinsically never
    // returns because it stops execution of the calling thread.
    // It is the base case in the recursion.
    func isIntrinsicNoReturn(fn *types.Func) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 09 01:28:01 UTC 2023
    - 6.6K bytes
    - Viewed (0)
Back to top