Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for mPi4 (0.05 sec)

  1. src/math/trig_reduce.go

    	// B ~ (z0, z1, z2), such that the product leading digit has the exponent -61.
    	// Note, exp >= -53 since x >= PI4 and exp < 971 for maximum float64.
    	digit, bitshift := uint(exp+61)/64, uint(exp+61)%64
    	z0 := (mPi4[digit] << bitshift) | (mPi4[digit+1] >> (64 - bitshift))
    	z1 := (mPi4[digit+1] << bitshift) | (mPi4[digit+2] >> (64 - bitshift))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 3.3K bytes
    - Viewed (0)
Back to top