Home
last modified time | relevance | path

Searched refs:math (Results 1 – 25 of 200) sorted by relevance

12345678

/freebsd/contrib/arm-optimized-routines/math/
H A DDir.mk25 $(error Experimental math only supported on aarch64)
29 math-src-dir := $(srcdir)/math
30 math-build-dir := build/math
32 math-lib-srcs := $(wildcard $(math-src-dir)/*.[cS])
33 math-lib-srcs += $(wildcard $(math-src-dir)/$(ARCH)/*.[cS])
36 math-lib-srcs += $(wildcard $(math-src-dir)/$(ARCH)/*/*.[cS])
42 math-lib-srcs += $(wildcard $(math-src-dir)/$(ARCH)/experimental/*/*.[cS])
44 math-lib-srcs += $(wildcard $(math-src-dir)/$(ARCH)/experimental/*.[cS])
48 math-lib-srcs := $(filter-out $(math-src-dir)/aarch64/experimental/%, $(math-lib-srcs))
51 math-test-srcs := \
[all …]
H A DREADME.contributors4 1. With the exception of math/aarch64/experimental/, most code in this
22 CONTRIBUTION GUIDELINES FOR math SUB-DIRECTORY
32 replacement for a standard math function), this should be tested
50 - Vector math code does not need to work in non-nearest rounding mode and error
64 - Common math code should be benchmarked on modern aarch64 microarchitectures
72 contraction should be on and math errno turned off so some builtins can be
79 does not apply to vector math code).
/freebsd/contrib/llvm-project/clang/lib/Tooling/Inclusions/Stdlib/
H A DCSymbolMap.inc80 SYMBOL(FP_INFINITE, None, <math.h>)
81 SYMBOL(FP_NAN, None, <math.h>)
82 SYMBOL(FP_NORNAL, None, <math.h>)
83 SYMBOL(FP_SUBNORMAL, None, <math.h>)
84 SYMBOL(FP_ZERO, None, <math.h>)
85 SYMBOL(HUGE_VAL, None, <math.h>)
86 SYMBOL(HUGE_VALF, None, <math.h>)
87 SYMBOL(HUGE_VALL, None, <math.h>)
89 SYMBOL(INFINITY, None, <math.h>)
144 SYMBOL(MATH_ERREXCEPT, None, <math.h>)
[all …]
H A DStdSymbolMap.inc280 SYMBOL(FP_FAST_FMA, None, <math.h>)
282 SYMBOL(FP_FAST_FMAF, None, <math.h>)
284 SYMBOL(FP_FAST_FMAL, None, <math.h>)
286 SYMBOL(FP_ILOGB0, None, <math.h>)
288 SYMBOL(FP_ILOGBNAN, None, <math.h>)
290 SYMBOL(FP_INFINITE, None, <math.h>)
292 SYMBOL(FP_NAN, None, <math.h>)
294 SYMBOL(FP_NORMAL, None, <math.h>)
296 SYMBOL(FP_SUBNORMAL, None, <math.h>)
298 SYMBOL(FP_ZERO, None, <math.h>)
[all …]
/freebsd/contrib/arm-optimized-routines/
H A Dconfig.mk.dist7 SUBS = math string networking
62 math-cflags =
63 math-ldlibs =
64 math-ulpflags =
65 math-testflags =
85 math-cflags += -DUSE_MPFR=$(USE_MPFR)
87 math-ldlibs += $(mpfr-libs) $(gmp-libs)
88 math-ulpflags += -m
91 #math-ulpflags = -q -f
92 #math-testflags = -nostatus
[all …]
H A DREADME20 math/ - math subproject sources for generic scalar
22 subdirectories of math/.
23 All math routines should meet the quality
24 requirements stated in math/README.contributors,
27 math/aarch64/ - math subproject AArch64-specific sources
29 math/aarch64/advsimd - AdvSIMD-specific math sources.
30 math/aarch64/experimental - Experimental math sources do not
32 math/README.contributors.
33 math/aarch64/sve - SVE-specific math sources.
34 math/include/ - math library public headers.
[all …]
/freebsd/contrib/lyaml/lib/lyaml/
H A Dimplicit.lua30 local floor = math.floor
54 end)(math.tointeger)
217 ['.inf'] = math.huge, ['.Inf'] = math.huge, ['.INF'] = math.huge,
218 ['+.inf'] = math.huge, ['+.Inf'] = math.huge, ['+.INF'] = math.huge,
219 ['-.inf'] = -math.huge, ['-.Inf'] = -math.huge, ['-.INF'] = -math.huge,
/freebsd/contrib/llvm-project/libcxx/modules/std.compat/
H A Dcmath.inc126 // [c.math.abs], absolute values
137 // [c.math.hypot3], three-dimensional hypotenuse
247 // [c.math.lerp], linear interpolation
250 // described in [sf.cmath], the std::lerp function overloads ([c.math.lerp])
253 // [c.math.fpclass], classification / comparison functions
H A Dcstdlib.inc58 // [c.math.rand], low-quality random number generation
62 // [c.math.abs], absolute values
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DBuiltins.td3607 def Atan2 : FPMathTemplate, LibBuiltin<"math.h"> {
3614 def Copysign : FPMathTemplate, LibBuiltin<"math.h"> {
3622 def Fabs : FPMathTemplate, LibBuiltin<"math.h"> {
3630 def Finite : FPMathTemplate, GNULibBuiltin<"math.h"> {
3637 def OSXFinite : FPMathTemplate, LibBuiltin<"math.h"> {
3643 def Fmod : FPMathTemplate, LibBuiltin<"math.h"> {
3650 def Frexp : FPMathTemplate, LibBuiltin<"math.h"> {
3657 def Sincos : FPMathTemplate, GNULibBuiltin<"math.h"> {
3670 def Ldexp : FPMathTemplate, LibBuiltin<"math.h"> {
3677 def Modf : FPMathTemplate, LibBuiltin<"math.h"> {
[all …]
/freebsd/usr.bin/sed/tests/
H A DMakefile14 ${PACKAGE}FILES+= math.sed
29 ${PACKAGE}FILES+= regress.math.out
/freebsd/contrib/llvm-project/libcxx/include/__cxx03/
H A Dmath.h300 # if __has_include_next(<math.h>)
301 # include_next <math.h>
517 # include_next <math.h>
/freebsd/contrib/llvm-project/libcxx/include/
H A Dmath.h303 # if __has_include_next(<math.h>)
304 # include_next <math.h>
512 # include_next <math.h>
/freebsd/contrib/bc/manuals/
H A Dbuild.md52 supported: extra math and history enabled, NLS (locale support) disabled, with
312 the generated code to do math with `long` types may be inefficient.
326 files that contain the help texts as well as the math libraries. By default,
391 To build the math library, use the following commands for the configure step:
571 or the `--disable-extra-math` option to `configure.sh`, as follows:
575 ./configure.sh --disable-extra-math
859 * `E`: Extra math disabled.
862 * `EH`: Extra math and History disabled.
863 * `EN`: Extra math and NLS disabled.
865 * `EHN`: Extra math, History, and NLS all disabled.
[all …]
/freebsd/libexec/nuageinit/
H A Dnuage.lua70 table.insert(result, string.sub(b, math.floor(a / 4) + 1, math.floor(a / 4) + 1))
71 …table.insert(result, string.sub(b, math.floor(a % 4 * 16 + bb / 16) + 1, math.floor(a % 4 * 16 + b…
73 …table.insert(result, string.sub(b, math.floor(bb % 16 * 4 + c / 64) + 1, math.floor(bb % 16 * 4 + …
78 table.insert(result, string.sub(b, math.floor(c % 64) + 1, math.floor(c % 64) + 1))
/freebsd/contrib/llvm-project/clang/lib/Headers/openmp_wrappers/
H A Dcomplex17 // We require std::math functions in the complex builtins below.
42 // got from libc++ which decomposes math functions, like `std::sin`, into
/freebsd/contrib/ntp/sntp/libevent/cmake/
H A DAddEventLibrary.cmake148 math(EXPR COMPATIBILITY_VERSION "${EVENT_ABI_LIBVERSION_CURRENT}+1")
149math(EXPR CURRENT_MINUS_AGE "${EVENT_ABI_LIBVERSION_CURRENT}-${EVENT_ABI_LIBVERSION_AGE}")
156math(EXPR CURRENT_MINUS_AGE "${EVENT_ABI_LIBVERSION_CURRENT}-${EVENT_ABI_LIBVERSION_AGE}")
/freebsd/contrib/libevent/cmake/
H A DAddEventLibrary.cmake148 math(EXPR COMPATIBILITY_VERSION "${EVENT_ABI_LIBVERSION_CURRENT}+1")
149math(EXPR CURRENT_MINUS_AGE "${EVENT_ABI_LIBVERSION_CURRENT}-${EVENT_ABI_LIBVERSION_AGE}")
156math(EXPR CURRENT_MINUS_AGE "${EVENT_ABI_LIBVERSION_CURRENT}-${EVENT_ABI_LIBVERSION_AGE}")
/freebsd/contrib/llvm-project/libcxx/modules/std/
H A Dcstdlib.cppm
H A Dcstdlib.inc58 // [c.math.rand], low-quality random number generation
62 // [c.math.abs], absolute values
/freebsd/contrib/libfido2/man/
H A DCMakeLists.txt289 math(EXPR MAN_ALIAS_MAX "${MAN_ALIAS_LEN} - 2")
336 math(EXPR j "${i} + 1")
376 math(EXPR j "${i} + 1")
397 math(EXPR j "${i} + 1")
414 math(EXPR j "${i} + 1")
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DScalarFuncs.def9 // This .def file creates mapping from standard IEEE math functions
11 // LLVM intrinsic math functions will be handled in PPCISelLowing to
/freebsd/lib/libnetbsd/
H A Dmath.h10 #include_next <math.h>
/freebsd/contrib/llvm-project/libc/shared/math/
H A Dldexpf.h18 using math::ldexpf;
H A Dfrexpf.h19 using math::frexpf;

12345678