Home
last modified time | relevance | path

Searched refs:rec2 (Results 1 – 25 of 1418) sorted by relevance

12345678910>>...57

/dports/misc/adios2/ADIOS2-2.7.1/thirdparty/ffs/ffs/ffs/tests/
H A Dmarshal_test2.c44 second_rec rec2; in main() local
62 memset((char *) &rec2, 0, sizeof(rec2)); in main()
63 rec2.len = 10; in main()
64 rec2.len2 = 10; in main()
65 rec2.type_array = malloc(sizeof(rec2.type_array[0]) * rec2.len); in main()
66 rec2.value_array = malloc(sizeof(rec2.value_array[0]) * rec2.len2); in main()
68 rec2.type_array[i] = 1; in main()
80 rec2.type_array[i] = 1; in main()
94 memset(&rec2, 0, sizeof(rec2)); in main()
98 if (rec2.len != 3) { in main()
[all …]
H A Dmarshal_test.c36 second_rec rec2; in main() local
54 memset((char *) &rec2, 0, sizeof(rec2)); in main()
55 rec2.len = 10; in main()
56 rec2.array = malloc(sizeof(rec2.array[0]) * rec2.len); in main()
60 rec2.char_field = 'A'; in main()
61 rec2.array[0] = 0.5; in main()
66 rec2.array[0] = 2.0 + .5; in main()
76 memset(&rec2, 0, sizeof(rec2)); in main()
77 FFSread(ffsfile, &rec2); in main()
79 if (rec2.array != NULL) { in main()
[all …]
H A Dappend.c52 second_rec rec2; in main() local
91 memset((char *) &rec2, 0, sizeof(rec2)); in main()
92 rec2.integer_field = 14; in main()
93 rec2.short_field = 27; in main()
94 rec2.long_field = 987234; in main()
95 rec2.string = "testing"; in main()
96 rec2.double_field = 2.717; in main()
97 rec2.char_field = 'A'; in main()
98 if (!write_FFSfile(ffsfile, second_rec_ioformat, &rec2)) in main()
/dports/science/molscript/MolScript-280abee/code/clib/
H A Dmol3d_secstruc.c273 for (rec1 = records, rec2 = rec1 + 1; rec2->ca; rec1++, rec2++) { in mol3d_secstruc_hbonds()
277 v3_difference (&(rec2->h), rec2->o, rec2->c); in mol3d_secstruc_hbonds()
281 v3_add (&(rec2->h), rec2->n); in mol3d_secstruc_hbonds()
285 for (rec2 = rec1 + 3; rec2->ca; rec2++) { in mol3d_secstruc_hbonds()
364 rec2++; in mol3d_secstruc_hbonds()
469 for (rec2 = rec1 + 1; rec2->ca; rec2++) { in mol3d_secstruc_hbonds()
473 rec2++; in mol3d_secstruc_hbonds()
478 rec2++; in mol3d_secstruc_hbonds()
507 for (rec2 = rec1 + 1; rec2->ca; rec2++) { in mol3d_secstruc_hbonds()
511 rec2++; in mol3d_secstruc_hbonds()
[all …]
/dports/lang/py-textX/textX-2.3.0/tests/functional/test_scoping/
H A Dtest_rrel.py171 assert rec2 is rec
174 assert rec2 is rec
178 assert rec2 is rec
181 assert rec2 is None
184 assert rec2 is rec
187 assert rec2 is rec
190 assert rec2.name == "rec"
194 assert rec2.name == "rec"
198 assert rec2 is rec
202 assert rec2 is None
[all …]
/dports/biology/bamutil/bamUtil-1.0.15/src/
H A DDiff.cpp314 if(need2 && (rec2 != NULL)) in execute()
321 rec2 = NULL; in execute()
372 writeDiffs(rec1, rec2); in execute()
491 if(rec2 == NULL) in lessThan()
555 if(!getDiffs(rec1, rec2)) in writeBamDiffs()
618 if(!getDiffs(rec1, rec2)) in writeDiffDiffs()
676 if(rec2 != NULL) in writeDiffDiffs()
738 if(rec2 != NULL) in writeDiffDiffs()
760 writeBamDiffs(rec1, rec2); in writeDiffs()
796 if(rec2 != NULL) in getDiffs()
[all …]
/dports/net/samba412/samba-4.12.15/source4/dns_server/
H A Ddns_utils.c49 struct dnsp_DnssrvRpcRecord *rec2) in dns_records_match() argument
54 if (rec1->wType != rec2->wType) { in dns_records_match()
67 if (rec1->data.txt.count != rec2->data.txt.count) { in dns_records_match()
73 rec2->data.txt.str[i]) == 0); in dns_records_match()
77 return strcmp(rec1->data.ptr, rec2->data.ptr) == 0; in dns_records_match()
79 return dns_name_equal(rec1->data.ns, rec2->data.ns); in dns_records_match()
84 rec1->data.srv.wPort == rec2->data.srv.wPort && in dns_records_match()
98 rec1->data.soa.serial == rec2->data.soa.serial && in dns_records_match()
100 rec1->data.soa.retry == rec2->data.soa.retry && in dns_records_match()
101 rec1->data.soa.expire == rec2->data.soa.expire && in dns_records_match()
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/Mono.C5/Test/
H A DRecords.cs43 Assert.IsTrue(rec1 == rec2); in FourElement()
44 Assert.IsFalse(rec1 != rec2); in FourElement()
47 Assert.IsTrue(rec1.Equals(rec2)); in FourElement()
66 Rec<string, string, int> rec1, rec2, rec3; in ThreeElement()
70 Assert.IsTrue(rec1 == rec2); in ThreeElement()
71 Assert.IsFalse(rec1 != rec2); in ThreeElement()
74 Assert.IsTrue(rec1.Equals(rec2)); in ThreeElement()
92 Rec<string, string> rec1, rec2, rec3; in TwoElement()
96 Assert.IsTrue(rec1 == rec2); in TwoElement()
97 Assert.IsFalse(rec1 != rec2); in TwoElement()
[all …]
/dports/misc/adios2/ADIOS2-2.7.1/thirdparty/ffs/ffs/doc/examples/
H A Dffs_encode2.c23 second_rec rec2; in main() local
32 rec2.name = &str[0]; in main()
33 rec2.count = lrand48()%10; in main()
34 rec2.items = &array[0]; in main()
35 for(j=0; j<rec2.count; j++) rec2.items[j] = lrand48()%5+2; in main()
37 outvec = FFSencode_vector(buf, rec_ioformat, &rec2); in main()
40 printf("Wrote name=%s, count=%ld, items = [", rec2.name, rec2.count); in main()
41 for(j=0; j<rec2.count; j++) printf("%d, ", rec2.items[j]); in main()
H A Dffs_write2.c38 second_rec rec2; in main() local
57 rec2.name = &str[0]; in main()
58 rec2.count = lrand48()%10; in main()
59 rec2.items = &array[0]; in main()
60 for(j=0; j<rec2.count; j++) rec2.items[j] = lrand48()%5+2; in main()
61 write_FFSfile(file, rec_ioformat2, &rec2); in main()
62 printf("Wrote name=%s, count=%ld, items = [", rec2.name, rec2.count); in main()
63 for(j=0; j<rec2.count; j++) printf("%d, ", rec2.items[j]); in main()
/dports/www/webtrees/webtrees-1.7.18/webtrees/
H A Dadmin_site_merge.php50 if ($gid2 && !$rec2) {
54 if ($rec1 && $rec2 && $rec1->getXref() === $rec2->getXref()) {
58 if ($rec1 && $rec2 && $rec1::RECORD_TYPE !== $rec2::RECORD_TYPE) {
76 if ($rec2) {
77 foreach ($rec2->getFacts() as $fact) {
94 if ($rec1 && $rec2 && $rec1->getXref() !== $rec2->getXref() && $rec1::RECORD_TYPE === $rec2::RECORD…
97 $gid2 = $rec2->getXref();
103 $record2_name = $rec2->getFullName();
105 …$record2_name = '<a class="alert-link" href="' . $rec2->getHtmlUrl() . '">' . $rec2->getFullName()…
168 $rec2->deleteRecord();
[all …]
/dports/textproc/bibtool/BibTool/
H A Dcheck.c110 register Record rec2; /* */ local
115 for (rec2 = PrevRecord(rec); /* */
116 rec2 != RecordNULL; /* */
117 rec2 = prev) /* */
118 { Symbol k2 = *RecordHeap(rec2); /* */
121 prev = PrevRecord(rec2); /* */
123 if (rsc_double_check && equal_records(rec,rec2))/* */
130 err_location(RecordLineno(rec2), /* */
131 RecordSource(rec2), NULL); /* */
159 val != RecordSortkey(rec2)) /* */
[all …]
/dports/finance/odoo/odoo-19d77c2a03335eb95a686bd69a1b56b38e87d609/odoo/addons/test_performance/tests/
H A Dtest_performance.py194 rec2.write({'line_ids': [(5,)]})
195 self.assertFalse(rec2.line_ids)
199 rec2.write({'line_ids': [(5,)]})
200 self.assertFalse(rec2.line_ids)
301 self.assertEqual(rec2.tag_ids, tags)
306 self.assertEqual(rec2.tag_ids, tags)
311 rec2.write({'tag_ids': [(5,)]})
312 self.assertFalse(rec2.tag_ids)
317 rec2.write({'tag_ids': [(5,)]})
318 self.assertFalse(rec2.tag_ids)
[all …]
/dports/security/py-muacrypt/muacrypt-0.9.1/test_muacrypt/
H A Dtest_hooks.py30 rec1, rec2 = account_maker(), account_maker()
34 sender.process_incoming(gen_ac_mail_msg(rec2, sender))
37 gossip_msg = gen_ac_mail_msg(sender, [rec1, rec2])
38 enc_msg = sender.encrypt_mime(gossip_msg, [rec1.addr, rec2.addr]).enc_msg
54 assert rec2.addr in addr2pagh
57 assert addr2pagh[rec2.addr].keydata == get_own_pubkey(rec2)
61 rec1, rec2 = account_maker(), account_maker()
65 sender.process_incoming(gen_ac_mail_msg(rec2, sender))
66 gossip_msg = gen_ac_mail_msg(sender, [rec1, rec2])
83 enc_msg = sender.encrypt_mime(gossip_msg, [rec1._fulladdr, rec2.addr]).enc_msg
[all …]
/dports/biology/vcftools/vcftools-0.1.16/src/perl/
H A Dvcf-phased-join367 if ( !defined $rec2 )
382 $rec1 = $rec2;
398 $rec1 = $rec2;
414 $rec1 = $rec2;
430 if ( !defined $rec2 )
438 $rec1 = $rec2;
447 $rec1 = $rec2;
463 my ($opts,$rec1,$rec2) = @_;
464 …[0] ne $$rec2[0] ) { error("Encountered different chromosomes in $$opts{file1} and $$opts{file2}: …
465 if ( $$rec1[1] > $$rec2[1] )
[all …]
/dports/science/healpix/Healpix_3.50/src/cxx/cxxsupport/
H A Dwigner.cc378 if (preMinus ^ (thetaflip[nth] && ((am1+am2)&1))) rec2 = -rec2; in calc()
385 rec2 = (cth - fy[l][1])*fy[l][0]*rec1 - fy[l][2]*rec2; in calc()
390 rec2 *= fsmall; in calc()
397 rec2 *= cf[scale]; in calc()
404 rec2 = (cth - fy[l+2][1])*fy[l+2][0]*rec1 - fy[l+2][2]*rec2; in calc()
409 swap (rec1,rec2); in calc()
416 res[l]=rec2; in calc()
428 res[l] = rec2 = (cth - fy[l][1])*fy[l][0]*rec1 - fy[l][2]*rec2; in calc()
572 rec2*=corfac; in calc()
577 res[l] = rec2; in calc()
[all …]
/dports/lang/erlang-runtime22/otp-OTP-22.3.4.24/lib/dialyzer/test/small_SUITE_data/src/
H A Dcontracts_with_subtypes.erl121 -spec rec2(Arg) -> ok when
124 rec2(X) -> get(X). function
126 d(aa) -> rec2({a, a});
127 d(bb) -> rec2({b, b});
128 d(abb) -> rec2({a, {b, b}});
129 d(baa) -> rec2({b, {a, a}});
130 d(abaa) -> rec2({a, {b, {a, a}}});
131 d(babb) -> rec2({b, {a, {b, b}}});
132 d(ababb) -> rec2({a, {b, {a, {b, b}}}});
133 d(babaa) -> rec2({b, {a, {b, {a, a}}}}).
[all …]
/dports/lang/erlang-runtime23/otp-OTP-23.3.4.10/lib/dialyzer/test/indent_SUITE_data/src/
H A Dcontracts_with_subtypes.erl121 -spec rec2(Arg) -> ok when
124 rec2(X) -> get(X). function
126 d(aa) -> rec2({a, a});
127 d(bb) -> rec2({b, b});
128 d(abb) -> rec2({a, {b, b}});
129 d(baa) -> rec2({b, {a, a}});
130 d(abaa) -> rec2({a, {b, {a, a}}});
131 d(babb) -> rec2({b, {a, {b, b}}});
132 d(ababb) -> rec2({a, {b, {a, {b, b}}}});
133 d(babaa) -> rec2({b, {a, {b, {a, a}}}}).
[all …]
/dports/lang/erlang-runtime23/otp-OTP-23.3.4.10/lib/dialyzer/test/small_SUITE_data/src/
H A Dcontracts_with_subtypes.erl121 -spec rec2(Arg) -> ok when
124 rec2(X) -> get(X). function
126 d(aa) -> rec2({a, a});
127 d(bb) -> rec2({b, b});
128 d(abb) -> rec2({a, {b, b}});
129 d(baa) -> rec2({b, {a, a}});
130 d(abaa) -> rec2({a, {b, {a, a}}});
131 d(babb) -> rec2({b, {a, {b, b}}});
132 d(ababb) -> rec2({a, {b, {a, {b, b}}}});
133 d(babaa) -> rec2({b, {a, {b, {a, a}}}}).
[all …]
/dports/lang/erlang-runtime24/otp-OTP-24.1.7/lib/dialyzer/test/indent_SUITE_data/src/
H A Dcontracts_with_subtypes.erl121 -spec rec2(Arg) -> ok when
124 rec2(X) -> get(X). function
126 d(aa) -> rec2({a, a});
127 d(bb) -> rec2({b, b});
128 d(abb) -> rec2({a, {b, b}});
129 d(baa) -> rec2({b, {a, a}});
130 d(abaa) -> rec2({a, {b, {a, a}}});
131 d(babb) -> rec2({b, {a, {b, b}}});
132 d(ababb) -> rec2({a, {b, {a, {b, b}}}});
133 d(babaa) -> rec2({b, {a, {b, {a, a}}}}).
[all …]
/dports/lang/erlang-runtime24/otp-OTP-24.1.7/lib/dialyzer/test/small_SUITE_data/src/
H A Dcontracts_with_subtypes.erl121 -spec rec2(Arg) -> ok when
124 rec2(X) -> get(X). function
126 d(aa) -> rec2({a, a});
127 d(bb) -> rec2({b, b});
128 d(abb) -> rec2({a, {b, b}});
129 d(baa) -> rec2({b, {a, a}});
130 d(abaa) -> rec2({a, {b, {a, a}}});
131 d(babb) -> rec2({b, {a, {b, b}}});
132 d(ababb) -> rec2({a, {b, {a, {b, b}}}});
133 d(babaa) -> rec2({b, {a, {b, {a, a}}}}).
[all …]
/dports/lang/erlang-runtime22/otp-OTP-22.3.4.24/lib/dialyzer/test/indent_SUITE_data/src/
H A Dcontracts_with_subtypes.erl121 -spec rec2(Arg) -> ok when
124 rec2(X) -> get(X). function
126 d(aa) -> rec2({a, a});
127 d(bb) -> rec2({b, b});
128 d(abb) -> rec2({a, {b, b}});
129 d(baa) -> rec2({b, {a, a}});
130 d(abaa) -> rec2({a, {b, {a, a}}});
131 d(babb) -> rec2({b, {a, {b, b}}});
132 d(ababb) -> rec2({a, {b, {a, {b, b}}}});
133 d(babaa) -> rec2({b, {a, {b, {a, a}}}}).
[all …]
/dports/lang/erlang-wx/otp-OTP-24.1.7/lib/dialyzer/test/indent_SUITE_data/src/
H A Dcontracts_with_subtypes.erl121 -spec rec2(Arg) -> ok when
124 rec2(X) -> get(X). function
126 d(aa) -> rec2({a, a});
127 d(bb) -> rec2({b, b});
128 d(abb) -> rec2({a, {b, b}});
129 d(baa) -> rec2({b, {a, a}});
130 d(abaa) -> rec2({a, {b, {a, a}}});
131 d(babb) -> rec2({b, {a, {b, b}}});
132 d(ababb) -> rec2({a, {b, {a, {b, b}}}});
133 d(babaa) -> rec2({b, {a, {b, {a, a}}}}).
[all …]
/dports/lang/erlang-wx/otp-OTP-24.1.7/lib/dialyzer/test/small_SUITE_data/src/
H A Dcontracts_with_subtypes.erl121 -spec rec2(Arg) -> ok when
124 rec2(X) -> get(X). function
126 d(aa) -> rec2({a, a});
127 d(bb) -> rec2({b, b});
128 d(abb) -> rec2({a, {b, b}});
129 d(baa) -> rec2({b, {a, a}});
130 d(abaa) -> rec2({a, {b, {a, a}}});
131 d(babb) -> rec2({b, {a, {b, b}}});
132 d(ababb) -> rec2({a, {b, {a, {b, b}}}});
133 d(babaa) -> rec2({b, {a, {b, {a, a}}}}).
[all …]
/dports/lang/erlang/otp-OTP-24.1.7/lib/dialyzer/test/small_SUITE_data/src/
H A Dcontracts_with_subtypes.erl121 -spec rec2(Arg) -> ok when
124 rec2(X) -> get(X). function
126 d(aa) -> rec2({a, a});
127 d(bb) -> rec2({b, b});
128 d(abb) -> rec2({a, {b, b}});
129 d(baa) -> rec2({b, {a, a}});
130 d(abaa) -> rec2({a, {b, {a, a}}});
131 d(babb) -> rec2({b, {a, {b, b}}});
132 d(ababb) -> rec2({a, {b, {a, {b, b}}}});
133 d(babaa) -> rec2({b, {a, {b, {a, a}}}}).
[all …]

12345678910>>...57