Home
last modified time | relevance | path

Searched refs:N1 (Results 1 – 25 of 88) sorted by relevance

1234

/external/ceres-solver/include/ceres/internal/
Dautodiff.h206 template<typename Functor, typename T, int N0, int N1, int N2, int N3, int N4,
224 template<typename Functor, typename T, int N0, int N1, int N2, int N3, int N4,
226 struct VariadicEvaluate<Functor, T, N0, N1, N2, N3, N4, N5, N6, N7, N8, 0> {
241 template<typename Functor, typename T, int N0, int N1, int N2, int N3, int N4,
243 struct VariadicEvaluate<Functor, T, N0, N1, N2, N3, N4, N5, N6, N7, 0, 0> {
257 template<typename Functor, typename T, int N0, int N1, int N2, int N3, int N4,
259 struct VariadicEvaluate<Functor, T, N0, N1, N2, N3, N4, N5, N6, 0, 0, 0> {
272 template<typename Functor, typename T, int N0, int N1, int N2, int N3, int N4,
274 struct VariadicEvaluate<Functor, T, N0, N1, N2, N3, N4, N5, 0, 0, 0, 0> {
286 template<typename Functor, typename T, int N0, int N1, int N2, int N3, int N4>
[all …]
/external/eigen/test/
Ddiagonal.cpp34 N1 = MatrixType::RowsAtCompileTime>1 ? 1 : 0, in diagonal() enumerator
39 if(m1.template diagonal<N1>().RowsAtCompileTime!=Dynamic) in diagonal()
41 VERIFY(m1.template diagonal<N1>().RowsAtCompileTime == m1.diagonal(N1).size()); in diagonal()
48 m2.template diagonal<N1>() = 2 * m1.template diagonal<N1>(); in diagonal()
49 VERIFY_IS_APPROX(m2.template diagonal<N1>(), static_cast<Scalar>(2) * m1.diagonal(N1)); in diagonal()
50 m2.template diagonal<N1>()[0] *= 3; in diagonal()
51 …VERIFY_IS_APPROX(m2.template diagonal<N1>()[0], static_cast<Scalar>(6) * m1.template diagonal<N1>(… in diagonal()
58 m2.diagonal(N1) = 2 * m1.diagonal(N1); in diagonal()
59 VERIFY_IS_APPROX(m2.diagonal<N1>(), static_cast<Scalar>(2) * m1.diagonal(N1)); in diagonal()
60 m2.diagonal(N1)[0] *= 3; in diagonal() local
[all …]
/external/ceres-solver/include/ceres/
Dsized_cost_function.h48 int N0 = 0, int N1 = 0, int N2 = 0, int N3 = 0, int N4 = 0,
57 CHECK((!N1 && !N2 && !N3 && !N4 && !N5 && !N6 && !N7 && !N8 && !N9) || in SizedCostFunction()
58 ((N1 > 0) && !N2 && !N3 && !N4 && !N5 && !N6 && !N7 && !N8 && !N9) || in SizedCostFunction()
59 ((N1 > 0) && (N2 > 0) && !N3 && !N4 && !N5 && !N6 && !N7 && !N8 && !N9) || in SizedCostFunction()
60 ((N1 > 0) && (N2 > 0) && (N3 > 0) && !N4 && !N5 && !N6 && !N7 && !N8 && !N9) || in SizedCostFunction()
61 ((N1 > 0) && (N2 > 0) && (N3 > 0) && (N4 > 0) && !N5 && !N6 && !N7 && !N8 && !N9) || in SizedCostFunction()
62 ((N1 > 0) && (N2 > 0) && (N3 > 0) && (N4 > 0) && (N5 > 0) && !N6 && !N7 && !N8 && !N9) || in SizedCostFunction()
63 … ((N1 > 0) && (N2 > 0) && (N3 > 0) && (N4 > 0) && (N5 > 0) && (N6 > 0) && !N7 && !N8 && !N9) || in SizedCostFunction()
64 …((N1 > 0) && (N2 > 0) && (N3 > 0) && (N4 > 0) && (N5 > 0) && (N6 > 0) && (N7 > 0) && !N8 && !N9) || in SizedCostFunction()
65 …((N1 > 0) && (N2 > 0) && (N3 > 0) && (N4 > 0) && (N5 > 0) && (N6 > 0) && (N7 > 0) && (N8 > 0) && !… in SizedCostFunction()
[all …]
Dautodiff_cost_function.h153 int N1 = 0, // Number of parameters in block 1.
163 public SizedCostFunction<M, N0, N1, N2, N3, N4, N5, N6, N7, N8, N9> {
182 SizedCostFunction<M, N0, N1, N2, N3, N4, N5, N6, N7, N8, N9> in AutoDiffCostFunction()
198 CostFunctor, double, N0, N1, N2, N3, N4, N5, N6, N7, N8, N9> in Evaluate()
202 N0, N1, N2, N3, N4, N5, N6, N7, N8, N9>::Differentiate( in Evaluate()
205 SizedCostFunction<M, N0, N1, N2, N3, N4, N5, N6, N7, N8, N9> in Evaluate()
Dnumeric_diff_cost_function.h202 int N0 = 0, int N1 = 0, int N2 = 0, int N3 = 0, int N4 = 0, int N5 = 0>
204 : public SizedCostFunction<M, N0, N1, N2, N3, N4, N5> {
231 const int kParametersSize = N0 + N1 + N2 + N3 + N4 + N5;
236 parameters_references_copy[2] = &parameters_copy[0] + N0 + N1;
237 parameters_references_copy[3] = &parameters_copy[0] + N0 + N1 + N2;
238 parameters_references_copy[4] = &parameters_copy[0] + N0 + N1 + N2 + N3;
240 &parameters_copy[0] + N0 + N1 + N2 + N3 + N4;
/external/clang/test/SemaCXX/
Dout-of-line-def-mismatch.cpp6 namespace N1 { namespace
20 void N2::N1::S2::func(S1*) {} // expected-error {{out-of-line definition of 'func' does not match a… in func()
21 void N2::N1::S2::func(C1&, unsigned, const S1*) {} // expected-error {{out-of-line definition of 'f… in func()
22 void N2::N1::S2::func(S1*, double) {} // expected-error {{out-of-line definition of 'func' does not… in func()
23 void N2::N1::S2::func(S1, unsigned) {} // expected-error {{out-of-line definition of 'func' does no… in func()
24 void N2::N1::S2::func(unsigned*, S1*) {} // expected-error {{out-of-line definition of 'func' does … in func()
/external/llvm/lib/CodeGen/SelectionDAG/
DDAGCombiner.cpp255 SDValue SimplifySelect(DebugLoc DL, SDValue N0, SDValue N1, SDValue N2);
256 SDValue SimplifySelectCC(DebugLoc DL, SDValue N0, SDValue N1, SDValue N2,
259 SDValue SimplifySetCC(EVT VT, SDValue N0, SDValue N1, ISD::CondCode Cond,
267 SDValue MatchBSwapHWordLow(SDNode *N, SDValue N0, SDValue N1,
269 SDValue MatchBSwapHWord(SDNode *N, SDValue N0, SDValue N1);
570 SDValue N0, N1, N2; in isOneUseSetCC() local
571 if (isSetCCEquivalent(N, N0, N1, N2) && N.getNode()->hasOneUse()) in isOneUseSetCC()
577 SDValue N0, SDValue N1) { in ReassociateOps() argument
580 if (isa<ConstantSDNode>(N1)) { in ReassociateOps()
585 cast<ConstantSDNode>(N1)); in ReassociateOps()
[all …]
DTargetLowering.cpp1067 TargetLowering::SimplifySetCC(EVT VT, SDValue N0, SDValue N1, in SimplifySetCC() argument
1084 return DAG.getSetCC(dl, VT, N1, N0, ISD::getSetCCSwappedOperands(Cond)); in SimplifySetCC()
1086 if (ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode())) { in SimplifySetCC()
1350 return DAG.getSetCC(dl, VT, Val, N1, in SimplifySetCC()
1408 DAG.getConstant(C1-1, N1.getValueType()), in SimplifySetCC()
1416 DAG.getConstant(C1+1, N1.getValueType()), in SimplifySetCC()
1431 return DAG.getSetCC(dl, VT, N0, N1, ISD::SETNE); in SimplifySetCC()
1434 return DAG.getSetCC(dl, VT, N0, N1, ISD::SETNE); in SimplifySetCC()
1454 DAG.getConstant(0, N1.getValueType()), in SimplifySetCC()
1462 N1.getValueType()); in SimplifySetCC()
[all …]
DSelectionDAG.cpp1291 static void commuteShuffle(SDValue &N1, SDValue &N2, SmallVectorImpl<int> &M) { in commuteShuffle() argument
1292 std::swap(N1, N2); in commuteShuffle()
1302 SDValue SelectionDAG::getVectorShuffle(EVT VT, DebugLoc dl, SDValue N1, in getVectorShuffle() argument
1304 assert(N1.getValueType() == N2.getValueType() && "Invalid VECTOR_SHUFFLE"); in getVectorShuffle()
1305 assert(VT.isVector() && N1.getValueType().isVector() && in getVectorShuffle()
1307 assert(VT.getVectorElementType() == N1.getValueType().getVectorElementType() in getVectorShuffle()
1311 if (N1.getOpcode() == ISD::UNDEF && N2.getOpcode() == ISD::UNDEF) in getVectorShuffle()
1324 if (N1 == N2) { in getVectorShuffle()
1331 if (N1.getOpcode() == ISD::UNDEF) in getVectorShuffle()
1332 commuteShuffle(N1, N2, MaskVec); in getVectorShuffle()
[all …]
/external/llvm/include/llvm/ADT/
DStringSwitch.h84 template<unsigned N0, unsigned N1>
85 StringSwitch& Cases(const char (&S0)[N0], const char (&S1)[N1], in Cases() argument
90 template<unsigned N0, unsigned N1, unsigned N2>
91 StringSwitch& Cases(const char (&S0)[N0], const char (&S1)[N1], in Cases() argument
96 template<unsigned N0, unsigned N1, unsigned N2, unsigned N3>
97 StringSwitch& Cases(const char (&S0)[N0], const char (&S1)[N1], in Cases() argument
103 template<unsigned N0, unsigned N1, unsigned N2, unsigned N3, unsigned N4>
104 StringSwitch& Cases(const char (&S0)[N0], const char (&S1)[N1], in Cases() argument
/external/clang/test/SemaTemplate/
Dinstantiate-expr-3.cpp19 namespace N1 { namespace
26 long& operator+=(N1::X&, long); // expected-note{{candidate}}
37 struct Y : public N1::X {
42 template struct N2::PlusEquals0<N1::X, int, int&>;
43 template struct N2::PlusEquals0<N1::X, long, long&>;
75 template struct StatementExpr0<N1::X>; // expected-note{{instantiation}}
Dinstantiate-call.cpp3 namespace N1 { namespace
21 template struct N2::call_f0<N1::X0, int&>;
34 template struct N3::call_f0<N1::X0, int&>;
47 template struct N4::call_f0<N1::X0, int&>;
Dtemp_explicit_cxx0x.cpp2 namespace N1 { namespace
16 template struct ::N1::Inner::X1<float>;
19 using namespace N1;
Dinstantiate-expr-2.cpp9 namespace N1 { namespace
26 one_byte operator+(N1::X, N2::Y);
34 namespace N1 { namespace
43 typedef N4::BinOpOverload<N1::X, N2::Y>::type XY; in test_bin_op_overload()
45 typedef N4::BinOpOverload<N1::X, N1::X>::type XX; in test_bin_op_overload()
Dtemp_explicit.cpp129 namespace N1 { namespace
143 template struct ::N1::Inner::X8<float>;
146 using namespace N1;
/external/clang/test/CXX/basic/basic.lookup/basic.lookup.argdep/
Dp2-template-id.cpp4 namespace N1 { namespace
15 int &ir = f((N2::Y<N1::X>*)0); in test()
20 long g(N1::X);
22 namespace N1 { namespace
/external/clang/test/PCH/
Dnamespaces.cpp9 N1::t1 *ip1 = &int_val;
10 N1::t2 *ip2 = &int_val;
37 using N1::used_func;
40 using N1::used_cls;
/external/clang/test/CodeGenCXX/
Dcopy-assign-synthesis-1.cpp39 N() : N1(20), N2(21) {} in N()
40 int N1; member
43 printf("N1 = %d N2 = %d\n", N1, N2); in pr()
50 N1 = arg.N1; N2 = arg.N2; in operator =()
Dcopy-assign-synthesis.cpp34 N() : N1(20), N2(21) {} in N()
35 int N1; member
38 printf("N1 = %d N2 = %d\n", N1, N2); in pr()
/external/valgrind/main/memcheck/tests/
Dlong_namespace_xml.cpp17 #define N1 abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghij… macro
32 namespace N1 { namespace
44 N1::N2::f(); in main()
/external/clang/test/CXX/temp/temp.spec/temp.expl.spec/
Dp2.cpp35 namespace N1 { namespace
82 namespace N1 { namespace
132 namespace N1 { namespace
161 namespace N1 { namespace
197 namespace N1 { namespace
229 namespace N1 { namespace
Dp2-0x.cpp35 namespace N1 { namespace
81 namespace N1 { namespace
131 namespace N1 { namespace
160 namespace N1 { namespace
196 namespace N1 { namespace
228 namespace N1 { namespace
/external/openssl/crypto/bn/asm/
Dppc64-mont.pl152 $N0="f20"; $N1="f21"; $N2="f22"; $N3="f23";
344 lfd $N1,`$FRAME+104`($sp)
352 fcfid $N1,$N1
369 stfd $N1,48($nap_d)
384 fmadd $T1a,$N1,$na,$T1a
385 fmadd $T1b,$N1,$nb,$T1b
395 fmadd $T2a,$N1,$nc,$T2a
396 fmadd $T2b,$N1,$nd,$T2b
465 lfd $N1,`$FRAME+104`($sp)
473 fcfid $N1,$N1
[all …]
/external/llvm/unittests/IR/
DMDBuilderTest.cpp85 MDNode *N1 = MDHelper.createTBAANode("edoN", R); in TEST_F() local
89 EXPECT_NE(N0, N1); in TEST_F()
92 EXPECT_GE(N1->getNumOperands(), 2U); in TEST_F()
95 EXPECT_TRUE(isa<MDString>(N1->getOperand(0))); in TEST_F()
98 EXPECT_EQ(cast<MDString>(N1->getOperand(0))->getString(), "edoN"); in TEST_F()
101 EXPECT_EQ(N1->getOperand(1), R); in TEST_F()
/external/llvm/test/Linker/
D2011-08-18-unique-class-type2.ll7 %"class.N1::A" = type { i8 }
11 %youra = alloca %"class.N1::A", align 1
12 call void @llvm.dbg.declare(metadata !{%"class.N1::A"* %youra}, metadata !9), !dbg !13
31 !11 = metadata !{i32 720953, null, metadata !"N1", metadata !12, i32 2} ; [ DW_TAG_namespace ]

1234