Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 64 for IEEE (0.04 sec)

  1. src/math/cmplx/asin.go

    //
    // casin(z) = -i casinh(iz)
    //
    // ACCURACY:
    //
    //                      Relative error:
    // arithmetic   domain     # trials      peak         rms
    //    DEC       -10,+10     10100       2.1e-15     3.4e-16
    //    IEEE      -10,+10     30000       2.2e-14     2.7e-15
    // Larger relative error can be observed for z near zero.
    // Also tested by csin(casin(z)) = z.
    
    // Asin returns the inverse sine of x.
    func Asin(x complex128) complex128 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 01 03:16:37 UTC 2020
    - 5.9K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/dcerpc/DcerpcMessage.java

            buf.enc_ndr_small(5); /* RPC version */
            buf.enc_ndr_small(0); /* minor version */
            buf.enc_ndr_small(ptype);
            buf.enc_ndr_small(flags);
            buf.enc_ndr_long(0x00000010); /* Little-endian / ASCII / IEEE */
            buf.enc_ndr_short(length);
            buf.enc_ndr_short(0); /* length of auth_value */
            buf.enc_ndr_long(call_id);
        }
        void decode_header(NdrBuffer buf) throws NdrException {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 4.2K bytes
    - Viewed (0)
  3. src/runtime/fastlog2.go

    // to scale linearly between them.
    func fastlog2(x float64) float64 {
    	const fastlogScaleBits = 20
    	const fastlogScaleRatio = 1.0 / (1 << fastlogScaleBits)
    
    	xBits := float64bits(x)
    	// Extract the exponent from the IEEE float64, and index a constant
    	// table with the first 10 bits from the mantissa.
    	xExp := int64((xBits>>52)&0x7FF) - 1023
    	xManIndex := (xBits >> (52 - fastlogNumBits)) % (1 << fastlogNumBits)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 15 22:45:17 UTC 2017
    - 1.2K bytes
    - Viewed (0)
  4. src/math/remainder.go

    //      integer nearest x/y (in half way cases, choose the even one).
    // Method :
    //      Based on Mod() returning  x - [x/y]chopped * y  exactly.
    
    // Remainder returns the IEEE 754 floating-point remainder of x/y.
    //
    // Special cases are:
    //
    //	Remainder(±Inf, y) = NaN
    //	Remainder(NaN, y) = NaN
    //	Remainder(x, 0) = NaN
    //	Remainder(x, ±Inf) = x
    //	Remainder(x, NaN) = NaN
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 2K bytes
    - Viewed (0)
  5. src/math/cmplx/tan.go

    //
    // ctan(z) = -i ctanh(iz).
    //
    // ACCURACY:
    //
    //                      Relative error:
    // arithmetic   domain     # trials      peak         rms
    //    DEC       -10,+10      5200       7.1e-17     1.6e-17
    //    IEEE      -10,+10     30000       7.2e-16     1.2e-16
    // Also tested by ctan * ccot = 1 and catan(ctan(z))  =  z.
    
    // Tan returns the tangent of x.
    func Tan(x complex128) complex128 {
    	switch re, im := real(x), imag(x); {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 01 03:16:37 UTC 2020
    - 8.5K bytes
    - Viewed (0)
  6. guava/src/com/google/common/math/BigDecimalMath.java

       * will return {@code Double.MAX_VALUE}, not {@code Double.POSITIVE_INFINITY}.
       *
       * <p>For the case of {@link RoundingMode#HALF_EVEN}, this implementation uses the IEEE 754
       * default rounding mode: if the two nearest representable values are equally near, the one with
       * the least significant bit zero is chosen. (In such cases, both of the nearest representable
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 23 18:45:50 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  7. src/hash/crc32/crc32_ppc64le.go

    }
    func archAvailableCastagnoli() bool {
    	return true
    }
    
    var archIeeeTable8 *slicing8Table
    
    func archInitIEEE() {
    	// We still use slicing-by-8 for small buffers.
    	archIeeeTable8 = slicingMakeTable(IEEE)
    }
    
    // archUpdateIEEE calculates the checksum of p using vectorizedIEEE.
    func archUpdateIEEE(crc uint32, p []byte) uint32 {
    
    	// Check if vector code should be used.  If not aligned, then handle those
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  8. src/net/mac.go

    	for i, b := range a {
    		if i > 0 {
    			buf = append(buf, ':')
    		}
    		buf = append(buf, hexDigit[b>>4])
    		buf = append(buf, hexDigit[b&0xF])
    	}
    	return string(buf)
    }
    
    // ParseMAC parses s as an IEEE 802 MAC-48, EUI-48, EUI-64, or a 20-octet
    // IP over InfiniBand link-layer address using one of the following formats:
    //
    //	00:00:5e:00:53:01
    //	02:00:5e:10:00:00:00:01
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  9. src/hash/crc32/crc32_s390x.go

    	return hasVX
    }
    
    var archIeeeTable8 *slicing8Table
    
    func archInitIEEE() {
    	if !hasVX {
    		panic("not available")
    	}
    	// We still use slicing-by-8 for small buffers.
    	archIeeeTable8 = slicingMakeTable(IEEE)
    }
    
    // archUpdateIEEE calculates the checksum of p using vectorizedIEEE.
    func archUpdateIEEE(crc uint32, p []byte) uint32 {
    	if !hasVX {
    		panic("not available")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 05 17:54:15 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  10. src/math/sin.go

    //      1  -  x**2 Q(x**2).
    //
    // ACCURACY:
    //
    //                      Relative error:
    // arithmetic   domain      # trials      peak         rms
    //    DEC       0, 10       150000       3.0e-17     7.8e-18
    //    IEEE -1.07e9,+1.07e9  130000       2.1e-16     5.4e-17
    //
    // Partial loss of accuracy begins to occur at x = 2**30 = 1.074e9.  The loss
    // is not gradual, but jumps suddenly to about 1 part in 10e7.  Results may
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 6.4K bytes
    - Viewed (0)
Back to top