Home
last modified time | relevance | path

Searched refs:Min (Results 1 – 25 of 767) sorted by relevance

12345678910>>...31

/external/XNNPACK/test/
Df32-vmin.cc25 .Test(xnn_f32_vmin_ukernel__neon_x4, VBinOpMicrokernelTester::OpType::Min); in TEST()
33 .Test(xnn_f32_vmin_ukernel__neon_x4, VBinOpMicrokernelTester::OpType::Min); in TEST()
42 .Test(xnn_f32_vmin_ukernel__neon_x4, VBinOpMicrokernelTester::OpType::Min); in TEST()
51 .Test(xnn_f32_vmin_ukernel__neon_x4, VBinOpMicrokernelTester::OpType::Min); in TEST()
61 .Test(xnn_f32_vmin_ukernel__neon_x4, VBinOpMicrokernelTester::OpType::Min); in TEST()
71 .Test(xnn_f32_vmin_ukernel__neon_x4, VBinOpMicrokernelTester::OpType::Min); in TEST()
82 .Test(xnn_f32_vmin_ukernel__neon_x4, VBinOpMicrokernelTester::OpType::Min); in TEST()
93 .Test(xnn_f32_vmin_ukernel__neon_x8, VBinOpMicrokernelTester::OpType::Min); in TEST()
101 .Test(xnn_f32_vmin_ukernel__neon_x8, VBinOpMicrokernelTester::OpType::Min); in TEST()
110 .Test(xnn_f32_vmin_ukernel__neon_x8, VBinOpMicrokernelTester::OpType::Min); in TEST()
[all …]
Df16-vmin.cc25 .Test(xnn_f16_vmin_ukernel__neonfp16arith_x8, VBinOpMicrokernelTester::OpType::Min); in TEST()
33 .Test(xnn_f16_vmin_ukernel__neonfp16arith_x8, VBinOpMicrokernelTester::OpType::Min); in TEST()
42 .Test(xnn_f16_vmin_ukernel__neonfp16arith_x8, VBinOpMicrokernelTester::OpType::Min); in TEST()
51 .Test(xnn_f16_vmin_ukernel__neonfp16arith_x8, VBinOpMicrokernelTester::OpType::Min); in TEST()
61 .Test(xnn_f16_vmin_ukernel__neonfp16arith_x8, VBinOpMicrokernelTester::OpType::Min); in TEST()
71 .Test(xnn_f16_vmin_ukernel__neonfp16arith_x8, VBinOpMicrokernelTester::OpType::Min); in TEST()
82 .Test(xnn_f16_vmin_ukernel__neonfp16arith_x8, VBinOpMicrokernelTester::OpType::Min); in TEST()
93 .Test(xnn_f16_vmin_ukernel__neonfp16arith_x16, VBinOpMicrokernelTester::OpType::Min); in TEST()
101 .Test(xnn_f16_vmin_ukernel__neonfp16arith_x16, VBinOpMicrokernelTester::OpType::Min); in TEST()
110 .Test(xnn_f16_vmin_ukernel__neonfp16arith_x16, VBinOpMicrokernelTester::OpType::Min); in TEST()
[all …]
/external/oboe/samples/RhythmGame/third_party/glm/gtc/
Drandom.inl101 …GLM_FUNC_QUALIFIER static vecType<T, P> call(vecType<T, P> const & Min, vecType<T, P> const & Max);
107 …GLM_FUNC_QUALIFIER static vecType<int8, P> call(vecType<int8, P> const & Min, vecType<int8, P> con…
109 …pute_rand<uint8, P, vecType>::call() % vecType<uint8, P>(Max + static_cast<int8>(1) - Min))) + Min;
116 …GLM_FUNC_QUALIFIER static vecType<uint8, P> call(vecType<uint8, P> const & Min, vecType<uint8, P> …
118 return (compute_rand<uint8, P, vecType>::call() % (Max + static_cast<uint8>(1) - Min)) + Min;
125 …GLM_FUNC_QUALIFIER static vecType<int16, P> call(vecType<int16, P> const & Min, vecType<int16, P> …
127 …e_rand<uint16, P, vecType>::call() % vecType<uint16, P>(Max + static_cast<int16>(1) - Min))) + Min;
134 …GLM_FUNC_QUALIFIER static vecType<uint16, P> call(vecType<uint16, P> const & Min, vecType<uint16, …
136 return (compute_rand<uint16, P, vecType>::call() % (Max + static_cast<uint16>(1) - Min)) + Min;
143 …GLM_FUNC_QUALIFIER static vecType<int32, P> call(vecType<int32, P> const & Min, vecType<int32, P> …
[all …]
/external/llvm-project/clang/lib/Basic/Targets/
DOSTargets.cpp51 unsigned Maj, Min, Rev; in getDarwinDefines() local
53 Triple.getMacOSXVersion(Maj, Min, Rev); in getDarwinDefines()
56 Triple.getOSVersion(Maj, Min, Rev); in getDarwinDefines()
64 PlatformMinVersion = VersionTuple(Maj, Min, Rev); in getDarwinDefines()
70 assert(Maj < 100 && Min < 100 && Rev < 100 && "Invalid version!"); in getDarwinDefines()
74 Str[1] = '0' + (Min / 10); in getDarwinDefines()
75 Str[2] = '0' + (Min % 10); in getDarwinDefines()
83 Str[2] = '0' + (Min / 10); in getDarwinDefines()
84 Str[3] = '0' + (Min % 10); in getDarwinDefines()
96 assert(Maj < 10 && Min < 100 && Rev < 100 && "Invalid version!"); in getDarwinDefines()
[all …]
/external/libchrome/base/task/sequence_manager/
Dintrusive_heap_unittest.cc75 TEST_F(IntrusiveHeapTest, Min) { in TEST_F() argument
89 EXPECT_EQ(2, heap.Min().key); in TEST_F()
99 EXPECT_EQ(0, heap.Min().key); in TEST_F()
109 EXPECT_EQ(1, heap.Min().key); in TEST_F()
173 EXPECT_EQ(i, heap.Min().key); in TEST_F()
196 EXPECT_EQ(11, heap.Min().key); in TEST_F()
198 EXPECT_EQ(13, heap.Min().key); in TEST_F()
200 EXPECT_EQ(14, heap.Min().key); in TEST_F()
202 EXPECT_EQ(15, heap.Min().key); in TEST_F()
213 EXPECT_EQ(1, heap.Min().key); in TEST_F()
[all …]
/external/libcxx/test/std/numerics/rand/rand.adapt/rand.adapt.ibits/
Dresult_type.pass.cpp24 template <class UIntType, UIntType Min, UIntType Max>
34 static_assert(Min < Max, "rand1 invalid parameters");
39 static const result_type _Min = Min;
43 static TEST_CONSTEXPR result_type min() {return Min;} in min()
46 explicit rand1(result_type sd = Min) : x_(sd) in rand1()
48 if (x_ < Min) in rand1()
49 x_ = Min; in rand1()
60 x_ = Min; in operator ()()
Deval.pass.cpp22 template <class UIntType, UIntType Min, UIntType Max>
32 static_assert(Min < Max, "rand1 invalid parameters");
37 static const result_type _Min = Min;
41 static TEST_CONSTEXPR result_type min() {return Min;} in min()
44 explicit rand1(result_type sd = Min) : x_(sd) in rand1()
56 x_ = Min; in operator ()()
/external/libcxx/test/std/numerics/rand/rand.adapt/rand.adapt.shuf/
Dresult_type.pass.cpp24 template <class UIntType, UIntType Min, UIntType Max>
34 static_assert(Min < Max, "rand1 invalid parameters");
39 static const result_type _Min = Min;
43 static TEST_CONSTEXPR result_type min() {return Min;} in min()
46 explicit rand1(result_type sd = Min) : x_(sd) in rand1()
48 if (x_ < Min) in rand1()
49 x_ = Min; in rand1()
60 x_ = Min; in operator ()()
Deval.pass.cpp22 template <class UIntType, UIntType Min, UIntType Max>
32 static_assert(Min < Max, "rand1 invalid parameters");
37 static const result_type _Min = Min;
41 static TEST_CONSTEXPR result_type min() {return Min;} in min()
44 explicit rand1(result_type sd = Min) : x_(sd) in rand1()
56 x_ = Min; in operator ()()
/external/llvm-project/libcxx/test/std/numerics/rand/rand.adapt/rand.adapt.shuf/
Dresult_type.pass.cpp23 template <class UIntType, UIntType Min, UIntType Max>
33 static_assert(Min < Max, "rand1 invalid parameters");
38 static const result_type _Min = Min;
42 static TEST_CONSTEXPR result_type min() {return Min;} in min()
45 explicit rand1(result_type sd = Min) : x_(sd) in rand1()
47 if (x_ < Min) in rand1()
48 x_ = Min; in rand1()
59 x_ = Min; in operator ()()
Deval.pass.cpp21 template <class UIntType, UIntType Min, UIntType Max>
31 static_assert(Min < Max, "rand1 invalid parameters");
36 static const result_type _Min = Min;
40 static TEST_CONSTEXPR result_type min() {return Min;} in min()
43 explicit rand1(result_type sd = Min) : x_(sd) in rand1()
55 x_ = Min; in operator ()()
/external/llvm-project/libcxx/test/std/numerics/rand/rand.adapt/rand.adapt.ibits/
Dresult_type.pass.cpp23 template <class UIntType, UIntType Min, UIntType Max>
33 static_assert(Min < Max, "rand1 invalid parameters");
38 static const result_type _Min = Min;
42 static TEST_CONSTEXPR result_type min() {return Min;} in min()
45 explicit rand1(result_type sd = Min) : x_(sd) in rand1()
47 if (x_ < Min) in rand1()
48 x_ = Min; in rand1()
59 x_ = Min; in operator ()()
Deval.pass.cpp21 template <class UIntType, UIntType Min, UIntType Max>
31 static_assert(Min < Max, "rand1 invalid parameters");
36 static const result_type _Min = Min;
40 static TEST_CONSTEXPR result_type min() {return Min;} in min()
43 explicit rand1(result_type sd = Min) : x_(sd) in rand1()
55 x_ = Min; in operator ()()
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/rank/
DMin.java40 public class Min extends AbstractStorelessUnivariateStatistic implements Serializable { class
54 public Min() { in Min() method in Min
65 public Min(Min original) { in Min() method in Min
144 public Min copy() { in copy()
145 Min result = new Min(); in copy()
158 public static void copy(Min source, Min dest) { in copy()
/external/llvm-project/llvm/unittests/Support/
DCheckedArithmeticTest.cpp10 const int64_t Min = std::numeric_limits<int64_t>::min(); in TEST() local
12 EXPECT_EQ(checkedAdd<int64_t>(Min, -1), None); in TEST()
19 const int16_t Min = std::numeric_limits<int16_t>::min(); in TEST() local
21 EXPECT_EQ(checkedAdd<int16_t>(Min, -1), None); in TEST()
28 const int64_t Min = std::numeric_limits<int64_t>::min(); in TEST() local
31 EXPECT_EQ(checkedMul<int64_t>(Min, 2), None); in TEST()
37 const int64_t Min = std::numeric_limits<int64_t>::min(); in TEST() local
40 EXPECT_EQ(checkedMulAdd<int64_t>(1, -1, Min), None); in TEST()
46 const int16_t Min = std::numeric_limits<int16_t>::min(); in TEST() local
49 EXPECT_EQ(checkedMul<int16_t>(Min, 2), None); in TEST()
[all …]
/external/vboot_reference/tests/
Dutility_tests.c34 TEST_EQ(Min(1, 2), 1, "Min 1"); in MacrosTest()
35 TEST_EQ(Min(4, 3), 3, "Min 2"); in MacrosTest()
36 TEST_EQ(Min(5, 5), 5, "Min 5"); in MacrosTest()
37 TEST_EQ(Min(a, b), b, "Min uint64 1"); in MacrosTest()
38 TEST_EQ(Min(b, a), b, "Min uint64 2"); in MacrosTest()
39 TEST_EQ(Min(b, b), b, "Min uint64 same"); in MacrosTest()
/external/llvm-project/llvm/tools/llvm-xray/
Dxray-graph.h44 double Min; member
168 return {A.Count + B.Count, A.Min + B.Min, A.Median + B.Median,
177 return {A.Count - B.Count, A.Min - B.Min, A.Median - B.Median,
187 A.Min / B,
199 A.Min * B,
216 return {A.Count * B.Count, A.Min * B.Min, A.Median * B.Median,
224 return {A.Count / B.Count, A.Min / B.Min, A.Median / B.Median,
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/PBQP/
DReductionRules.h50 PBQPNum Min = ECosts[0][j] + XCosts[0]; in applyR1() local
53 if (C < Min) in applyR1()
54 Min = C; in applyR1()
56 YCosts[j] += Min; in applyR1()
60 PBQPNum Min = ECosts[i][0] + XCosts[0]; in applyR1() local
63 if (C < Min) in applyR1()
64 Min = C; in applyR1()
66 YCosts[i] += Min; in applyR1()
112 PBQPNum Min = (*YXECosts)[i][0] + (*ZXECosts)[j][0] + XCosts[0]; in applyR2() local
115 if (C < Min) { in applyR2()
[all …]
/external/llvm-project/llvm/include/llvm/CodeGen/PBQP/
DReductionRules.h50 PBQPNum Min = ECosts[0][j] + XCosts[0]; in applyR1() local
53 if (C < Min) in applyR1()
54 Min = C; in applyR1()
56 YCosts[j] += Min; in applyR1()
60 PBQPNum Min = ECosts[i][0] + XCosts[0]; in applyR1() local
63 if (C < Min) in applyR1()
64 Min = C; in applyR1()
66 YCosts[i] += Min; in applyR1()
112 PBQPNum Min = (*YXECosts)[i][0] + (*ZXECosts)[j][0] + XCosts[0]; in applyR2() local
115 if (C < Min) { in applyR2()
[all …]
/external/llvm/include/llvm/CodeGen/PBQP/
DReductionRules.h49 PBQPNum Min = ECosts[0][j] + XCosts[0]; in applyR1() local
52 if (C < Min) in applyR1()
53 Min = C; in applyR1()
55 YCosts[j] += Min; in applyR1()
59 PBQPNum Min = ECosts[i][0] + XCosts[0]; in applyR1() local
62 if (C < Min) in applyR1()
63 Min = C; in applyR1()
65 YCosts[i] += Min; in applyR1()
111 PBQPNum Min = (*YXECosts)[i][0] + (*ZXECosts)[j][0] + XCosts[0]; in applyR2() local
114 if (C < Min) { in applyR2()
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/
DTypeSize.h25 unsigned Min; // Minimum number of vector elements.
29 ElementCount(unsigned Min, bool Scalable) in ElementCount() argument
30 : Min(Min), Scalable(Scalable) {} in ElementCount()
33 return { Min * RHS, Scalable };
36 return { Min / RHS, Scalable };
40 return Min == RHS.Min && Scalable == RHS.Scalable;
/external/compiler-rt/lib/ubsan/
Dubsan_diag.cc251 MemoryLocation Min = subtractNoOverflow(Loc, MinBytesNearLoc); in PrintMemorySnippet() local
253 MemoryLocation OrigMin = Min; in PrintMemorySnippet()
255 Min = __sanitizer::Min(Ranges[I].getStart().getMemoryLocation(), Min); in PrintMemorySnippet()
261 if (Max - Min > BytesToShow) in PrintMemorySnippet()
262 Min = __sanitizer::Min(Max - BytesToShow, OrigMin); in PrintMemorySnippet()
263 Max = addNoOverflow(Min, BytesToShow); in PrintMemorySnippet()
265 if (!IsAccessibleMemoryRange(Min, Max - Min)) { in PrintMemorySnippet()
272 for (uptr P = Min; P != Max; ++P) { in PrintMemorySnippet()
280 Range *InRange = upperBound(Min, Ranges, NumRanges); in PrintMemorySnippet()
281 for (uptr P = Min; P != Max; ++P) { in PrintMemorySnippet()
[all …]
/external/llvm-project/compiler-rt/lib/ubsan/
Dubsan_diag.cpp261 MemoryLocation Min = subtractNoOverflow(Loc, MinBytesNearLoc); in PrintMemorySnippet() local
263 MemoryLocation OrigMin = Min; in PrintMemorySnippet()
265 Min = __sanitizer::Min(Ranges[I].getStart().getMemoryLocation(), Min); in PrintMemorySnippet()
271 if (Max - Min > BytesToShow) in PrintMemorySnippet()
272 Min = __sanitizer::Min(Max - BytesToShow, OrigMin); in PrintMemorySnippet()
273 Max = addNoOverflow(Min, BytesToShow); in PrintMemorySnippet()
275 if (!IsAccessibleMemoryRange(Min, Max - Min)) { in PrintMemorySnippet()
282 for (uptr P = Min; P != Max; ++P) { in PrintMemorySnippet()
290 Range *InRange = upperBound(Min, Ranges, NumRanges); in PrintMemorySnippet()
291 for (uptr P = Min; P != Max; ++P) { in PrintMemorySnippet()
[all …]
/external/pdfium/third_party/lcms/
D0026-more-unsupported-characters.patch33 - // Y = (Max � Min) * (X ^ Gamma) + Min
34 + // Y = (Max - Min) * (X ^ Gamma) + Min
37 - // a = (Max � Min) ^ ( 1 / Gamma)
38 + // a = (Max - Min) ^ ( 1 / Gamma)
39 // e = Min
/external/autotest/client/tests/cyclictest/
DREADME5 T: 0 ( 2215) P:80 I: 1000 C: 10 Min: 31 Act: 33 Avg: 33 Max: 43
6 T: 1 ( 2216) P:79 I: 1500 C: 10 Min: 22 Act: 22 Avg: 36 Max: 61
7 T: 2 ( 2217) P:78 I: 2000 C: 10 Min: 27 Act: 33 Avg: 36 Max: 50
8 T: 3 ( 2218) P:77 I: 2500 C: 10 Min: 23 Act: 37 Avg: 38 Max: 59
9 T: 4 ( 2219) P:76 I: 3000 C: 10 Min: 26 Act: 48 Avg: 36 Max: 48

12345678910>>...31