Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 301 for Xadd (0.06 sec)

  1. src/runtime/sema.go

    		if t0 == 0 {
    			t0 = cputicks()
    		}
    		s.acquiretime = t0
    	}
    	for {
    		lockWithRank(&root.lock, lockRankRoot)
    		// Add ourselves to nwait to disable "easy case" in semrelease.
    		root.nwait.Add(1)
    		// Check cansemacquire to avoid missed wakeup.
    		if cansemacquire(addr) {
    			root.nwait.Add(-1)
    			unlock(&root.lock)
    			break
    		}
    		// Any semrelease after the cansemacquire knows we're waiting
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 19K bytes
    - Viewed (0)
  2. src/runtime/mfinal.go

    					finptrmask[i] = finalizer1[i%len(finalizer1)]
    				}
    			}
    		}
    		block := finc
    		finc = block.next
    		block.next = finq
    		finq = block
    	}
    	f := &finq.fin[finq.cnt]
    	atomic.Xadd(&finq.cnt, +1) // Sync with markroots
    	f.fn = fn
    	f.nret = nret
    	f.fint = fint
    	f.ot = ot
    	f.arg = p
    	unlock(&finlock)
    	fingStatus.Or(fingWake)
    }
    
    //go:nowritebarrier
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 01:56:56 UTC 2024
    - 19K bytes
    - Viewed (0)
  3. src/runtime/export_test.go

    	StackScanWork   int64
    	GlobalsScanWork int64
    }
    
    func (c *GCController) Revise(d GCControllerReviseDelta) {
    	c.heapLive.Add(d.HeapLive)
    	c.heapScan.Add(d.HeapScan)
    	c.heapScanWork.Add(d.HeapScanWork)
    	c.stackScanWork.Add(d.StackScanWork)
    	c.globalsScanWork.Add(d.GlobalsScanWork)
    	c.revise()
    }
    
    func (c *GCController) EndCycle(bytesMarked uint64, assistTime, elapsed int64, gomaxprocs int) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:50:53 UTC 2024
    - 46.1K bytes
    - Viewed (0)
  4. src/internal/abi/type.go

    func (t *FuncType) Out(i int) *Type {
    	return (t.OutSlice()[i])
    }
    
    func (t *FuncType) InSlice() []*Type {
    	uadd := unsafe.Sizeof(*t)
    	if t.TFlag&TFlagUncommon != 0 {
    		uadd += unsafe.Sizeof(UncommonType{})
    	}
    	if t.InCount == 0 {
    		return nil
    	}
    	return (*[1 << 16]*Type)(addChecked(unsafe.Pointer(t), uadd, "t.inCount > 0"))[:t.InCount:t.InCount]
    }
    func (t *FuncType) OutSlice() []*Type {
    	outCount := uint16(t.NumOut())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 17 21:09:59 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  5. test/codegen/comparisons.go

    	// amd64:`TESTL`,-`ANDL`
    	c0 := a&b < 0
    	// arm:`CMN`,-`ADD`
    	// arm64:`CMNW`,-`ADD`
    	c1 := a+b < 0
    	// arm:`TEQ`,-`XOR`
    	c2 := a^b < 0
    	// arm64:`TST`,-`AND`
    	// amd64:`TESTQ`,-`ANDQ`
    	c3 := e&f < 0
    	// arm64:`CMN`,-`ADD`
    	c4 := e+f < 0
    	// not optimized to single CMNW/CMN due to further use of b+d
    	// arm64:`ADD`,-`CMNW`
    	// arm:`ADD`,-`CMN`
    	c5 := b+d == 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 19 16:31:02 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/ppc64/obj9.go

    	case ASUB:
    		if p.From.Type != obj.TYPE_CONST {
    			break
    		}
    		// Rewrite SUB $const,... into ADD $-const,...
    		p.From.Offset = -p.From.Offset
    		p.As = AADD
    		// This is now an ADD opcode, try simplifying it below.
    		fallthrough
    
    	// Rewrite ADD/OR/XOR/ANDCC $const,... forms into ADDIS/ORIS/XORIS/ANDISCC
    	case AADD:
    		// Don't rewrite if this is not adding a constant value, or is not an int32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 40.8K bytes
    - Viewed (0)
  7. pilot/pkg/config/kube/crdclient/client_test.go

    			}
    			return nil
    		})
    
    		stat := &v1alpha1.IstioStatus{
    			Conditions: []*v1alpha1.IstioCondition{
    				{
    					Type:    "Health",
    					Message: "heath is badd",
    				},
    			},
    		}
    
    		if _, err := store.UpdateStatus(config.Config{
    			Meta:   cfgMeta,
    			Spec:   config.Spec(pb),
    			Status: config.Status(stat),
    		}); err != nil {
    			t.Errorf("bad: %v", err)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 02:58:52 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  8. test/codegen/arithmetic.go

    	// ppc64x/power8:"ADDIS\t[$]19,", "ADD\t[$]-10617,"
    	out[2] = a + 1234567
    	// ppc64x/power10:"ADD\t[$]-1234567,"
    	// ppc64x/power9:"ADDIS\t[$]-19,", "ADD\t[$]10617,"
    	// ppc64x/power8:"ADDIS\t[$]-19,", "ADD\t[$]10617,"
    	out[3] = a - 1234567
    	// ppc64x/power10:"ADD\t[$]2147450879,"
    	// ppc64x/power9:"ADDIS\t[$]32767,", "ADD\t[$]32767,"
    	// ppc64x/power8:"ADDIS\t[$]32767,", "ADD\t[$]32767,"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:28:00 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/api/internal/artifacts/dsl/dependencies/DependenciesExtensionModule.java

        }
    
        /**
         * Add a dependency.
         *
         * @param files files to add as a dependency
         */
        public static void call(DependencyCollector self, FileCollection files) {
            self.add(files);
        }
    
        /**
         * Add a dependency.
         *
         * @param files files to add as a dependency
         * @param configuration an action to configure the dependency
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/tasks/DefaultTaskDependency.java

                    formats.add("A Task instance");
                    formats.add("A TaskReference instance");
                    formats.add("A Buildable instance");
                    formats.add("A TaskDependency instance");
                    formats.add("A Provider that represents a task output");
                    formats.add("A Provider instance that returns any of these types");
                    formats.add("A Closure instance that returns any of these types");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 12:20:43 UTC 2024
    - 10.7K bytes
    - Viewed (0)
Back to top