Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 92 for Loadint32 (0.16 sec)

  1. src/internal/runtime/atomic/atomic_mipsx.s

    	JMP	·Store(SB)
    
    TEXT ·Storeint64(SB),NOSPLIT,$0-12
    	JMP	·Store64(SB)
    
    TEXT ·Storeuintptr(SB),NOSPLIT,$0-8
    	JMP	·Store(SB)
    
    TEXT ·Xadduintptr(SB),NOSPLIT,$0-12
    	JMP	·Xadd(SB)
    
    TEXT ·Loadint32(SB),NOSPLIT,$0-8
    	JMP	·Load(SB)
    
    TEXT ·Loadint64(SB),NOSPLIT,$0-12
    	JMP	·Load64(SB)
    
    TEXT ·Xaddint32(SB),NOSPLIT,$0-12
    	JMP	·Xadd(SB)
    
    TEXT ·Xaddint64(SB),NOSPLIT,$0-20
    	JMP	·Xadd64(SB)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 21:29:34 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  2. internal/logger/target/http/http.go

    }
    
    func (h *Target) String() string {
    	return h.config.Name
    }
    
    // IsOnline returns true if the target is reachable using a cached value
    func (h *Target) IsOnline(ctx context.Context) bool {
    	return atomic.LoadInt32(&h.status) == statusOnline
    }
    
    // Stats returns the target statistics.
    func (h *Target) Stats() types.TargetStats {
    	h.logChMu.RLock()
    	queueLength := len(h.logCh)
    	h.logChMu.RUnlock()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Jun 02 03:03:39 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  3. src/sync/atomic/atomic_test.go

    		go func(me int) {
    			he := 1 - me
    			for i := int32(1); i < N; i++ {
    				StoreInt32(&X[me], i)
    				my := LoadInt32(&X[he])
    				StoreInt32(&ack[me][i%3], my)
    				for w := 1; LoadInt32(&ack[he][i%3]) == -1; w++ {
    					if w%1000 == 0 {
    						runtime.Gosched()
    					}
    				}
    				his := LoadInt32(&ack[he][i%3])
    				if (my != i && my != i-1) || (his != i && his != i-1) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 71.4K bytes
    - Viewed (0)
  4. src/internal/runtime/atomic/atomic_amd64.s

    // by the compiler (in src/cmd/compile/internal/gc/ssa.go).
    
    #include "textflag.h"
    
    TEXT ·Loaduintptr(SB), NOSPLIT, $0-16
    	JMP	·Load64(SB)
    
    TEXT ·Loaduint(SB), NOSPLIT, $0-16
    	JMP	·Load64(SB)
    
    TEXT ·Loadint32(SB), NOSPLIT, $0-12
    	JMP	·Load(SB)
    
    TEXT ·Loadint64(SB), NOSPLIT, $0-16
    	JMP	·Load64(SB)
    
    // bool Cas(int32 *val, int32 old, int32 new)
    // Atomically:
    //	if(*val == old){
    //		*val = new;
    //		return 1;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  5. src/time/sleep_test.go

    				if late > stats[j].max {
    					stats[j].max = late
    				}
    				atomic.AddInt32(&count, 1)
    				for atomic.LoadInt32(&count) < int32(timerCount) {
    					// spin until all timers fired
    				}
    				wg.Done()
    			})
    		}
    
    		for atomic.LoadInt32(&count) < int32(timerCount) {
    			// spin until all timers fired
    		}
    		wg.Wait()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 16:33:57 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/util/wait/wait_test.go

    		t.Fatalf("unexpected error %v", err)
    	}
    	fp.wg.Wait()
    	if invocations != 1 {
    		t.Errorf("Expected exactly one invocation, got %d", invocations)
    	}
    	used := atomic.LoadInt32(&fp.used)
    	if used != 1 {
    		t.Errorf("Expected exactly one tick, got %d", used)
    	}
    }
    
    func TestPollError(t *testing.T) {
    	expectedError := errors.New("Expected error")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 26 16:28:45 UTC 2024
    - 41.1K bytes
    - Viewed (0)
  7. src/sync/pool_test.go

    		if val == N-1 {
    			atomic.StoreInt32(&stop, 1)
    		}
    	}
    
    	// Start P-1 consumers.
    	for i := 1; i < P; i++ {
    		wg.Add(1)
    		go func() {
    			fail := 0
    			for atomic.LoadInt32(&stop) == 0 {
    				val, ok := d.PopTail()
    				if ok {
    					fail = 0
    					record(val.(int))
    				} else {
    					// Speed up the test by
    					// allowing the pusher to run.
    					if fail++; fail%100 == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 8K bytes
    - Viewed (0)
  8. src/internal/runtime/atomic/atomic_386.s

    	JMP	·Store(SB)
    
    TEXT ·Storeint64(SB), NOSPLIT, $0-12
    	JMP	·Store64(SB)
    
    TEXT ·Storeuintptr(SB), NOSPLIT, $0-8
    	JMP	·Store(SB)
    
    TEXT ·Xadduintptr(SB), NOSPLIT, $0-12
    	JMP	·Xadd(SB)
    
    TEXT ·Loadint32(SB), NOSPLIT, $0-8
    	JMP	·Load(SB)
    
    TEXT ·Loadint64(SB), NOSPLIT, $0-12
    	JMP	·Load64(SB)
    
    TEXT ·Xaddint32(SB), NOSPLIT, $0-12
    	JMP	·Xadd(SB)
    
    TEXT ·Xaddint64(SB), NOSPLIT, $0-20
    	JMP	·Xadd64(SB)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  9. src/internal/runtime/atomic/atomic_mips64x.s

    	JMP	·Store(SB)
    
    TEXT ·Storeint64(SB), NOSPLIT, $0-16
    	JMP	·Store64(SB)
    
    TEXT ·Storeuintptr(SB), NOSPLIT, $0-16
    	JMP	·Store64(SB)
    
    TEXT ·Xadduintptr(SB), NOSPLIT, $0-24
    	JMP	·Xadd64(SB)
    
    TEXT ·Loadint32(SB), NOSPLIT, $0-12
    	JMP	·Load(SB)
    
    TEXT ·Loadint64(SB), NOSPLIT, $0-16
    	JMP	·Load64(SB)
    
    TEXT ·Xaddint32(SB), NOSPLIT, $0-20
    	JMP	·Xadd(SB)
    
    TEXT ·Xaddint64(SB), NOSPLIT, $0-24
    	JMP	·Xadd64(SB)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 21:29:34 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  10. src/sync/atomic/type.go

    }
    
    // An Int32 is an atomic int32. The zero value is zero.
    type Int32 struct {
    	_ noCopy
    	v int32
    }
    
    // Load atomically loads and returns the value stored in x.
    func (x *Int32) Load() int32 { return LoadInt32(&x.v) }
    
    // Store atomically stores val into x.
    func (x *Int32) Store(val int32) { StoreInt32(&x.v, val) }
    
    // Swap atomically stores new into x and returns the previous value.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 8.5K bytes
    - Viewed (0)
Back to top