Home
last modified time | relevance | path

Searched refs:N2 (Results 1 – 25 of 60) sorted by relevance

123

/external/clang/test/SemaTemplate/
Dinstantiate-expr-3.cpp25 namespace N2 { namespace
42 template struct N2::PlusEquals0<N1::X, int, int&>;
43 template struct N2::PlusEquals0<N1::X, long, long&>;
44 template struct N2::PlusEquals0<N3::Y, long, short&>;
45 template struct N2::PlusEquals0<int, int, int&>;
46 template struct N2::PlusEquals0<N3::Y, int, short&>; // expected-note{{instantiation}}
Dtemp_explicit.cpp75 namespace N2 { namespace
92 template struct N2::X5<void>::Inner2;
94 using namespace N2;
101 template struct N2::X5<int>::Inner2;
145 namespace N2 { namespace
Dinstantiate-call.cpp9 namespace N2 { namespace
20 template struct N2::call_f0<int, char&>;
21 template struct N2::call_f0<N1::X0, int&>;
Dinstantiate-expr-2.cpp13 namespace N2 { namespace
26 one_byte operator+(N1::X, N2::Y);
43 typedef N4::BinOpOverload<N1::X, N2::Y>::type XY; in test_bin_op_overload()
47 typedef N4::BinOpOverload<N2::Y, N2::Y>::type YY; in test_bin_op_overload()
Dinstantiate-declref.cpp41 namespace N2 { namespace
70 template struct N2::Outer2::Inner<float>;
71 template struct N2::Outer2::Inner<int*, float*>; // expected-note{{instantiation}}
/external/flac/libFLAC/
Dwindow.c99 const double N2 = (double)N / 2.; in FLAC__window_connes() local
103 double k = ((double)n - N2) / N2; in FLAC__window_connes()
121 const double N2 = (double)N / 2.; in FLAC__window_gauss() local
125 const double k = ((double)n - N2) / (stddev * N2); in FLAC__window_gauss()
216 const double N2 = (double)N / 2.; in FLAC__window_welch() local
220 const double k = ((double)n - N2) / N2; in FLAC__window_welch()
/external/llvm/include/llvm/ADT/
DStringSwitch.h90 template<unsigned N0, unsigned N1, unsigned N2>
92 const char (&S2)[N2], const T& Value) { in Cases() argument
96 template<unsigned N0, unsigned N1, unsigned N2, unsigned N3>
98 const char (&S2)[N2], const char (&S3)[N3], in Cases() argument
103 template<unsigned N0, unsigned N1, unsigned N2, unsigned N3, unsigned N4>
105 const char (&S2)[N2], const char (&S3)[N3], in Cases() argument
/external/clang/test/CodeGenCXX/
Dcopy-assign-synthesis-1.cpp39 N() : N1(20), N2(21) {} in N()
41 int N2; 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()
36 int N2; member
38 printf("N1 = %d N2 = %d\n", N1, N2); in pr()
/external/openssl/crypto/bn/asm/
Dppc64-mont.pl135 $N0="f14"; $N1="f15"; $N2="f16"; $N3="f17";
300 lfd $N2,`$FRAME+112`($sp)
308 fcfid $N2,$N2
327 stfd $N2,56($nap_d) ; save n[j+1] in double format
341 fmadd $T2a,$N2,$na,$T2a
342 fmadd $T2b,$N2,$nb,$T2b
352 fmadd $T3a,$N2,$nc,$T3a
353 fmadd $T3b,$N2,$nd,$T3b
407 lfd $N2,`$FRAME+112`($sp)
415 fcfid $N2,$N2
[all …]
/external/valgrind/main/memcheck/tests/
Dlong_namespace_xml.cpp19 #define N2 ABCDEFGHIJKLMNOPQRSTUVWXYZABCDEFGHIJKLMNOPQRSTUVWXYZABCDEFGHIJKLMNOPQRSTUVWXYZABCDEFGHIJ… macro
33 namespace N2 { namespace
44 N1::N2::f(); in main()
/external/clang/test/PCH/Inputs/
Dnamespaces.h15 namespace N2 {
34 namespace Alias1 = N2::Inner;
36 using namespace N2::Inner;
/external/clang/test/PCH/
Dnamespaces.cpp11 N2::Inner::t3 *ip3 = &int_val;
14 namespace N2 { } namespace
15 N2::t1 *fp1 = &float_val;
/external/clang/test/ASTMerge/Inputs/
Dnamespace1.cpp7 namespace N2 { namespace
10 namespace N2 { namespace
Dnamespace2.cpp7 namespace N2 { namespace
10 namespace N2 { namespace
/external/clang/test/CXX/basic/basic.lookup/basic.lookup.argdep/
Dp2-template-id.cpp8 namespace N2 { namespace
14 int &ir = f((N2::Y<N1::X>*)0); in test()
/external/speex/libspeex/
Dfilters.c483 int M2, N2; in qmf_synth() local
488 N2 = N>>1; in qmf_synth()
489 ALLOC(xx1, M2+N2, spx_word16_t); in qmf_synth()
490 ALLOC(xx2, M2+N2, spx_word16_t); in qmf_synth()
492 for (i = 0; i < N2; i++) in qmf_synth()
493 xx1[i] = x1[N2-1-i]; in qmf_synth()
495 xx1[N2+i] = mem1[2*i+1]; in qmf_synth()
496 for (i = 0; i < N2; i++) in qmf_synth()
497 xx2[i] = x2[N2-1-i]; in qmf_synth()
499 xx2[N2+i] = mem2[2*i+1]; in qmf_synth()
[all …]
/external/clang/test/CXX/temp/temp.fct.spec/temp.arg.explicit/
Dp3.cpp49 namespace N2 namespace
56 using N2::f0;
/external/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAG.cpp1210 static void commuteShuffle(SDValue &N1, SDValue &N2, SmallVectorImpl<int> &M) { in commuteShuffle() argument
1211 std::swap(N1, N2); in commuteShuffle()
1222 SDValue N2, const int *Mask) { in getVectorShuffle() argument
1223 assert(N1.getValueType() == N2.getValueType() && "Invalid VECTOR_SHUFFLE"); in getVectorShuffle()
1230 if (N1.getOpcode() == ISD::UNDEF && N2.getOpcode() == ISD::UNDEF) in getVectorShuffle()
1243 if (N1 == N2) { in getVectorShuffle()
1244 N2 = getUNDEF(VT); in getVectorShuffle()
1251 commuteShuffle(N1, N2, MaskVec); in getVectorShuffle()
1256 bool N2Undef = N2.getOpcode() == ISD::UNDEF; in getVectorShuffle()
1270 N2 = getUNDEF(VT); in getVectorShuffle()
[all …]
/external/llvm/lib/CompilerDriver/
DCompilationGraph.cpp433 const Node* N2 = this->getNode((*EB)->ToolName()); in CheckLanguageNames() local
434 if (N2 == 0) in CheckLanguageNames()
437 if (!N2->ToolPtr) { in CheckLanguageNames()
445 const char** InLangs = N2->ToolPtr->InputLanguages(); in CheckLanguageNames()
461 << N1.ToolPtr->Name() << "' -> '" << N2->ToolPtr->Name() in CheckLanguageNames()
465 InLangs = N2->ToolPtr->InputLanguages(); in CheckLanguageNames()
/external/clang/test/CXX/temp/temp.spec/temp.expl.spec/
Dexamples.cpp119 namespace N2 { namespace
124 template<> void N2::X::foo() {} in foo()
/external/clang/test/CodeCompletion/
Dnamespace.cpp4 namespace N2 { namespace
Dusing-namespace.cpp7 namespace N2 { namespace
Dnamespace-alias.cpp7 namespace N2 { namespace
Dusing.cpp7 namespace N2 { namespace

123