Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 248 for Lydian (0.2 sec)

  1. src/runtime/metrics/example_test.go

    		case metrics.KindFloat64:
    			fmt.Printf("%s: %f\n", name, value.Float64())
    		case metrics.KindFloat64Histogram:
    			// The histogram may be quite large, so let's just pull out
    			// a crude estimate for the median for the sake of this example.
    			fmt.Printf("%s: %f\n", name, medianBucket(value.Float64Histogram()))
    		case metrics.KindBad:
    			// This should never happen because all metrics are supported
    			// by construction.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 08 16:09:01 UTC 2021
    - 2.6K bytes
    - Viewed (0)
  2. src/math/sin.go

    	2.48015872888517045348e-5,   // 0x3efa01a019c844f5
    	-1.38888888888730564116e-3,  // 0xbf56c16c16c14f91
    	4.16666666666665929218e-2,   // 0x3fa555555555554b
    }
    
    // Cos returns the cosine of the radian argument x.
    //
    // Special cases are:
    //
    //	Cos(±Inf) = NaN
    //	Cos(NaN) = NaN
    func Cos(x float64) float64 {
    	if haveArchCos {
    		return archCos(x)
    	}
    	return cos(x)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 6.4K bytes
    - Viewed (0)
  3. src/math/atan.go

    // The go code is a version of the original C.
    //
    // atan.c
    // Inverse circular tangent (arctangent)
    //
    // SYNOPSIS:
    // double x, y, atan();
    // y = atan( x );
    //
    // DESCRIPTION:
    // Returns radian angle between -pi/2 and +pi/2 whose tangent is x.
    //
    // Range reduction is from three intervals into the interval from zero to 0.66.
    // The approximant uses a rational function of degree 4/5 of the form
    // x + x**3 P(x)/Q(x).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 3K bytes
    - Viewed (0)
  4. src/math/tan_s390x.s

    DATA ·tanxlim<> + 0(SB)/8, $0x432921fb54442d19
    GLOBL ·tanxlim<> + 0(SB), RODATA, $8
    DATA ·tanxadd<> + 0(SB)/8, $0xc338000000000000
    GLOBL ·tanxadd<> + 0(SB), RODATA, $8
    
    // Tan returns the tangent of the radian argument.
    //
    // Special cases are:
    //      Tan(±0) = ±0
    //      Tan(±Inf) = NaN
    //      Tan(NaN) = NaN
    // The algorithm used is minimax polynomial approximation using a table of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 27 23:30:00 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  5. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/CrossVersionResultsStore.java

                }
            }
        }
    
        private static BigDecimal getMedianInMillis(MeasuredOperationList operations) {
            Amount<Duration> median = operations.getTotalTime().getMedian();
            return median == null ? null : median.toUnits(Duration.MILLI_SECONDS).getValue();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 20K bytes
    - Viewed (0)
  6. src/runtime/env_plan9.go

    	if entryLen > len(buf) {
    		return
    	}
    	n, b := gbit16(buf[nameOffset:])
    	if n > len(b) {
    		return
    	}
    	name = b[:n]
    	rest = buf[entryLen:]
    	return
    }
    
    // gbit16 reads a 16-bit little-endian binary number from b and returns it
    // with the remaining slice of b.
    //
    //go:nosplit
    func gbit16(b []byte) (int, []byte) {
    	return int(b[0]) | int(b[1])<<8, b[2:]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 02:39:39 UTC 2022
    - 3K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/s390x/condition_code.go

    // are not part of the mask should be 0.
    //
    // Condition code masks represent the 4 possible values of
    // the 2-bit condition code as individual bits. Since IBM Z
    // is a big-endian platform bits are numbered from left to
    // right. The lowest value, 0, is represented by 8 (0b1000)
    // and the highest value, 3, is represented by 1 (0b0001).
    //
    // Note that condition code values have different semantics
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 08 01:46:31 UTC 2020
    - 3.2K bytes
    - Viewed (0)
  8. src/crypto/ecdh/nist.go

    	}
    	return acc == 0
    }
    
    // isLess returns whether a < b, where a and b are big-endian buffers of the
    // same length and shorter than 72 bytes.
    func isLess(a, b []byte) bool {
    	if len(a) != len(b) {
    		panic("crypto/ecdh: internal error: mismatched isLess inputs")
    	}
    
    	// Copy the values into a fixed-size preallocated little-endian buffer.
    	// 72 bytes is enough for every scalar in this package, and having a fixed
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  9. guava-tests/benchmark/com/google/common/math/QuantilesBenchmark.java

        // dataset which is already sorted or partially sorted is cheating.
        return datasets[i & 0xFF].clone();
      }
    
      @Benchmark
      double median(int reps) {
        double dummy = 0.0;
        for (int i = 0; i < reps; i++) {
          dummy += algorithm.singleQuantile(1, 2, dataset(i));
        }
        return dummy;
      }
    
      @Benchmark
      double percentile90(int reps) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  10. src/crypto/internal/bigmod/nat.go

    // Operations on this number are allowed to leak this length, but will not leak
    // any information about the values contained in those limbs.
    type Nat struct {
    	// limbs is little-endian in base 2^W with W = bits.UintSize.
    	limbs []uint
    }
    
    // preallocTarget is the size in bits of the numbers used to implement the most
    // common and most performant RSA key size. It's also enough to cover some of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 24K bytes
    - Viewed (0)
Back to top