Home
last modified time | relevance | path

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

12345678910>>...139

/external/python/cpython2/Lib/test/
Dtest_math.py6 import math
71 if math.isinf(expected) and got == expected:
143 self.ftest('pi', math.pi, 3.1415926)
144 self.ftest('e', math.e, 2.7182818)
147 self.assertRaises(TypeError, math.acos)
148 self.ftest('acos(-1)', math.acos(-1), math.pi)
149 self.ftest('acos(0)', math.acos(0), math.pi/2)
150 self.ftest('acos(1)', math.acos(1), 0)
151 self.assertRaises(ValueError, math.acos, INF)
152 self.assertRaises(ValueError, math.acos, NINF)
[all …]
/external/python/cpython3/Lib/test/
Dtest_math.py9 import math
65 if math.isnan(x) or math.isinf(x):
71 if math.isinf(x_next):
224 if math.isnan(expected) and math.isnan(got):
227 elif math.isinf(expected) or math.isinf(got):
271 self.ftest('pi', math.pi, 3.141592653589793238462643)
272 self.ftest('e', math.e, 2.718281828459045235360287)
273 self.assertEqual(math.tau, 2*math.pi)
276 self.assertRaises(TypeError, math.acos)
277 self.ftest('acos(-1)', math.acos(-1), math.pi)
[all …]
/external/arm-optimized-routines/math/
DDir.mk6 S := $(srcdir)/math
7 B := build/math
9 math-lib-srcs := $(wildcard $(S)/*.[cS])
10 math-test-srcs := \
15 math-test-host-srcs := $(wildcard $(S)/test/rtest/*.[cS])
17 math-includes := $(patsubst $(S)/%,build/%,$(wildcard $(S)/include/*.h))
19 math-libs := \
23 math-tools := \
30 math-host-tools := \
33 math-lib-objs := $(patsubst $(S)/%,$(B)/%.o,$(basename $(math-lib-srcs)))
[all …]
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/bigdec/
DDiagBigDecimalTest.java15 import java.math.BigInteger;
24 import android.icu.math.BigDecimal;
107 private static final android.icu.math.BigDecimal zero = android.icu.math.BigDecimal.ZERO;
108 private static final android.icu.math.BigDecimal one = android.icu.math.BigDecimal.ONE;
109 private static final android.icu.math.BigDecimal two = new android.icu.math.BigDecimal(2);
110 private static final android.icu.math.BigDecimal ten = android.icu.math.BigDecimal.TEN;
111 …private static final android.icu.math.BigDecimal tenlong = new android.icu.math.BigDecimal((long) …
114 private static final android.icu.math.MathContext mcdef = android.icu.math.MathContext.DEFAULT;
115 private static final android.icu.math.MathContext mc3 = new android.icu.math.MathContext(3);
116 private static final android.icu.math.MathContext mc6 = new android.icu.math.MathContext(6);
[all …]
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/bigdec/
DDiagBigDecimalTest.java14 import java.math.BigInteger;
23 import com.ibm.icu.math.BigDecimal;
104 private static final com.ibm.icu.math.BigDecimal zero = com.ibm.icu.math.BigDecimal.ZERO;
105 private static final com.ibm.icu.math.BigDecimal one = com.ibm.icu.math.BigDecimal.ONE;
106 private static final com.ibm.icu.math.BigDecimal two = new com.ibm.icu.math.BigDecimal(2);
107 private static final com.ibm.icu.math.BigDecimal ten = com.ibm.icu.math.BigDecimal.TEN;
108 …private static final com.ibm.icu.math.BigDecimal tenlong = new com.ibm.icu.math.BigDecimal((long) …
111 private static final com.ibm.icu.math.MathContext mcdef = com.ibm.icu.math.MathContext.DEFAULT;
112 private static final com.ibm.icu.math.MathContext mc3 = new com.ibm.icu.math.MathContext(3);
113 private static final com.ibm.icu.math.MathContext mc6 = new com.ibm.icu.math.MathContext(6);
[all …]
/external/guava/guava-gwt/test/com/google/common/math/
DIntMathTest_gwt.java16 package com.google.common.math;
22 com.google.common.math.IntMathTest testCase = new com.google.common.math.IntMathTest(); in testBinomial()
27 com.google.common.math.IntMathTest testCase = new com.google.common.math.IntMathTest(); in testBinomialNegative()
32 com.google.common.math.IntMathTest testCase = new com.google.common.math.IntMathTest(); in testBinomialOutside()
37 com.google.common.math.IntMathTest testCase = new com.google.common.math.IntMathTest(); in testCeilingPowerOfTwo()
42 com.google.common.math.IntMathTest testCase = new com.google.common.math.IntMathTest(); in testCeilingPowerOfTwoNegative()
47 com.google.common.math.IntMathTest testCase = new com.google.common.math.IntMathTest(); in testCeilingPowerOfTwoZero()
52 com.google.common.math.IntMathTest testCase = new com.google.common.math.IntMathTest(); in testCheckedAdd()
57 com.google.common.math.IntMathTest testCase = new com.google.common.math.IntMathTest(); in testCheckedMultiply()
62 com.google.common.math.IntMathTest testCase = new com.google.common.math.IntMathTest(); in testCheckedPow()
[all …]
DBigIntegerMathTest_gwt.java16 package com.google.common.math;
22 …com.google.common.math.BigIntegerMathTest testCase = new com.google.common.math.BigIntegerMathTest… in testBinomialOutside()
27 …com.google.common.math.BigIntegerMathTest testCase = new com.google.common.math.BigIntegerMathTest… in testBinomialSmall()
32 …com.google.common.math.BigIntegerMathTest testCase = new com.google.common.math.BigIntegerMathTest… in testCeilingPowerOfTwo()
37 …com.google.common.math.BigIntegerMathTest testCase = new com.google.common.math.BigIntegerMathTest… in testCeilingPowerOfTwoNegative()
42 …com.google.common.math.BigIntegerMathTest testCase = new com.google.common.math.BigIntegerMathTest… in testCeilingPowerOfTwoZero()
47 …com.google.common.math.BigIntegerMathTest testCase = new com.google.common.math.BigIntegerMathTest… in testFactorial()
52 …com.google.common.math.BigIntegerMathTest testCase = new com.google.common.math.BigIntegerMathTest… in testFactorial0()
57 …com.google.common.math.BigIntegerMathTest testCase = new com.google.common.math.BigIntegerMathTest… in testFactorialNegative()
62 …com.google.common.math.BigIntegerMathTest testCase = new com.google.common.math.BigIntegerMathTest… in testFloorPowerOfTwo()
[all …]
DLongMathTest_gwt.java16 package com.google.common.math;
22 com.google.common.math.LongMathTest testCase = new com.google.common.math.LongMathTest(); in testBinomial()
27 com.google.common.math.LongMathTest testCase = new com.google.common.math.LongMathTest(); in testBinomialNegative()
32 com.google.common.math.LongMathTest testCase = new com.google.common.math.LongMathTest(); in testBinomialOutside()
37 com.google.common.math.LongMathTest testCase = new com.google.common.math.LongMathTest(); in testCeilingPowerOfTwo()
42 com.google.common.math.LongMathTest testCase = new com.google.common.math.LongMathTest(); in testCeilingPowerOfTwoNegative()
47 com.google.common.math.LongMathTest testCase = new com.google.common.math.LongMathTest(); in testCeilingPowerOfTwoZero()
52 com.google.common.math.LongMathTest testCase = new com.google.common.math.LongMathTest(); in testCheckedMultiply()
57 com.google.common.math.LongMathTest testCase = new com.google.common.math.LongMathTest(); in testFloorPowerOfTwo()
62 com.google.common.math.LongMathTest testCase = new com.google.common.math.LongMathTest(); in testFloorPowerOfTwoNegative()
[all …]
/external/mesa3d/src/intel/tools/tests/gen7.5/
Dmath.asm1 math sqrt(8) g25<1>.xF g24<4>.xF null<4>F { align16 1Q }; label
2 math inv(8) g5<1>F g4<8,8,1>F null<8,8,1>F { align1 1Q }; label
3 math inv(16) g10<1>F g8<8,8,1>F null<8,8,1>F { align1 1H }; label
4 math intmod(8) g21<1>.xyUD g1<0>.xUD g1<0>.yzzzUD { align16 1Q }; label
5 math inv(8) g11<1>.xyzF g2<0>.xyzzF null<4>F { align16 1Q }; label
6 math sqrt(8) g9<1>F g8<8,8,1>F null<8,8,1>F { align1 1Q }; label
7 math sqrt(16) g15<1>F g13<8,8,1>F null<8,8,1>F { align1 1H }; label
8 math pow(8) g20<1>F g14<8,8,1>F g20<0,1,0>F { align1 1Q }; label
9 math pow(16) g26<1>F g24<8,8,1>F g28<0,1,0>F { align1 1H }; label
10 math intmod(8) g4<1>UD g2<0,1,0>UD g2.3<0,1,0>UD { align1 1Q }; label
[all …]
/external/mesa3d/src/intel/tools/tests/gen7/
Dmath.asm1 math inv(8) g6<1>F g2<0,1,0>F null<8,8,1>F { align1 1Q }; label
2 math inv(16) g10<1>F g2<0,1,0>F null<8,8,1>F { align1 1H }; label
3 math inv(8) g11<1>.xyzF g2<0>.xyzzF null<4>F { align16 1Q }; label
4 math sqrt(8) g13<1>.xF g12<4>.xF null<4>F { align16 1Q }; label
5 math sqrt(8) g9<1>F g8<8,8,1>F null<8,8,1>F { align1 1Q }; label
6 math sqrt(16) g6<1>F g4<8,8,1>F null<8,8,1>F { align1 1H }; label
7 math pow(8) g20<1>F g14<8,8,1>F g20<0,1,0>F { align1 1Q }; label
8 math pow(16) g21<1>F g19<8,8,1>F g25<0,1,0>F { align1 1H }; label
9 math intmod(8) g13<1>UD g6<0>UD g5.4<0>.zUD { align16 1Q }; label
10 math pow(8) g14<1>.xF g13<4>.xF g12<4>.xF { align16 1Q }; label
[all …]
/external/mesa3d/src/intel/tools/tests/gen9/
Dmath.asm1 math sqrt(16) g20<1>F g18<8,8,1>F null<8,8,1>F { align1 1H }; label
2 math inv(8) g95<1>F g94<8,8,1>F null<8,8,1>F { align1 1Q }; label
3 math inv(16) g10<1>F g8<8,8,1>F null<8,8,1>F { align1 1H }; label
4 math intmod(8) g3<1>UD g1<0,1,0>UD g1.2<0,1,0>UD { align1 1Q }; label
5 math intmod(8) g4<1>UD g1<0,1,0>UD g1.2<0,1,0>UD { align1 2Q }; label
6 math sqrt(8) g24<1>F g23<8,8,1>F null<8,8,1>F { align1 1Q }; label
7 math rsq(8) g5<1>F g2<8,8,1>F null<8,8,1>F { align1 1Q }; label
8 math pow(8) g11<1>F g10<8,8,1>F 0x42fc6666F /* 126.2F */ { align1 1Q }; label
9 math pow(16) g18<1>F g16<8,8,1>F 0x42fc6666F /* 126.2F */ { align1 1H }; label
10 math log(8) g7<1>F g6<8,8,1>F null<8,8,1>F { align1 1Q }; label
[all …]
/external/mesa3d/src/intel/tools/tests/gen8/
Dmath.asm1 math sqrt(16) g27<1>F g25<8,8,1>F null<8,8,1>F { align1 1H }; label
2 math inv(8) g95<1>F g94<8,8,1>F null<8,8,1>F { align1 1Q }; label
3 math inv(16) g10<1>F g8<8,8,1>F null<8,8,1>F { align1 1H }; label
4 math intmod(8) g3<1>UD g1<0,1,0>UD g1.2<0,1,0>UD { align1 1Q }; label
5 math intmod(8) g4<1>UD g1<0,1,0>UD g1.2<0,1,0>UD { align1 2Q }; label
6 math sqrt(8) g24<1>F g23<8,8,1>F null<8,8,1>F { align1 1Q }; label
7 math rsq(8) g5<1>F g2<8,8,1>F null<8,8,1>F { align1 1Q }; label
8 math pow(8) g20<1>F g14<8,8,1>F 0x42fc6666F /* 126.2F */ { align1 1Q }; label
9 math pow(16) g26<1>F g24<8,8,1>F 0x42fc6666F /* 126.2F */ { align1 1H }; label
10 math log(8) g7<1>F g6<8,8,1>F null<8,8,1>F { align1 1Q }; label
[all …]
/external/mesa3d/src/intel/tools/tests/gen6/
Dmath.asm1 math inv(8) g7<1>F g10<8,8,1>F null<8,8,1>F { align1 1Q }; label
2 math inv(8) g13<1>F g18<8,8,1>F null<8,8,1>F { align1 2Q }; label
3 math pow(8) g16<1>F g15<8,8,1>F g14<8,8,1>F { align1 1Q }; label
4 math pow(8) g24<1>F g22<8,8,1>F g20<8,8,1>F { align1 2Q }; label
5 math cos(8) g3<1>F g2<8,8,1>F null<8,8,1>F { align1 1Q }; label
6 math cos(8) g5<1>F g3<8,8,1>F null<8,8,1>F { align1 2Q }; label
7 math sqrt(8) g16<1>F g15<8,8,1>F null<8,8,1>F { align1 1Q }; label
8 math log(8) g21<1>F g20<8,8,1>F null<8,8,1>F { align1 1Q }; label
9 math sqrt(8) g11<1>F g3<8,8,1>F null<8,8,1>F { align1 2Q }; label
10 math log(8) g2<1>F g13<8,8,1>F null<8,8,1>F { align1 2Q }; label
[all …]
/external/icu/android_icu4j/src/main/java/android/icu/math/
DBigDecimal.java6 package android.icu.math;
8 import java.math.BigInteger;
235 …public static final android.icu.math.BigDecimal ZERO = new android.icu.math.BigDecimal((long) 0); …
246 …public static final android.icu.math.BigDecimal ONE = new android.icu.math.BigDecimal((long) 1); /…
257 public static final android.icu.math.BigDecimal TEN = new android.icu.math.BigDecimal(10);
265 public static final int ROUND_CEILING = android.icu.math.MathContext.ROUND_CEILING;
272 public static final int ROUND_DOWN = android.icu.math.MathContext.ROUND_DOWN;
279 public static final int ROUND_FLOOR = android.icu.math.MathContext.ROUND_FLOOR;
286 public static final int ROUND_HALF_DOWN = android.icu.math.MathContext.ROUND_HALF_DOWN;
293 public static final int ROUND_HALF_EVEN = android.icu.math.MathContext.ROUND_HALF_EVEN;
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/AMDGPU/
Dinline-attr.ll1 ; RUN: opt -mtriple=amdgcn--amdhsa -S -O3 -enable-unsafe-fp-math %s | FileCheck -check-prefix=GCN …
2 ; RUN: opt -mtriple=amdgcn--amdhsa -S -O3 -enable-no-nans-fp-math %s | FileCheck -check-prefix=GCN …
3 ; RUN: opt -mtriple=amdgcn--amdhsa -S -O3 -enable-no-infs-fp-math %s | FileCheck -check-prefix=GCN …
9 … readnone "less-precise-fpmad"="true" "no-infs-fp-math"="true" "no-nans-fp-math"="true" "unsafe-fp…
10 … nounwind "less-precise-fpmad"="true" "no-infs-fp-math"="true" "no-nans-fp-math"="true" "unsafe-fp…
12 ; NOINFS: attributes #0 = { norecurse nounwind readnone "no-infs-fp-math"="true" }
13 …ounwind "less-precise-fpmad"="false" "no-infs-fp-math"="true" "no-nans-fp-math"="false" "unsafe-fp…
15 ; NONANS: attributes #0 = { norecurse nounwind readnone "no-nans-fp-math"="true" }
16 …ounwind "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="true" "unsafe-fp…
33 … nounwind "less-precise-fpmad"="true" "no-infs-fp-math"="true" "no-nans-fp-math"="true" "unsafe-fp…
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/math/
DBigDecimal.java5 package com.ibm.icu.math;
7 import java.math.BigInteger;
236 …public static final com.ibm.icu.math.BigDecimal ZERO = new com.ibm.icu.math.BigDecimal((long) 0); …
248 …public static final com.ibm.icu.math.BigDecimal ONE = new com.ibm.icu.math.BigDecimal((long) 1); /…
260 public static final com.ibm.icu.math.BigDecimal TEN = new com.ibm.icu.math.BigDecimal(10);
269 public static final int ROUND_CEILING = com.ibm.icu.math.MathContext.ROUND_CEILING;
277 public static final int ROUND_DOWN = com.ibm.icu.math.MathContext.ROUND_DOWN;
285 public static final int ROUND_FLOOR = com.ibm.icu.math.MathContext.ROUND_FLOOR;
293 public static final int ROUND_HALF_DOWN = com.ibm.icu.math.MathContext.ROUND_HALF_DOWN;
301 public static final int ROUND_HALF_EVEN = com.ibm.icu.math.MathContext.ROUND_HALF_EVEN;
[all …]
/external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/src/com/ibm/icu/math/
DBigDecimal.java5 package com.ibm.icu.math;
7 import java.math.BigInteger;
234 …public static final com.ibm.icu.math.BigDecimal ZERO = new com.ibm.icu.math.BigDecimal((long) 0); …
246 …public static final com.ibm.icu.math.BigDecimal ONE = new com.ibm.icu.math.BigDecimal((long) 1); /…
258 public static final com.ibm.icu.math.BigDecimal TEN = new com.ibm.icu.math.BigDecimal(10);
267 public static final int ROUND_CEILING = com.ibm.icu.math.MathContext.ROUND_CEILING;
275 public static final int ROUND_DOWN = com.ibm.icu.math.MathContext.ROUND_DOWN;
283 public static final int ROUND_FLOOR = com.ibm.icu.math.MathContext.ROUND_FLOOR;
291 public static final int ROUND_HALF_DOWN = com.ibm.icu.math.MathContext.ROUND_HALF_DOWN;
299 public static final int ROUND_HALF_EVEN = com.ibm.icu.math.MathContext.ROUND_HALF_EVEN;
[all …]
/external/arm-optimized-routines/
Dconfig.mk.dist7 SUBS = math string
33 math-cflags =
34 math-ldlibs =
35 math-ulpflags =
36 math-testflags =
40 #math-ldlibs += -lmpfr -lgmp
41 #math-cflags += -DUSE_MPFR
44 math-cflags += -frounding-math -fexcess-precision=standard -fno-stack-protector
45 math-cflags += -ffp-contract=fast -fno-math-errno
48 #math-cflags += -ffp-contract=fast
[all …]
/external/clang/test/CodeGenOpenCL/
Drelaxed-fpmath.cl2 // RUN: %clang_cc1 %s -emit-llvm -cl-fast-relaxed-math -o - | FileCheck %s -check-prefix=FAST
3 // RUN: %clang_cc1 %s -emit-llvm -cl-finite-math-only -o - | FileCheck %s -check-prefix=FINITE
4 // RUN: %clang_cc1 %s -emit-llvm -cl-unsafe-math-optimizations -o - | FileCheck %s -check-prefix=UN…
19 // NORMAL: "no-infs-fp-math"="false"
20 // NORMAL: "no-nans-fp-math"="false"
21 // NORMAL: "unsafe-fp-math"="false"
23 // FAST: "no-infs-fp-math"="true"
24 // FAST: "no-nans-fp-math"="true"
25 // FAST: "unsafe-fp-math"="true"
27 // FINITE: "no-infs-fp-math"="true"
[all …]
/external/mesa3d/src/gallium/auxiliary/gallivm/
Df.cpp62 boost::math::ntl::RR exp2(const boost::math::ntl::RR& x) in exp2()
67 boost::math::ntl::RR log2(const boost::math::ntl::RR& x) in log2()
72 boost::math::ntl::RR f(const boost::math::ntl::RR& x, int variant) in f()
88 const boost::math::tools::polynomial<boost::math::ntl::RR>& n, in show_extra()
89 const boost::math::tools::polynomial<boost::math::ntl::RR>& d, in show_extra()
90 const boost::math::ntl::RR& x_offset, in show_extra()
91 const boost::math::ntl::RR& y_offset, in show_extra()
/external/guava/android/guava-tests/test/com/google/common/math/
DPairedStatsTest.java17 package com.google.common.math;
19 import static com.google.common.math.StatsTesting.ALLOWED_ERROR;
20 import static com.google.common.math.StatsTesting.ALL_MANY_VALUES;
21 import static com.google.common.math.StatsTesting.ALL_PAIRED_STATS;
22 import static com.google.common.math.StatsTesting.CONSTANT_VALUES_PAIRED_STATS;
23 import static com.google.common.math.StatsTesting.DUPLICATE_MANY_VALUES_PAIRED_STATS;
24 import static com.google.common.math.StatsTesting.EMPTY_PAIRED_STATS;
25 import static com.google.common.math.StatsTesting.EMPTY_STATS_ITERABLE;
26 import static com.google.common.math.StatsTesting.HORIZONTAL_VALUES_PAIRED_STATS;
27 import static com.google.common.math.StatsTesting.MANY_VALUES;
[all …]
/external/guava/guava-tests/test/com/google/common/math/
DPairedStatsTest.java17 package com.google.common.math;
19 import static com.google.common.math.StatsTesting.ALLOWED_ERROR;
20 import static com.google.common.math.StatsTesting.ALL_MANY_VALUES;
21 import static com.google.common.math.StatsTesting.ALL_PAIRED_STATS;
22 import static com.google.common.math.StatsTesting.CONSTANT_VALUES_PAIRED_STATS;
23 import static com.google.common.math.StatsTesting.DUPLICATE_MANY_VALUES_PAIRED_STATS;
24 import static com.google.common.math.StatsTesting.EMPTY_PAIRED_STATS;
25 import static com.google.common.math.StatsTesting.EMPTY_STATS_ITERABLE;
26 import static com.google.common.math.StatsTesting.HORIZONTAL_VALUES_PAIRED_STATS;
27 import static com.google.common.math.StatsTesting.MANY_VALUES;
[all …]
/external/tensorflow/tensorflow/python/training/
Drmsprop_test.py23 import math
329 1.0 - (0.1 * 2.0 / math.sqrt(0.901 + 1.0)),
330 2.0 - (0.1 * 2.0 / math.sqrt(0.901 + 1.0))
334 3.0 - (0.01 * 2.0 / math.sqrt(0.90001 + 1.0)),
335 4.0 - (0.01 * 2.0 / math.sqrt(0.90001 + 1.0))
349 1.0 - (0.1 * 2.0 / math.sqrt(0.901 + 1.0)) -
350 (0.1 * 2.0 / math.sqrt(0.901 * 0.9 + 0.001 + 1.0)),
351 2.0 - (0.1 * 2.0 / math.sqrt(0.901 + 1.0)) -
352 (0.1 * 2.0 / math.sqrt(0.901 * 0.9 + 0.001 + 1.0))
356 3.0 - (0.01 * 2.0 / math.sqrt(0.90001 + 1.0)) -
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/ARM/
Dclang-section.ll52math"="false" "denormal-fp-math"="preserve-sign" "disable-tail-calls"="false" "implicit-section-na…
53math"="false" "denormal-fp-math"="preserve-sign" "disable-tail-calls"="false" "implicit-section-na…
54math"="false" "denormal-fp-math"="preserve-sign" "disable-tail-calls"="false" "less-precise-fpmad"…
55math"="false" "denormal-fp-math"="preserve-sign" "disable-tail-calls"="false" "less-precise-fpmad"…
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/Mips/
Dmicromips-attr.ll23 "correctly-rounded-divide-sqrt-fp-math"="false" "disable-tail-calls"="false"
25 "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false"
26 "no-signed-zeros-fp-math"="false" "no-trapping-math"="false"
27 "stack-protector-buffer-size"="8" "unsafe-fp-math"="false"
33 "correctly-rounded-divide-sqrt-fp-math"="false" "disable-tail-calls"="false"
35 "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false"
36 "no-signed-zeros-fp-math"="false" "no-trapping-math"="false"
37 "stack-protector-buffer-size"="8" "unsafe-fp-math"="false"

12345678910>>...139