]> Cypherpunks repositories - gostls13.git/commit
math: add Cbrt and Sincos; x87 versions of Sincos, Frexp, Ldexp
authorCharles L. Dorian <cldorian@gmail.com>
Fri, 19 Feb 2010 07:33:15 +0000 (23:33 -0800)
committerRuss Cox <rsc@golang.org>
Fri, 19 Feb 2010 07:33:15 +0000 (23:33 -0800)
commitc3fa32c7478754021558e99b39e634dcda34ba48
tree44e37226ae6ae9c2e388e717e4e2aea3f8dbac3d
parent4af0a58ea90f84d31ff87a0d3e140b71419a22fa
math: add Cbrt and Sincos; x87 versions of Sincos, Frexp, Ldexp

Added special condition and benchmarks for Cbrt, Sincos. Took Frexp and Ldexp out of bits.go.

R=rsc
CC=golang-dev
https://golang.org/cl/206084
13 files changed:
src/pkg/math/Makefile
src/pkg/math/all_test.go
src/pkg/math/bits.go
src/pkg/math/cbrt.go [new file with mode: 0644]
src/pkg/math/frexp.go [new file with mode: 0644]
src/pkg/math/frexp_386.s [new file with mode: 0644]
src/pkg/math/frexp_decl.go [new file with mode: 0644]
src/pkg/math/ldexp.go [new file with mode: 0644]
src/pkg/math/ldexp_386.s [new file with mode: 0644]
src/pkg/math/ldexp_decl.go [new file with mode: 0644]
src/pkg/math/sincos.go [new file with mode: 0644]
src/pkg/math/sincos_386.s [new file with mode: 0644]
src/pkg/math/sincos_decl.go [new file with mode: 0644]