Home
last modified time | relevance | path

Searched +defs:c +defs:i (Results 1 – 25 of 270688) sorted by relevance

12345678910>>...10828

/dports/sysutils/intel-pcm/pcm-202109/
H A Dpcm-sensor.cpp122 for (uint32 i = 0; i < counters.getNumCores(); ++i) { in main() local
257 stringstream c; in main() local
264 stringstream c; in main() local
271 stringstream c; in main() local
278 stringstream c; in main() local
285 stringstream c; in main() local
292 stringstream c; in main() local
299 stringstream c; in main() local
306 stringstream c; in main() local
313 stringstream c; in main() local
[all …]
/dports/sysutils/intel-pcm-devel/pcm-0212b38/
H A Dpcm-sensor.cpp122 for (uint32 i = 0; i < counters.getNumCores(); ++i) { in main() local
257 stringstream c; in main() local
264 stringstream c; in main() local
271 stringstream c; in main() local
278 stringstream c; in main() local
285 stringstream c; in main() local
292 stringstream c; in main() local
299 stringstream c; in main() local
306 stringstream c; in main() local
313 stringstream c; in main() local
[all …]
/dports/lang/gcc12-devel/gcc-12-20211205/gcc/testsuite/gcc.dg/
H A Dpr94589-2.c8 A int f1 (double i, double j) { int c; if (i == j) c = 0; else if (i < j) c = -1; else if (i > j) c… in f1() local
9 A int f2 (double i, double j) { int c; if (i == j) c = 0; else if (i < j) c = -1; else if (i > j) c… in f2() local
10 A int f3 (double i, double j) { int c; if (i == j) c = 0; else if (i < j) c = -1; else if (i > j) c… in f3() local
11 A int f4 (double i, double j) { int c; if (i == j) c = 0; else if (i < j) c = -1; else if (i > j) c… in f4() local
12 A int f5 (double i, double j) { int c; if (i == j) c = 0; else if (i < j) c = -1; else if (i > j) c… in f5() local
13 A int f6 (double i, double j) { int c; if (i == j) c = 0; else if (i < j) c = -1; else if (i > j) c… in f6() local
22 A int f15 (double i) { int c; if (i == 5.0) c = 0; else if (i < 5.0) c = -1; else if (i > 5.0) c = … in f15() local
23 A int f16 (double i) { int c; if (i == 5.0) c = 0; else if (i < 5.0) c = -1; else if (i > 5.0) c = … in f16() local
24 A int f17 (double i) { int c; if (i == 5.0) c = 0; else if (i < 5.0) c = -1; else if (i > 5.0) c = … in f17() local
25 A int f18 (double i) { int c; if (i == 5.0) c = 0; else if (i < 5.0) c = -1; else if (i > 5.0) c = … in f18() local
[all …]
H A Dpr94589-1.c8 A int f1 (int i, int j) { int c = i == j ? 0 : i < j ? -1 : 1; return c == 0; } in f1() local
22 A int f15 (int i) { int c = i == 5 ? 0 : i < 5 ? -1 : 1; return c == 0; } in f15() local
23 A int f16 (int i) { int c = i == 5 ? 0 : i < 5 ? -1 : 1; return c != 0; } in f16() local
24 A int f17 (int i) { int c = i == 5 ? 0 : i < 5 ? -1 : 1; return c > 0; } in f17() local
25 A int f18 (int i) { int c = i == 5 ? 0 : i < 5 ? -1 : 1; return c < 0; } in f18() local
26 A int f19 (int i) { int c = i == 5 ? 0 : i < 5 ? -1 : 1; return c >= 0; } in f19() local
27 A int f20 (int i) { int c = i == 5 ? 0 : i < 5 ? -1 : 1; return c <= 0; } in f20() local
30 A int f23 (int i) { int c = i == 5 ? 0 : i < 5 ? -1 : 1; return c > -1; } in f23() local
32 A int f25 (int i) { int c = i == 5 ? 0 : i < 5 ? -1 : 1; return c == 1; } in f25() local
33 A int f26 (int i) { int c = i == 5 ? 0 : i < 5 ? -1 : 1; return c != 1; } in f26() local
[all …]
/dports/lang/gcc12-devel/gcc-12-20211205/gcc/testsuite/g++.dg/opt/
H A Dpr94589-2.C10 A bool f1 (double i, double j) { auto c = i <=> j; return c == 0; } in f1() local
11 A bool f2 (double i, double j) { auto c = i <=> j; return c != 0; } in f2() local
12 A bool f3 (double i, double j) { auto c = i <=> j; return c > 0; } in f3() local
13 A bool f4 (double i, double j) { auto c = i <=> j; return c < 0; } in f4() local
14 A bool f5 (double i, double j) { auto c = i <=> j; return c >= 0; } in f5() local
22 A bool f13 (double i) { auto c = i <=> 5.0; return c == 0; } in f13() local
23 A bool f14 (double i) { auto c = i <=> 5.0; return c != 0; } in f14() local
24 A bool f15 (double i) { auto c = i <=> 5.0; return c > 0; } in f15() local
25 A bool f16 (double i) { auto c = i <=> 5.0; return c < 0; } in f16() local
26 A bool f17 (double i) { auto c = i <=> 5.0; return c >= 0; } in f17() local
[all …]
H A Dpr94589-1.C10 A bool f1 (int i, int j) { auto c = i <=> j; return c == 0; } in f1() local
11 A bool f2 (int i, int j) { auto c = i <=> j; return c != 0; } in f2() local
12 A bool f3 (int i, int j) { auto c = i <=> j; return c > 0; } in f3() local
13 A bool f4 (int i, int j) { auto c = i <=> j; return c < 0; } in f4() local
14 A bool f5 (int i, int j) { auto c = i <=> j; return c >= 0; } in f5() local
22 A bool f13 (int i) { auto c = i <=> 5; return c == 0; } in f13() local
23 A bool f14 (int i) { auto c = i <=> 5; return c != 0; } in f14() local
24 A bool f15 (int i) { auto c = i <=> 5; return c > 0; } in f15() local
25 A bool f16 (int i) { auto c = i <=> 5; return c < 0; } in f16() local
26 A bool f17 (int i) { auto c = i <=> 5; return c >= 0; } in f17() local
[all …]
/dports/lang/parrot/parrot-8.1.0/include/parrot/
H A Dcontext.h440 # define Parrot_pcc_set_constants(i, c, ct) do { \ argument
515 # define Parrot_pcc_get_string_constant(i, c, idx) \ argument
520 # define Parrot_pcc_set_recursion_depth(i, c, d) \ argument
534 # define Parrot_pcc_trace_flags_off(i, c, flags) \ argument
536 # define Parrot_pcc_trace_flags_test(i, c, flags) \ argument
543 # define Parrot_pcc_set_continuation(i, c, value) do { \ argument
547 # define Parrot_pcc_set_caller_ctx(i, c, value) do { \ argument
551 # define Parrot_pcc_set_namespace(i, c, value) do { \ argument
556 # define Parrot_pcc_set_lex_pad(i, c, value) do { \ argument
560 # define Parrot_pcc_set_handlers(i, c, value) do { \ argument
[all …]
/dports/math/armadillo/armadillo-10.7.1/tests2/
H A Dhdf5.cpp46 arma::Mat<u8> c; variable
79 arma::Mat<u16> c; variable
112 arma::Mat<u32> c; variable
146 arma::Mat<u64> c; variable
180 arma::Mat<s8> c; variable
213 arma::Mat<s16> c; variable
246 arma::Mat<s32> c; variable
280 arma::Mat<s64> c; variable
314 arma::Mat<char> c; variable
613 arma::Mat<float> c; variable
[all …]
/dports/biology/py-python-libsbml/python-libsbml-5.19.0/libsbml_source/src/bindings/java/test/org/sbml/libsbml/test/sbml/
H A DTestSpecies_newSetters.java163 Species c = new Species(2,2); in test_Species_setCharge2() local
172 Species c = new Species(2,1); in test_Species_setCharge3() local
208 Species c = new Species(2,2); in test_Species_setConstant2() local
224 Species c = new Species(2,2); in test_Species_setHasOnlySubstanceUnits2() local
236 Species c = new Species(2,2); in test_Species_setId2() local
245 Species c = new Species(2,2); in test_Species_setId3() local
255 Species c = new Species(2,2); in test_Species_setId4() local
279 Species c = new Species(2,2); in test_Species_setInitialAmount2() local
299 Species c = new Species(2,2); in test_Species_setInitialConcentration2() local
322 Species c = new Species(2,2); in test_Species_setName2() local
[all …]
H A DTestCompartment_newSetters.java152 Compartment c = new Compartment(2,2); in test_Compartment_setCompartmentType2() local
164 Compartment c = new Compartment(2,2); in test_Compartment_setCompartmentType3() local
177 Compartment c = new Compartment(2,2); in test_Compartment_setCompartmentType4() local
193 Compartment c = new Compartment(2,2); in test_Compartment_setConstant2() local
202 Compartment c = new Compartment(2,2); in test_Compartment_setId2() local
211 Compartment c = new Compartment(2,2); in test_Compartment_setId3() local
221 Compartment c = new Compartment(2,2); in test_Compartment_setId4() local
240 Compartment c = new Compartment(1,2); in test_Compartment_setName2() local
295 Compartment c = new Compartment(2,2); in test_Compartment_setSize2() local
315 Compartment c = new Compartment(2,2); in test_Compartment_setSpatialDimensions2() local
[all …]
/dports/biology/libsbml/libsbml-5.19.0/src/bindings/java/test/org/sbml/libsbml/test/sbml/
H A DTestSpecies_newSetters.java163 Species c = new Species(2,2); in test_Species_setCharge2() local
172 Species c = new Species(2,1); in test_Species_setCharge3() local
208 Species c = new Species(2,2); in test_Species_setConstant2() local
224 Species c = new Species(2,2); in test_Species_setHasOnlySubstanceUnits2() local
236 Species c = new Species(2,2); in test_Species_setId2() local
245 Species c = new Species(2,2); in test_Species_setId3() local
255 Species c = new Species(2,2); in test_Species_setId4() local
279 Species c = new Species(2,2); in test_Species_setInitialAmount2() local
299 Species c = new Species(2,2); in test_Species_setInitialConcentration2() local
322 Species c = new Species(2,2); in test_Species_setName2() local
[all …]
H A DTestCompartment_newSetters.java152 Compartment c = new Compartment(2,2); in test_Compartment_setCompartmentType2() local
164 Compartment c = new Compartment(2,2); in test_Compartment_setCompartmentType3() local
177 Compartment c = new Compartment(2,2); in test_Compartment_setCompartmentType4() local
193 Compartment c = new Compartment(2,2); in test_Compartment_setConstant2() local
202 Compartment c = new Compartment(2,2); in test_Compartment_setId2() local
211 Compartment c = new Compartment(2,2); in test_Compartment_setId3() local
221 Compartment c = new Compartment(2,2); in test_Compartment_setId4() local
240 Compartment c = new Compartment(1,2); in test_Compartment_setName2() local
295 Compartment c = new Compartment(2,2); in test_Compartment_setSize2() local
315 Compartment c = new Compartment(2,2); in test_Compartment_setSpatialDimensions2() local
[all …]
/dports/science/libint2/libint-2.7.1/include/libint2/util/
H A Dvector.h95 Vector<N,T> c; variable
96 for(std::size_t i=0; i<N; ++i) variable
103 Vector<N,T> c; variable
104 for(std::size_t i=0; i<N; ++i) variable
114 Vector<N, T> c; variable
126 Vector<N, T> c; variable
135 Vector<N,T> c; variable
136 for(std::size_t i=0; i<N; ++i) variable
143 Vector<N,T> c; variable
151 Vector<N,T> c; variable
[all …]
/dports/biology/py-python-libsbml/python-libsbml-5.19.0/libsbml_source/src/sbml/test/
H A DTestSpecies_newSetters.c98 Species_t *c = in START_TEST() local
118 Species_t *c = in START_TEST() local
139 Species_t *c = in START_TEST() local
173 Species_t *c = in START_TEST() local
188 Species_t *c = in START_TEST() local
204 Species_t *c = in START_TEST() local
240 Species_t *c = in START_TEST() local
286 Species_t *c = in START_TEST() local
301 Species_t *c = in START_TEST() local
317 Species_t *c = in START_TEST() local
[all …]
/dports/biology/libsbml/libsbml-5.19.0/src/sbml/test/
H A DTestSpecies_newSetters.c98 Species_t *c = in START_TEST() local
118 Species_t *c = in START_TEST() local
139 Species_t *c = in START_TEST() local
173 Species_t *c = in START_TEST() local
188 Species_t *c = in START_TEST() local
204 Species_t *c = in START_TEST() local
240 Species_t *c = in START_TEST() local
286 Species_t *c = in START_TEST() local
301 Species_t *c = in START_TEST() local
317 Species_t *c = in START_TEST() local
[all …]
/dports/science/crf++/crfpp-1dc92a606f874a4fe52603803364cc1d90f952fb/
H A Dlibcrfpp.cpp170 size_t crfpp_result(crfpp_t* c, size_t i) { in crfpp_result()
174 size_t crfpp_answer(crfpp_t* c, size_t i) { in crfpp_answer()
178 size_t crfpp_y(crfpp_t* c, size_t i) { in crfpp_y()
186 double crfpp_prob(crfpp_t* c, size_t i, size_t j) { in crfpp_prob()
190 double crfpp_prob2(crfpp_t* c, size_t i) { in crfpp_prob2()
206 double crfpp_alpha(crfpp_t* c, size_t i, size_t j) { in crfpp_alpha()
210 double crfpp_beta(crfpp_t* c, size_t i, size_t j) { in crfpp_beta()
272 const char* crfpp_yname(crfpp_t* c, size_t i) { in crfpp_yname()
276 const char* crfpp_y2(crfpp_t* c, size_t i) { in crfpp_y2()
280 const char* crfpp_x(crfpp_t* c, size_t i, size_t j) { in crfpp_x()
[all …]
/dports/multimedia/libopenshot/libopenshot-0.2.7/tests/
H A DCacheMemory.cpp44 CacheMemory c; variable
47 for (int i = 0; i < 50; i++) variable
65 for (int i = 30; i > 0; i--) variable
77 for (int i = 10; i > 0; i--) variable
104 for (int i = 0; i < 10; i++) variable
128 for (int i = 0; i < 10; i++) variable
145 for (int i = 1; i < 6; i++) variable
259 CacheMemory c; variable
262 for (int i = 0; i < 20; i++) variable
284 CacheMemory c; variable
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/llvm/libcxx/test/std/containers/sequences/forwardlist/forwardlist.iter/
H A Dbefore_begin.pass.cpp27 C c; in main() local
28 C::iterator i = c.before_begin(); in main() local
34 const C c; in main() local
41 const C c; in main() local
50 C c(std::begin(t), std::end(t)); in main() local
51 C::iterator i = c.before_begin(); in main() local
67 C c; in main() local
68 C::iterator i = c.before_begin(); in main() local
74 const C c; in main() local
81 const C c; in main() local
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/buildtools/third_party/libc++/trunk/test/std/containers/sequences/forwardlist/forwardlist.iter/
H A Dbefore_begin.pass.cpp27 C c; in main() local
28 C::iterator i = c.before_begin(); in main() local
34 const C c; in main() local
41 const C c; in main() local
50 C c(std::begin(t), std::end(t)); in main() local
51 C::iterator i = c.before_begin(); in main() local
67 C c; in main() local
68 C::iterator i = c.before_begin(); in main() local
74 const C c; in main() local
81 const C c; in main() local
[all …]
/dports/devel/llvm-cheri/llvm-project-37c49ff00e3eadce5d8703fdc4497f28458c64a8/libcxx/test/std/containers/sequences/forwardlist/forwardlist.iter/
H A Dbefore_begin.pass.cpp27 C c; in main() local
28 C::iterator i = c.before_begin(); in main() local
34 const C c; in main() local
41 const C c; in main() local
50 C c(std::begin(t), std::end(t)); in main() local
51 C::iterator i = c.before_begin(); in main() local
67 C c; in main() local
68 C::iterator i = c.before_begin(); in main() local
74 const C c; in main() local
81 const C c; in main() local
[all …]
/dports/devel/wasi-libcxx/llvm-project-13.0.1.src/libcxx/test/std/containers/sequences/forwardlist/forwardlist.iter/
H A Dbefore_begin.pass.cpp27 C c; in main() local
28 C::iterator i = c.before_begin(); in main() local
34 const C c; in main() local
41 const C c; in main() local
50 C c(std::begin(t), std::end(t)); in main() local
51 C::iterator i = c.before_begin(); in main() local
67 C c; in main() local
68 C::iterator i = c.before_begin(); in main() local
74 const C c; in main() local
81 const C c; in main() local
[all …]
/dports/devel/llvm12/llvm-project-12.0.1.src/libcxx/test/std/containers/sequences/forwardlist/forwardlist.iter/
H A Dbefore_begin.pass.cpp27 C c; in main() local
28 C::iterator i = c.before_begin(); in main() local
34 const C c; in main() local
41 const C c; in main() local
50 C c(std::begin(t), std::end(t)); in main() local
51 C::iterator i = c.before_begin(); in main() local
67 C c; in main() local
68 C::iterator i = c.before_begin(); in main() local
74 const C c; in main() local
81 const C c; in main() local
[all …]
/dports/devel/llvm-devel/llvm-project-f05c95f10fc1d8171071735af8ad3a9e87633120/libcxx/test/std/containers/sequences/forwardlist/forwardlist.iter/
H A Dbefore_begin.pass.cpp27 C c; in main() local
28 C::iterator i = c.before_begin(); in main() local
34 const C c; in main() local
41 const C c; in main() local
50 C c(std::begin(t), std::end(t)); in main() local
51 C::iterator i = c.before_begin(); in main() local
67 C c; in main() local
68 C::iterator i = c.before_begin(); in main() local
74 const C c; in main() local
81 const C c; in main() local
[all …]
/dports/devel/libc++/libcxx-10.0.1.src/test/std/containers/sequences/forwardlist/forwardlist.iter/
H A Dbefore_begin.pass.cpp27 C c; in main() local
28 C::iterator i = c.before_begin(); in main() local
34 const C c; in main() local
41 const C c; in main() local
50 C c(std::begin(t), std::end(t)); in main() local
51 C::iterator i = c.before_begin(); in main() local
67 C c; in main() local
68 C::iterator i = c.before_begin(); in main() local
74 const C c; in main() local
81 const C c; in main() local
[all …]
/dports/devel/wasi-compiler-rt13/llvm-project-13.0.1.src/libcxx/test/std/containers/sequences/forwardlist/forwardlist.iter/
H A Dbefore_begin.pass.cpp27 C c; in main() local
28 C::iterator i = c.before_begin(); in main() local
34 const C c; in main() local
41 const C c; in main() local
50 C c(std::begin(t), std::end(t)); in main() local
51 C::iterator i = c.before_begin(); in main() local
67 C c; in main() local
68 C::iterator i = c.before_begin(); in main() local
74 const C c; in main() local
81 const C c; in main() local
[all …]

12345678910>>...10828