Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 229 for Subtract (0.12 sec)

  1. src/main/java/jcifs/smb/DfsImpl.java

                dri.fixupHost(server);
            }
    
            if ( log.isDebugEnabled() ) {
                log.debug("Adding key " + key + " to " + dr);
            }
    
            /*
             * Subtract the server and share from the pathConsumed so that
             * it reflects the part of the relative path consumed and not
             * the entire path.
             */
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Jan 05 13:07:29 UTC 2023
    - 29.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/syscall_aix.go

    		sa := new(SockaddrUnix)
    
    		// Some versions of AIX have a bug in getsockname (see IV78655).
    		// We can't rely on sa.Len being set correctly.
    		n := SizeofSockaddrUnix - 3 // subtract leading Family, Len, terminating NUL.
    		for i := 0; i < n; i++ {
    			if pp.Path[i] == 0 {
    				n = i
    				break
    			}
    		}
    		sa.Name = string(unsafe.Slice((*byte)(unsafe.Pointer(&pp.Path[0])), n))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  3. src/strconv/ftoaryu.go

    	du, fracu := du>>extra, du&extraMask
    	// Is it allowed to use 'du' as a result?
    	// It is always allowed when it is truncated, but also
    	// if it is exact and the original binary mantissa is even
    	// When disallowed, we can subtract 1.
    	uok := !du0 || fracu > 0
    	if du0 && fracu == 0 {
    		uok = mant&1 == 0
    	}
    	if !uok {
    		du--
    	}
    	// Is 'dc' the correctly rounded base 10 mantissa?
    	// The correct rounding might be dc+1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 09 00:28:56 UTC 2022
    - 15.7K bytes
    - Viewed (0)
  4. src/runtime/mgclimit.go

    			}
    		}
    		releasem(mp)
    	}
    
    	// Compute total GC time.
    	windowGCTime := assistTime
    	if l.gcEnabled {
    		windowGCTime += int64(float64(windowTotalTime) * gcBackgroundUtilization)
    	}
    
    	// Subtract out all idle time from the total time. Do this after computing
    	// GC time, because the background utilization is dependent on the *real*
    	// total time, not the total time after idle time is subtracted.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 22:07:41 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  5. src/internal/bytealg/index_ppc64x.s

    index33plus:
    	MOVD $0, (R0) // Case not implemented
    	RET           // Crash before return
    
    foundR25:
    	SRD  $3, R25   // Convert from bits to bytes
    	ADD  R25, R7   // Add to current string address
    	SUB  R3, R7    // Subtract from start of string
    	MOVD R7, R3    // Return byte where found
    	RET
    
    found:
    	SUB  R3, R7    // Return byte where found
    	MOVD R7, R3
    	RET
    
    TEXT indexbodyp9<>(SB), NOSPLIT|NOFRAME, $0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 16:47:45 UTC 2023
    - 31.6K bytes
    - Viewed (0)
  6. src/time/time.go

    			u1++
    		}
    
    		// Compute remainder by subtracting r<<k for decreasing k.
    		// Quotient parity is whether we subtract on last round.
    		d1 := uint64(d)
    		for d1>>63 != 1 {
    			d1 <<= 1
    		}
    		d0 := uint64(0)
    		for {
    			qmod2 = 0
    			if u1 > d1 || u1 == d1 && u0 >= d0 {
    				// subtract
    				qmod2 = 1
    				u0x, u0 = u0, u0-d0
    				if u0 > u0x {
    					u1--
    				}
    				u1 -= d1
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  7. src/encoding/asn1/marshal.go

    	if n == nil {
    		return nil, StructuralError{"empty integer"}
    	}
    
    	if n.Sign() < 0 {
    		// A negative number has to be converted to two's-complement
    		// form. So we'll invert and subtract 1. If the
    		// most-significant-bit isn't set then we'll need to pad the
    		// beginning with 0xff in order to keep the number negative.
    		nMinus1 := new(big.Int).Neg(n)
    		nMinus1.Sub(nMinus1, bigOne)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  8. test/chan/powser2.go

    		for !done {
    			<-Z.req
    			u := get(U)
    			if end(u) != 0 {
    				done = true
    			} else {
    				Z.dat <- mul(c, u)
    			}
    		}
    		Z.dat <- finis
    	}(c, U, Z)
    	return Z
    }
    
    // Subtract
    
    func Sub(U, V PS) PS {
    	return Add(U, Cmul(neg(one), V))
    }
    
    // Multiply a power series by the monomial x^n
    
    func Monmul(U PS, n int) PS {
    	Z := mkPS()
    	go func(n int, U PS, Z PS) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 25 22:22:20 UTC 2020
    - 13.3K bytes
    - Viewed (0)
  9. src/crypto/internal/nistec/p256_asm_ppc64le.s

    	XXPERMDI Y1H, Y1H, $2, Y1H
    	XXPERMDI Y1L, Y1L, $2, Y1L
    
    	LXVD2X (CPOOL)(R0), PL
    	LXVD2X (CPOOL)(R16), PH
    
    	VSUBCUQ  PL, Y1L, CAR1      // subtract part2 giving carry
    	VSUBUQM  PL, Y1L, T1L       // subtract part2 giving result
    	VSUBEUQM PH, Y1H, CAR1, T1H // subtract part1 using carry from part2
    
    	XXPERMDI T1H, T1H, $2, T1H
    	XXPERMDI T1L, T1L, $2, T1L
    
    	STXVD2X T1L, (R0+P1ptr)
    	STXVD2X T1H, (R16+P1ptr)
    	RET
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/wasm/ssa.go

        - jump to the location indicated by the block ID argument
          (which appears in local variable 0)
        - at block 0
          - check for Go stack overflow, call morestack if needed
          - subtract frame size from SP
          - note that arguments now start at SP+framesize+8
    
       Normal epilogue:
        - pop frame from Go stack
        - pop return address from Go stack
        - push 0 (type i32) on the Wasm stack
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 17.6K bytes
    - Viewed (0)
Back to top