Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 155 for addF (1.31 sec)

  1. src/cmd/compile/internal/test/inl_test.go

    	// be inlinable. If they have no callers in their packages, they
    	// might not actually be inlined anywhere.
    	want := map[string][]string{
    		"runtime": {
    			"add",
    			"acquirem",
    			"add1",
    			"addb",
    			"adjustpanics",
    			"adjustpointer",
    			"alignDown",
    			"alignUp",
    			"bucketMask",
    			"bucketShift",
    			"chanbuf",
    			"evacuated",
    			"fastlog2",
    			"float64bits",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 04:07:57 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  2. test/func5.go

    var nothing func()
    
    func main() {
    	three(call(add, 1, 2))
    	three(call1(add, 1, 2))
    	f = add
    	three(call(f, 1, 2))
    	three(call1(f, 1, 2))
    	three(call(fn(), 1, 2))
    	three(call1(fn(), 1, 2))
    	three(call(func(a, b int) int { return a + b }, 1, 2))
    	three(call1(func(a, b int) int { return a + b }, 1, 2))
    
    	fc = addc
    	c := make(chan int)
    	go addc(1, 2, c)
    	three(<-c)
    	go fc(1, 2, c)
    	three(<-c)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Feb 19 03:28:53 UTC 2012
    - 1.5K bytes
    - Viewed (0)
  3. src/runtime/hash_test.go

    func newHashSet() *HashSet {
    	return &HashSet{list: make([]uintptr, 0, 1024)}
    }
    func (s *HashSet) add(h uintptr) {
    	s.list = append(s.list, h)
    }
    func (s *HashSet) addS(x string) {
    	s.add(StringHash(x, 0))
    }
    func (s *HashSet) addB(x []byte) {
    	s.add(BytesHash(x, 0))
    }
    func (s *HashSet) addS_seed(x string, seed uintptr) {
    	s.add(StringHash(x, seed))
    }
    func (s *HashSet) check(t *testing.T) {
    	list := s.list
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 17:50:18 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  4. src/testing/sub_test.go

    			{typ: add1, running: 3, waiting: 0, started: true},
    			{typ: add1, running: 3, waiting: 1, started: false},
    			{typ: add1, running: 3, waiting: 2, started: false},
    			{typ: add1, running: 3, waiting: 3, started: false},
    			{typ: done, running: 3, waiting: 2, started: true},
    			{typ: add1, running: 3, waiting: 3, started: false},
    			{typ: done, running: 3, waiting: 2, started: true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 21:27:08 UTC 2023
    - 23.8K bytes
    - Viewed (0)
  5. releasenotes/notes/add-pod-securitycontext.yaml

    Morven Cao <******@****.***> 1600974481 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 24 19:08:01 UTC 2020
    - 178 bytes
    - Viewed (0)
  6. releasenotes/notes/add-sni-host.yaml

    Brian Avery <******@****.***> 1597180858 -0400
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 11 21:20:58 UTC 2020
    - 177 bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/S390X.rules

      && uint64(d) <= uint64(c) && c-d == 0
      => (FlagGT)
    (Select1 (SUBC (MOVDconst [c]) (MOVDconst [d])))
      && uint64(d) <= uint64(c) && c-d != 0
      => (FlagOV)
    
    // add with carry
    (ADDE x y (FlagEQ)) => (ADDC x y)
    (ADDE x y (FlagLT)) => (ADDC x y)
    (ADDC x (MOVDconst [c])) && is16Bit(c) => (ADDCconst x [int16(c)])
    (Select0 (ADDCconst (MOVDconst [c]) [d])) => (MOVDconst [c+int64(d)])
    
    // subtract with borrow
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 74.3K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/plan9.go

    		case 8:
    			return "LR"
    		case 9:
    			return "CTR"
    		}
    		return fmt.Sprintf("SPR(%d)", int(arg))
    	case PCRel:
    		addr := pc + uint64(int64(arg))
    		s, base := symname(addr)
    		if s != "" && addr == base {
    			return fmt.Sprintf("%s(SB)", s)
    		}
    		if inst.Op == BL && s != "" && (addr-base) == 8 {
    			// When decoding an object built for PIE, a CALL targeting
    			// a global entry point will be adjusted to the local entry
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 10.9K bytes
    - Viewed (0)
  9. releasenotes/notes/add-overwrite-flag.yaml

    Jeremy L. Morris <******@****.***> 1717516806 -0400
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 16:00:06 UTC 2024
    - 255 bytes
    - Viewed (0)
  10. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/collections/DefaultConfigurableFileCollectionSpec.groovy

            from.clear()
    
            then:
            from.empty
            collection.from.empty
    
            when:
            def add1 = from.add('a')
            def add2 = from.add('b')
            def add3 = from.add('a')
    
            then:
            add1
            add2
            !add3
    
            and:
            from as List == ['a', 'b']
            collection.from as List == ['a', 'b']
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 17:09:50 UTC 2024
    - 53K bytes
    - Viewed (0)
Back to top