Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 101 for underflow (0.16 sec)

  1. src/crypto/internal/mlkem768/mlkem768.go

    	//
    	// We can convert that to the following logic: add 1 if remainder > q/2,
    	// then add 1 again if remainder > q + q/2.
    	//
    	// Note that if remainder > x, then ⌊x⌋ - remainder underflows, and the top
    	// bit of the difference will be set.
    	quotient += (q/2 - remainder) >> 31 & 1
    	quotient += (q + q/2 - remainder) >> 31 & 1
    
    	// quotient might have overflowed at this point, so reduce it by masking.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 28.4K bytes
    - Viewed (0)
  2. guava/src/com/google/common/math/PairedStats.java

        checkState(xSumOfSquaresOfDeltas > 0.0);
        checkState(ySumOfSquaresOfDeltas > 0.0);
        // The product of two positive numbers can be zero if the multiplication underflowed. We
        // force a positive value by effectively rounding up to MIN_VALUE.
        double productOfSumsOfSquaresOfDeltas =
            ensurePositive(xSumOfSquaresOfDeltas * ySumOfSquaresOfDeltas);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 17:02:53 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  3. src/syscall/syscall_darwin.go

    	// It's not the full required semantics, but should handle the case
    	// of calling Getdirentries or ReadDirent repeatedly.
    	// It won't handle assigning the results of lseek to *basep, or handle
    	// the directory being edited underfoot.
    	skip, err := Seek(fd, 0, 1 /* SEEK_CUR */)
    	if err != nil {
    		return 0, err
    	}
    
    	// We need to duplicate the incoming file descriptor
    	// because the caller expects to retain control of it, but
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:50 UTC 2024
    - 11K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/math/PairedStats.java

        checkState(xSumOfSquaresOfDeltas > 0.0);
        checkState(ySumOfSquaresOfDeltas > 0.0);
        // The product of two positive numbers can be zero if the multiplication underflowed. We
        // force a positive value by effectively rounding up to MIN_VALUE.
        double productOfSumsOfSquaresOfDeltas =
            ensurePositive(xSumOfSquaresOfDeltas * ySumOfSquaresOfDeltas);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 17:02:53 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  5. src/html/template/template.go

    	if err := t.checkCanParse(); err != nil {
    		return nil, err
    	}
    
    	ret, err := t.text.Parse(text)
    	if err != nil {
    		return nil, err
    	}
    
    	// In general, all the named templates might have changed underfoot.
    	// Regardless, some new ones may have been defined.
    	// The template.Template set has been updated; update ours.
    	t.nameSpace.mu.Lock()
    	defer t.nameSpace.mu.Unlock()
    	for _, v := range ret.Templates() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 21:00:46 UTC 2024
    - 17K bytes
    - Viewed (0)
  6. src/math/rand/rand.go

    	// to a lockedSource.
    	// Either way we do the same thing.
    
    	r := New(new(lockedSource))
    	r.Seed(seed)
    
    	if !globalRandGenerator.CompareAndSwap(orig, r) {
    		// Something changed underfoot. Retry to be safe.
    		Seed(seed)
    	}
    }
    
    // Int63 returns a non-negative pseudo-random 63-bit integer as an int64
    // from the default [Source].
    func Int63() int64 { return globalRand().Int63() }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:09:08 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/mod/sumdb/client.go

    	if err != nil {
    		return 0, fmt.Errorf("reading tree: %v\ntree:\n%s", err, note.Text)
    	}
    
    	// Other lookups may be calling mergeLatest with other heads,
    	// so c.latest is changing underfoot. We don't want to hold the
    	// c.mu lock during tile fetches, so loop trying to update c.latest.
    	c.latestMu.Lock()
    	latest := c.latest
    	latestMsg := c.latestMsg
    	c.latestMu.Unlock()
    
    	for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 17:50:49 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  8. src/runtime/profbuf.go

    func (b *profBuf) incrementOverflow(now int64) {
    	for {
    		overflow := b.overflow.Load()
    
    		// Once we see b.overflow reach 0, it's stable: no one else is changing it underfoot.
    		// We need to set overflowTime if we're incrementing b.overflow from 0.
    		if uint32(overflow) == 0 {
    			// Store overflowTime first so it's always available when overflow != 0.
    			b.overflowTime.Store(uint64(now))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  9. src/cmd/go/internal/cache/cache.go

    	if _, err := file.Read(buf); err != nil {
    		f.Truncate(0)
    		return err
    	}
    	h.Write(buf)
    	sum := h.Sum(nil)
    	if !bytes.Equal(sum, out[:]) {
    		f.Truncate(0)
    		return fmt.Errorf("file content changed underfoot")
    	}
    
    	// Commit cache file entry.
    	if _, err := f.Write(buf); err != nil {
    		f.Truncate(0)
    		return err
    	}
    	if err := f.Close(); err != nil {
    		// Data might not have been written,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 14:19:39 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/syscall_darwin.go

    	// It's not the full required semantics, but should handle the case
    	// of calling Getdirentries or ReadDirent repeatedly.
    	// It won't handle assigning the results of lseek to *basep, or handle
    	// the directory being edited underfoot.
    	skip, err := Seek(fd, 0, 1 /* SEEK_CUR */)
    	if err != nil {
    		return 0, err
    	}
    
    	// We need to duplicate the incoming file descriptor
    	// because the caller expects to retain control of it, but
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 10 16:32:44 UTC 2023
    - 20.7K bytes
    - Viewed (0)
Back to top