HomeSort by relevance Sort by last modified time
    Searched refs:m1 (Results 276 - 300 of 928) sorted by null

<<11121314151617181920>>

  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.9/lib/gcc/arm-linux-androideabi/4.9/include/
mmintrin.h 76 /* Pack the four 16-bit values from M1 into the lower four 8-bit values of
85 /* Pack the two 32-bit values from M1 in to the lower two 16-bit values of
94 /* Copy the 64-bit value from M1 into the lower 32-bits of the result, and
103 /* Pack the four 16-bit values from M1 into the lower four 8-bit values of
112 /* Pack the two 32-bit values from M1 into the lower two 16-bit values of
121 /* Copy the 64-bit value from M1 into the lower 32-bits of the result, and
130 /* Interleave the four 8-bit values from the high half of M1 with the four
138 /* Interleave the two 16-bit values from the high half of M1 with the two
146 /* Interleave the 32-bit value from the high half of M1 with the 32-bit
154 /* Interleave the four 8-bit values from the low half of M1 with the fou
    [all...]
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.9/lib/gcc/arm-linux-androideabi/4.9/include/
mmintrin.h 76 /* Pack the four 16-bit values from M1 into the lower four 8-bit values of
85 /* Pack the two 32-bit values from M1 in to the lower two 16-bit values of
94 /* Copy the 64-bit value from M1 into the lower 32-bits of the result, and
103 /* Pack the four 16-bit values from M1 into the lower four 8-bit values of
112 /* Pack the two 32-bit values from M1 into the lower two 16-bit values of
121 /* Copy the 64-bit value from M1 into the lower 32-bits of the result, and
130 /* Interleave the four 8-bit values from the high half of M1 with the four
138 /* Interleave the two 16-bit values from the high half of M1 with the two
146 /* Interleave the 32-bit value from the high half of M1 with the 32-bit
154 /* Interleave the four 8-bit values from the low half of M1 with the fou
    [all...]
  /external/valgrind/cachegrind/
cg_main.c 79 ULong m1; /* misses in the first level cache */ member in struct:__anon25382
269 lineCC->Ir.m1 = 0;
272 lineCC->Dr.m1 = 0;
275 lineCC->Dw.m1 = 0;
335 &n->parent->Ir.m1, &n->parent->Ir.mL);
345 &n->parent->Ir.m1, &n->parent->Ir.mL);
357 &n->parent->Ir.m1, &n->parent->Ir.mL);
360 &n2->parent->Ir.m1, &n2->parent->Ir.mL);
374 &n->parent->Ir.m1, &n->parent->Ir.mL);
377 &n2->parent->Ir.m1, &n2->parent->Ir.mL)
    [all...]
  /external/boringssl/src/crypto/bn/
internal.h 238 BN_ULONG m, m1, lt, ht; \
244 m1 = (bl) * (ht); \
246 m = (m + m1) & BN_MASK2; \
247 if (m < m1) \
250 m1 = L2HBITS(m); \
251 lt = (lt + m1) & BN_MASK2; \
252 if (lt < m1) \
  /external/eigen/bench/
sparse_cholesky.cpp 103 DenseMatrix m1(rows,cols);
104 eiToDense(sm1, m1);
105 m1 = (m1 + m1.transpose()).eval();
106 m1.diagonal() *= 0.5;
108 // BENCH(LLT<DenseMatrix> chol(m1);)
113 LLT<DenseMatrix> chol(m1);
122 // std::cout << "dense:\n" << m1 << "\n\n" << chol.matrixL() << endl;
sparse_lu.cpp 96 DenseMatrix m1(rows,cols);
97 eiToDense(sm1, m1);
101 FullPivLU<DenseMatrix> lu(m1);
  /external/fec/
viterbi27_av.c 123 vector unsigned char metric,m_metric,m0,m1,m2,m3; local
143 m1 = vec_adds(vp->old_metrics->v[2],m_metric);
152 decision0 = vec_cmpgt(m0,m1);
154 survivor0 = vec_min(m0,m1);
160 m1 = vec_adds(vp->old_metrics->v[3],m_metric);
170 decision0 = vec_cmpgt(m0,m1);
172 survivor0 = vec_min(m0,m1);
viterbi615_port.c 113 unsigned long metric,m0,m1,m2,m3,decision0,decision1;\
118 m1 = vp->old_metrics->w[i+8192] + (1530 - metric);\
121 decision0 = (signed long)(m0-m1) >= 0;\
123 vp->new_metrics->w[2*i] = decision0 ? m1 : m0;\
  /external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/moment/
Mean.java 85 * @param m1 the moment
87 public Mean(final FirstMoment m1) {
88 this.moment = m1;
127 return moment.m1;
SecondMoment.java 78 m1 = m2 = 0.0;
  /external/clang/test/CodeGenCXX/
constructor-init.cpp 30 d1(3.4567), i1(1234), m1(100) { printf("N()\n"); }
31 M m1; member in struct:N
58 M m1; local
  /external/eigen/test/eigen2/
eigen2_sum.cpp 19 MatrixType m1 = MatrixType::Random(rows, cols); local
24 for(int i = 0; i < rows; i++) for(int j = 0; j < cols; j++) x += m1(i,j);
25 VERIFY_IS_APPROX(m1.sum(), x);
  /external/guice/core/test/com/google/inject/
ModulesTest.java 52 final Module m1 = newModule(1); local
54 final Module combined1 = Modules.combine(m1, m2);
64 assertEquals(ImmutableList.of(m1.getClass().getName(),
  /external/bison/lib/
isnan.c 162 memory_double m1;
165 memset (&m1.value, 0, SIZE);
167 m1.value = x;
169 if (memcmp (&m1.value, &m2.value, SIZE) != 0)
  /external/clang/test/CXX/dcl.dcl/dcl.attr/dcl.attr.depend/
p1.cpp 3 [[carries_dependency, carries_dependency]] int m1(); // expected-error {{attribute 'carries_dependency' cannot appear multiple times in an attribute specifier}}
  /external/dagger2/compiler/src/it/functional-tests/src/main/java/test/builder/
TestChildComponentWithBuilderAbstractClass.java 30 abstract class SharedBuilder<B, C, M1, M2> {
32 abstract B setM1(M1 m1); // Test resolving return type & param of setter
33 abstract SharedBuilder<B, C, M1, M2> setM2(M2 m2); // Test being overridden
35 abstract SharedBuilder<B, C, M1, M2> set(FloatModule floatModule); // Test returning supertype.
TestChildComponentWithBuilderInterface.java 30 interface SharedBuilder<B, C, M1, M2> {
32 B setM1(M1 m1); // Test resolving return type & param of setter
33 SharedBuilder<B, C, M1, M2> setM2(M2 m2); // Test being overridden
35 SharedBuilder<B, C, M1, M2> set(FloatModule floatModule); // Test return type is supertype.
TestComponentWithGenericBuilderAbstractClass.java 30 static abstract class SharedBuilder<B, C, M1, M2> {
32 abstract B setM1(M1 m1); // Test resolving return type & param of setter
33 abstract SharedBuilder<B, C, M1, M2> setM2(M2 m2); // Test being overridden
35 abstract SharedBuilder<B, C, M1, M2> depComponent(FloatModule floatModule); // Test return type
TestComponentWithGenericBuilderInterface.java 30 interface SharedBuilder<B, C, M1, M2> {
32 B setM1(M1 m1); // Test resolving return type & param of setter
33 SharedBuilder<B, C, M1, M2> setM2(M2 m2); // Test being overridden
35 SharedBuilder<B, C, M1, M2> set(FloatModule floatModule); // Test return type is supertype.
  /external/eigen/test/
sparse_vector.cpp 22 SparseMatrixType m1(rows,rows);
31 initSparse<Scalar>(densityMat, refM1, m1);
74 VERIFY_IS_APPROX(v1.dot(m1*v2), refV1.dot(refM1*refV2));
76 VERIFY_IS_APPROX(v1.dot(m1.col(i)), refV1.dot(refM1.col(i)));
  /external/libcxx/include/support/win32/
support.h 82 static const unsigned int m1 = 0x55555555; local
90 x -= (x >> 1) & m1;
107 static const unsigned long long m1 = 0x5555555555555555; local
115 x -= (x >> 1) & m1;
  /external/mockito/src/org/mockito/internal/invocation/
InvocationMatcher.java 98 Method m1 = invocation.getMethod(); local
101 if (m1.getName() != null && m1.getName().equals(m2.getName())) {
103 Class[] params1 = m1.getParameterTypes();
  /external/testng/src/test/java/test/dependent/
ImplicitGroupInclusion4SampleTest.java 17 public void m1() { method in class:ImplicitGroupInclusion4SampleTest
21 @Test (groups = {"g1"}, dependsOnMethods="m1")
38 Assert.assertFalse(m_m1, "Shouldn't have invoked m1()");
  /external/vulkan-validation-layers/libs/glm/gtx/
matrix_interpolation.hpp 79 detail::tmat4x4<T, P> const & m1,
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/include/support/win32/
support.h 79 static const unsigned int m1 = 0x55555555; local
87 x -= (x >> 1) & m1;
104 static const unsigned long long m1 = 0x5555555555555555; local
112 x -= (x >> 1) & m1;

Completed in 476 milliseconds

<<11121314151617181920>>