Home
last modified time | relevance | path

Searched refs:mC (Results 1 – 25 of 1241) sorted by relevance

12345678910>>...50

/dports/science/chrono/chrono-7.0.1/src/chrono/fea/
H A DChMaterialShellReissner.cpp29 assert(mC.rows() == 12); in ComputeStiffnessMatrix()
30 assert(mC.cols() == 12); in ComputeStiffnessMatrix()
32 mC.setZero(); in ComputeStiffnessMatrix()
155 mC.setZero(); in ComputeStiffnessMatrix()
164 mC(0, 0) = C; in ComputeStiffnessMatrix()
170 mC(4, 4) = C; in ComputeStiffnessMatrix()
172 mC(6, 6) = 2. * F; in ComputeStiffnessMatrix()
173 mC(7, 7) = D; in ComputeStiffnessMatrix()
177 mC(9, 9) = D; in ComputeStiffnessMatrix()
302 mC.setZero(); in ComputeStiffnessMatrix()
[all …]
H A DChMaterialShellKirchhoff.cpp27 assert(mC.rows() == 6); in ComputeStiffnessMatrix()
28 assert(mC.cols() == 6); in ComputeStiffnessMatrix()
30 mC.setZero(); in ComputeStiffnessMatrix()
119 mC.setZero(); in ComputeStiffnessMatrix()
128 mC(0, 0) = C; in ComputeStiffnessMatrix()
129 mC(1, 1) = C; in ComputeStiffnessMatrix()
133 mC(3, 3) = D; in ComputeStiffnessMatrix()
134 mC(4, 4) = D; in ComputeStiffnessMatrix()
137 mC(5, 5) = F; in ComputeStiffnessMatrix()
213 mC.setZero(); in ComputeStiffnessMatrix()
[all …]
/dports/games/libretro-handy/libretro-handy-94c0ab5/lynx/
H A Dc6502mak.h110 mC=0;\
126 mC=0;\
160 if(!mC)\
176 if(mC)\
350 mC=FALSE;\
407 mC=0;\
421 mC=0;\
435 mC=0;\
699 mC=0;\
712 mC=0;\
[all …]
/dports/emulators/mednafen/mednafen/src/lynx/
H A Dc6502mak.h87 mC=0;\
103 mC=0;\
137 if(!mC)\
153 if(mC)\
302 mC=false;\
323 mC=0;\
331 mC=0;\
339 mC=0;\
578 mC=0;\
591 mC=0;\
[all …]
/dports/games/libretro-beetle_lynx/beetle-lynx-libretro-35119c9/mednafen/lynx/
H A Dc6502mak.h87 mC=0;\
103 mC=0;\
137 if(!mC)\
153 if(mC)\
302 mC=false;\
323 mC=0;\
331 mC=0;\
339 mC=0;\
578 mC=0;\
591 mC=0;\
[all …]
/dports/science/PETSc/petsc-3.14.1/src/mat/tests/
H A Dex101.c11 Mat A,mC,C; in main() local
56 ierr = MatProductCreate(A,P,NULL,&mC);CHKERRQ(ierr); in main()
59 ierr = MatProductSetFill(mC,PETSC_DEFAULT);CHKERRQ(ierr); in main()
60 ierr = MatProductSetFromOptions(mC);CHKERRQ(ierr); in main()
61 ierr = MatProductSymbolic(mC);CHKERRQ(ierr); in main()
62 ierr = MatProductNumeric(mC);CHKERRQ(ierr); in main()
63 ierr = MatProductNumeric(mC);CHKERRQ(ierr); in main()
66 ierr = MatEqual(C,mC,&flg);CHKERRQ(ierr); in main()
68 ierr = MatDestroy(&mC);CHKERRQ(ierr); in main()
75 ierr = MatEqual(C,mC,&flg);CHKERRQ(ierr); in main()
[all …]
/dports/math/linbox/linbox-1.6.3/examples/
H A Dgrid_reduce.C91 std::vector<int> mC; in main() local
102 mC.push_back(mark); in main()
142 os << mC[i] << " "; in main()
163 mC.resize(0); in main()
205 A.read(Z,in, mC, mR); in main()
244 os<< mC[i] << " "; in main()
269 if (mC[i]!=1) mC[i] = mark; in main()
296 A.read(Z,in, mR, mC); in main()
328 os << mC[i] << " "; in main()
353 mC.resize(0); in main()
[all …]
/dports/devel/universal-ctags/ctags-p5.9.20211128.0/Units/csharp-review-needed.r/keyword_public.cs.t/
H A Dinput.cs14 MyClass1 mC = new MyClass1(); in Main()
17 mC.x = 10; in Main()
18 mC.y = 15; in Main()
19 Console.WriteLine("x = {0}, y = {1}", mC.x, mC.y); in Main()
/dports/devel/universal-ctags/ctags-p5.9.20211128.0/Units/csharp-review-needed.r/keyword_sealed.cs.t/
H A Dinput.cs14 MyClass mC = new MyClass(); in Main()
15 mC.x = 110; in Main()
16 mC.y = 150; in Main()
17 Console.WriteLine("x = {0}, y = {1}", mC.x, mC.y); in Main()
/dports/devel/geany-legacy/geany-1.37.1/tests/ctags/
H A Dkeyword_public.cs14 MyClass1 mC = new MyClass1(); in Main()
17 mC.x = 10; in Main()
18 mC.y = 15; in Main()
19 Console.WriteLine("x = {0}, y = {1}", mC.x, mC.y); in Main()
H A Dkeyword_sealed.cs14 MyClass mC = new MyClass(); in Main()
15 mC.x = 110; in Main()
16 mC.y = 150; in Main()
17 Console.WriteLine("x = {0}, y = {1}", mC.x, mC.y); in Main()
H A Dkeyword_protected.cs13 MyDerivedC mC = new MyDerivedC(); in Main()
16 mC.x = 10; in Main()
17 mC.y = 15; in Main()
18 Console.WriteLine("x = {0}, y = {1}", mC.x, mC.y); in Main()
H A Dkeyword_abstract.cs47 MyDerivedC mC = new MyDerivedC(); in Main()
48 mC.MyMethod(); in Main()
49 Console.WriteLine("x = {0}, y = {1}", mC.GetX, mC.GetY); in Main()
/dports/devel/geany/geany-1.38/tests/ctags/
H A Dkeyword_sealed.cs14 MyClass mC = new MyClass(); in Main()
15 mC.x = 110; in Main()
16 mC.y = 150; in Main()
17 Console.WriteLine("x = {0}, y = {1}", mC.x, mC.y); in Main()
H A Dkeyword_public.cs14 MyClass1 mC = new MyClass1(); in Main()
17 mC.x = 10; in Main()
18 mC.y = 15; in Main()
19 Console.WriteLine("x = {0}, y = {1}", mC.x, mC.y); in Main()
H A Dkeyword_protected.cs13 MyDerivedC mC = new MyDerivedC(); in Main()
16 mC.x = 10; in Main()
17 mC.y = 15; in Main()
18 Console.WriteLine("x = {0}, y = {1}", mC.x, mC.y); in Main()
/dports/audio/rosegarden/rosegarden-21.06.1/src/sound/
H A DMappedEventList.cpp29 MappedEventList::MappedEventList(const MappedEventList &mC): in MappedEventList() argument
35 for (MappedEventList::const_iterator it = mC.begin(); it != mC.end(); ++it) in MappedEventList()
54 MappedEventList::merge(const MappedEventList &mC) in merge() argument
56 for (MappedEventList::const_iterator it = mC.begin(); it != mC.end(); ++it) in merge()
/dports/devel/universal-ctags/ctags-p5.9.20211128.0/Units/csharp-review-needed.r/keyword_protected.cs.t/
H A Dinput.cs13 MyDerivedC mC = new MyDerivedC(); in Main()
16 mC.x = 10; in Main()
17 mC.y = 15; in Main()
18 Console.WriteLine("x = {0}, y = {1}", mC.x, mC.y); in Main()
/dports/multimedia/libv4l/linux-5.13-rc2/drivers/gpu/drm/nouveau/include/nvif/
H A Dpush.h182 PUSH_3(X, DATA_, 1, 0, o, (p), s, X##mC, (dC), \
187 X##mC, (dC), \
193 X##mC, (dC), \
200 X##mC, (dC), \
208 X##mC, (dC), \
217 X##mC, (dC), \
227 X##mC, (dC), \
282 #define PUSH_NV_3(X,o,p,c,mA,dA,mB,dB,mC,d...) \ argument
285 c##_##mC,d)
289 c##_##mC,dC, \
[all …]
/dports/multimedia/v4l-utils/linux-5.13-rc2/drivers/gpu/drm/nouveau/include/nvif/
H A Dpush.h182 PUSH_3(X, DATA_, 1, 0, o, (p), s, X##mC, (dC), \
187 X##mC, (dC), \
193 X##mC, (dC), \
200 X##mC, (dC), \
208 X##mC, (dC), \
217 X##mC, (dC), \
227 X##mC, (dC), \
282 #define PUSH_NV_3(X,o,p,c,mA,dA,mB,dB,mC,d...) \ argument
285 c##_##mC,d)
289 c##_##mC,dC, \
[all …]
/dports/multimedia/v4l_compat/linux-5.13-rc2/drivers/gpu/drm/nouveau/include/nvif/
H A Dpush.h182 PUSH_3(X, DATA_, 1, 0, o, (p), s, X##mC, (dC), \
187 X##mC, (dC), \
193 X##mC, (dC), \
200 X##mC, (dC), \
208 X##mC, (dC), \
217 X##mC, (dC), \
227 X##mC, (dC), \
282 #define PUSH_NV_3(X,o,p,c,mA,dA,mB,dB,mC,d...) \ argument
285 c##_##mC,d)
289 c##_##mC,dC, \
[all …]
/dports/science/dynare/dynare-4.6.4/mex/sources/kronecker/
H A DA_times_B_kronecker_C.cc30 … blas_int mA, blas_int nA, blas_int mB, blas_int nB, blas_int mC, blas_int nC) in full_A_times_kronecker_B_C() argument
32 const blas_int shiftA = mA*mC; in full_A_times_kronecker_B_C()
41 dgemm("N", "N", &mA, &nC, &mC, &B[mB*col+row], &A[ka], &mA, C, &mC, &one, &D[kd], &mA); in full_A_times_kronecker_B_C()
79 size_t mC, nC; in mexFunction() local
82 mC = mxGetM(prhs[2]); in mexFunction()
84 if (mB*mC != nA) in mexFunction()
110 full_A_times_kronecker_B_C(A, B, C, D, mA, nA, mB, nB, mC, nC); in mexFunction()
/dports/audio/rosegarden/rosegarden-21.06.1/src/gui/studio/
H A DStudioControl.cpp172 StudioControl::sendMappedEventList(const MappedEventList &mC)
174 if (mC.size() == 0)
177 MappedEventList::const_iterator it = mC.begin();
179 for (; it != mC.end(); ++it) {
258 MappedEventList mC;
259 fillWithImmediateNote(mC, instrument, pitch, velocity, duration, oneshot);
260 sendMappedEventList(mC);
291 MappedEventList mC;
292 MappedEventInserter inserter(mC);
304 sendMappedEventList(mC);
/dports/math/scilab/scilab-6.1.1/scilab/modules/signal_processing/sci_gateway/c/
H A Dsci_conv2.c96 int mC = 0, nC = 0, mR = 0, nR = 0, mA = 0, nA = 0; in sci_conv2() local
126 sciErr = getComplexMatrixOfDouble(pvApiCtx, piAddr, &mC, &nC, &Cr, &Ci); in sci_conv2()
137 sciErr = getMatrixOfDouble(pvApiCtx, piAddr, &mC, &nC, &Cr); in sci_conv2()
146 if (mC > 1 && nC > 1) in sci_conv2()
153 mC = mC * nC; in sci_conv2()
265 if (mC == 0 || nR == 0) in sci_conv2()
272 mOut = mA + mC - 1; in sci_conv2()
275 edgM = mC - 1; in sci_conv2()
282 edgM = ( mC - 1) / 2; in sci_conv2()
287 if (mC == 0 || nR == 0) in sci_conv2()
[all …]
/dports/devel/universal-ctags/ctags-p5.9.20211128.0/Units/csharp-review-needed.r/keyword_abstract.cs.t/
H A Dinput.cs47 MyDerivedC mC = new MyDerivedC(); in Main()
48 mC.MyMethod(); in Main()
49 Console.WriteLine("x = {0}, y = {1}", mC.GetX, mC.GetY); in Main()

12345678910>>...50