/external/libopus/silk/ |
ana_filt_bank_1.c | 47 opus_int k, N2 = silk_RSHIFT( N, 1 ); 51 for( k = 0; k < N2; k++ ) {
|
/external/llvm/unittests/IR/ |
MDBuilderTest.cpp | 87 MDNode *N2 = MDHelper.createTBAANode("Node", R, true); 91 EXPECT_NE(N0, N2); 94 EXPECT_GE(N2->getNumOperands(), 3U); 97 EXPECT_TRUE(isa<MDString>(N2->getOperand(0))); 100 EXPECT_EQ(cast<MDString>(N2->getOperand(0))->getString(), "Node"); 103 EXPECT_EQ(N2->getOperand(1), R); 104 EXPECT_TRUE(mdconst::hasa<ConstantInt>(N2->getOperand(2))); 105 EXPECT_EQ(mdconst::extract<ConstantInt>(N2->getOperand(2))->getZExtValue(),
|
/frameworks/base/core/java/android/os/ |
WorkSource.java | 360 final int N2 = other.mNum; 365 while (i1 < N1 && i2 < N2) { 367 + " of " + N2); 393 final int N2 = other.mNum; 399 while (i1 < N1 && i2 < N2) { 401 + " of " + N2 + ": " + uids1[i1] + " " + names1[i1]); 454 final int N2 = other.mNum; 460 while (i1 < N1 || i2 < N2) { 462 + " of " + N2); 463 if (i1 >= N1 || (i2 < N2 && uids2[i2] < uids1[i1])) [all...] |
/external/clang/test/Parser/ |
cxx-template-argument.cpp | 60 template<int N1, int N2> struct ABC2 {}; 121 template<int N1, int N2> struct foo11 : 122 UnknownBase<2<N1,N2<4> // expected-error {{unknown template name 'UnknownBase'}}
|
/external/clang/test/SemaTemplate/ |
instantiate-declref.cpp | 41 namespace N2 { 70 template struct N2::Outer2::Inner<float>; 71 template struct N2::Outer2::Inner<int*, float*>; // expected-note{{instantiation}}
|
instantiate-expr-2.cpp | 13 namespace N2 { 26 one_byte operator+(N1::X, N2::Y); 43 typedef N4::BinOpOverload<N1::X, N2::Y>::type XY; 47 typedef N4::BinOpOverload<N2::Y, N2::Y>::type YY;
|
/external/opencv3/3rdparty/openexr/IlmImf/ |
ImfRgbaFile.cpp | 416 _tmpBuf[j + N2] = _fbBase[_fbYStride * _currentScanLine + 424 RGBAtoYCA (_yw, _width, _writeA, _tmpBuf + N2, _tmpBuf + N2); 427 // Append N2 copies of the first and last pixel to the 443 // store N2 more copies of the scan line in _buf. 448 for (int j = 0; j < N2; ++j) 455 // If we have have converted at least N2 scan lines from 461 if (_linesConverted > N2) 472 for (int j = 0; j < N2 - _height; ++j) 479 for (int j = 1; j < min (_height, N2); ++j [all...] |
ImfRgbaYca.h | 129 static const int N2 = N / 2; 161 // low-pass filtering, ycaIn must have N2 extra pixels at
|
/external/ceres-solver/include/ceres/ |
gradient_checker.h | 65 int M = 0, int N0 = 0, int N1 = 0, int N2 = 0, int N3 = 0, int N4 = 0> 139 if (N2) { 140 CHECK_EQ(N2, block_sizes[2]); 178 NumericDiffCostFunction<CostFunctionToProbe, CENTRAL, M, N0, N1, N2, N3, N4>
|
numeric_diff_functor.h | 114 int N0 = 0, int N1 = 0 , int N2 = 0, int N3 = 0, int N4 = 0, 125 N0, N1, N2, N3, N4, 136 N0, N1, N2, N3, N4, 345 N0, N1, N2, N3, N4,
|
/external/clang/test/Misc/ |
diag-template-diffing-color.cpp | 83 A<0, 2, 0> N2 = M;
|
/external/libcxx/test/std/numerics/numarray/template.indirect.array/indirect.array.assign/ |
indirect_array.pass.cpp | 30 const std::size_t N2 = sizeof(a2)/sizeof(a2[0]); 35 const std::valarray<int> v2(a2, N2);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/numarray/template.indirect.array/indirect.array.assign/ |
indirect_array.pass.cpp | 30 const std::size_t N2 = sizeof(a2)/sizeof(a2[0]); 35 const std::valarray<int> v2(a2, N2);
|
/external/flac/libFLAC/ |
window.c | 96 const double N2 = (double)N / 2.; 100 double k = ((double)n - N2) / N2; 118 const double N2 = (double)N / 2.; 122 const double k = ((double)n - N2) / (stddev * N2); 273 const double N2 = (double)N / 2.; 277 const double k = ((double)n - N2) / N2;
|
/external/clang/test/CodeGen/ |
xcore-stringtype.c | 122 // CHECK: m(N2){b(2:si)},m(){b(4:ui)},m(){b(4:si)},m(){b(4:c:si)}, 135 struct SB{int:4; int:2; int N4:4; int N2:2; unsigned int:4; signed int:4; 151 // CHECK: !"f{si}(u(UB){m(N2){b(2:si)},m(N4){b(4:si)},m(){b(2:si)}, 164 union UB{int:4; int:2; int N4:4; int N2:2; unsigned int:4; signed int:4;
|
/prebuilts/go/darwin-x86/test/fixedbugs/ |
issue4909a.go | 31 const N2 = unsafe.Offsetof(p.X) // ERROR "indirection"
|
/prebuilts/go/linux-x86/test/fixedbugs/ |
issue4909a.go | 31 const N2 = unsafe.Offsetof(p.X) // ERROR "indirection"
|
/external/clang/test/SemaCXX/ |
extern-c.cpp | 136 namespace N2 {
|
/external/llvm/lib/Target/X86/ |
X86OptimizeLEAs.cpp | 76 /// instructions are specified through \p N1 and \p N2. The address 79 const MachineInstr &MI2, unsigned N2, 195 const MachineInstr &MI2, unsigned N2, 201 if (!isIdenticalOp(MI1.getOperand(N1 + N), MI2.getOperand(N2 + N))) 206 const MachineOperand *Op2 = &MI2.getOperand(N2 + X86::AddrDisp);
|
/external/speex/libspeex/ |
filters.c | 483 int M2, N2; 488 N2 = N>>1; 489 ALLOC(xx1, M2+N2, spx_word16_t); 490 ALLOC(xx2, M2+N2, spx_word16_t); 492 for (i = 0; i < N2; i++) 493 xx1[i] = x1[N2-1-i]; 495 xx1[N2+i] = mem1[2*i+1]; 496 for (i = 0; i < N2; i++) 497 xx2[i] = x2[N2-1-i]; 499 xx2[N2+i] = mem2[2*i+1] [all...] |
/external/ceres-solver/internal/ceres/ |
parameter_block_ordering_test.cc | 51 template <int M, int N1 = 0, int N2 = 0, int N3 = 0> 52 class DummyCostFunction: public SizedCostFunction<M, N1, N2, N3> {
|
reorder_program_test.cc | 45 template <int kNumResiduals, int N0, int N1, int N2> 47 SizedCostFunction<kNumResiduals, N0, N1, N2> {
|
/external/clang/test/CXX/temp/temp.spec/temp.expl.spec/ |
examples.cpp | 119 namespace N2 { 124 template<> void N2::X::foo() {}
|
/libcore/luni/src/test/java/libcore/java/lang/ |
ClassCastExceptionTest.java | 83 A2, B2, C2, D2, E2, F2, G2, H2, I2, J2, K2, L2, M2, N2, O2, P2, Q2, R2, S2, T2, U2, V2, W2, X2, Y2, Z2, 88 A2, B2, C2, D2, E2, F2, G2, H2, I2, J2, K2, L2, M2, N2, O2, P2, Q2, R2, S2, T2, U2, V2, W2, X2, Y2, Z2,
|
/frameworks/base/core/java/android/content/pm/ |
Signature.java | 130 final int N2 = N*2; 131 char[] text = existingArray == null || N2 > existingArray.length 132 ? new char[N2] : existingArray;
|