Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,072 for incremented (0.21 sec)

  1. src/vendor/golang.org/x/crypto/chacha20/chacha_generic.go

    // and nonce. A *Cipher implements the cipher.Stream interface.
    type Cipher struct {
    	// The ChaCha20 state is 16 words: 4 constant, 8 of key, 1 of counter
    	// (incremented after each block), and 3 of nonce.
    	key     [8]uint32
    	counter uint32
    	nonce   [3]uint32
    
    	// The last len bytes of buf are leftover key stream bytes from the previous
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 00:11:50 UTC 2022
    - 13.9K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/ppc64/doc.go

    of the expected endian order. If 'BR' is used then zero extend is assumed.
    
    Memory references n(Ra) indicate the address in Ra + n. When used with an update form
    of an opcode, the value in Ra is incremented by n.
    
    Memory references (Ra+Rb) or (Ra)(Rb) indicate the address Ra + Rb, used by indexed
    loads or stores. Both forms are accepted. When used with an update then the base register
    is updated by the value in the index register.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 16:47:45 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  3. src/runtime/mstats.go

    // function.
    //
    //go:nosplit
    func (m *consistentHeapStats) acquire() *heapStatsDelta {
    	if pp := getg().m.p.ptr(); pp != nil {
    		seq := pp.statsSeq.Add(1)
    		if seq%2 == 0 {
    			// Should have been incremented to odd.
    			print("runtime: seq=", seq, "\n")
    			throw("bad sequence number")
    		}
    	} else {
    		lock(&m.noPLock)
    	}
    	gen := m.gen.Load() % 3
    	return &m.stats[gen]
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 21:03:13 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  4. src/index/suffixarray/sais2.go

    	// then the high bit of the inversion will be set,
    	// making it clearly not a valid length (it would be a negative one).
    	//
    	// cx holds the pre-inverted encoding (the packed incremented bytes).
    	cx := uint64(0) // byte-only
    
    	// This stanza (until the blank line) is the "LMS-substring iterator",
    	// described in placeLMS_8_64 above, with one line added to maintain cx.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  5. src/runtime/sema.go

    //
    // It must be kept in sync with the sync package.
    type notifyList struct {
    	// wait is the ticket number of the next waiter. It is atomically
    	// incremented outside the lock.
    	wait atomic.Uint32
    
    	// notify is the ticket number of the next waiter to be notified. It can
    	// be read outside the lock, but is only written to with lock held.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 19K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/telemetry/internal/counter/file.go

    )
    
    // A file is a counter file.
    type file struct {
    	// Linked list of all known counters.
    	// (Linked list insertion is easy to make lock-free,
    	// and we don't want the initial counters incremented
    	// by a program to cause significant contention.)
    	counters atomic.Pointer[Counter] // head of list
    	end      Counter                 // list ends at &end instead of nil
    
    	mu         sync.Mutex
    	namePrefix string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  7. src/runtime/netpoll.go

    	// PollDesc objects must be type-stable,
    	// because we can get ready notification from epoll/kqueue
    	// after the descriptor is closed/reused.
    	// Stale notifications are detected using seq variable,
    	// seq is incremented when deadlines are changed or descriptor is reused.
    }
    
    var (
    	netpollInitLock mutex
    	netpollInited   atomic.Uint32
    
    	pollcache      pollCache
    	netpollWaiters atomic.Uint32
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  8. src/runtime/extern.go

    	Currently, it is:
    		gc # @#s #%: #+#+# ms clock, #+#/#/#+# ms cpu, #->#-># MB, # MB goal, # MB stacks, #MB globals, # P
    	where the fields are as follows:
    		gc #         the GC number, incremented at each GC
    		@#s          time in seconds since program start
    		#%           percentage of time spent in GC since program start
    		#+...+#      wall-clock/CPU times for the phases of the GC
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  9. src/runtime/runtime2.go

    	locksHeld    [10]heldLockInfo
    }
    
    type p struct {
    	id          int32
    	status      uint32 // one of pidle/prunning/...
    	link        puintptr
    	schedtick   uint32     // incremented on every scheduler call
    	syscalltick uint32     // incremented on every system call
    	sysmontick  sysmontick // last tick observed by sysmon
    	m           muintptr   // back-link to associated m (nil if idle)
    	mcache      *mcache
    	pcache      pageCache
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 47.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/internal/passes/extract_outside_compilation.cc

    // call to this method).  Communication ops are added in both `src` and at
    // `insertion_point` using `compilation_key`, `device_ordinal` and
    // `communication_key_index` which is incremented when used. Communication ops
    // are added only when needed and at the location need.  There are checks to
    // ensure that duplicate communication between device and host is not added.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 68.3K bytes
    - Viewed (0)
Back to top