Home
last modified time | relevance | path

Searched refs:new_f (Results 1 – 25 of 649) sorted by relevance

12345678910>>...26

/dports/net/kamailio/kamailio-5.4.5/src/modules/tls/
H A Dtls_cfg.c109 str new_f; in fix_rel_pathname() local
120 new_f.s = get_abs_pathname(0, f); in fix_rel_pathname()
121 if (new_f.s == 0) in fix_rel_pathname()
123 new_f.len = strlen(new_f.s); in fix_rel_pathname()
124 if (new_f.len >= MAX_PATH_SIZE) { in fix_rel_pathname()
127 new_f.len, new_f.len, new_f.s); in fix_rel_pathname()
128 pkg_free(new_f.s); in fix_rel_pathname()
131 memcpy(path_buf, new_f.s, new_f.len); in fix_rel_pathname()
132 pkg_free(new_f.s); in fix_rel_pathname()
133 new_f.s = path_buf; in fix_rel_pathname()
[all …]
/dports/biology/py-biopython/biopython-1.79/Tests/
H A Dseq_tests_common.py58 def compare_feature(self, old_f, new_f): argument
61 self.assertIsInstance(new_f, SeqFeature)
62 self.assertEqual(old_f.type, new_f.type)
63 self.assertEqual(old_f.strand, new_f.strand)
64 self.assertEqual(old_f.ref, new_f.ref)
65 self.assertEqual(old_f.ref_db, new_f.ref_db)
67 if new_f.id != "<unknown id>":
68 self.assertEqual(old_f.id, new_f.id)
110 if isinstance(new_f.qualifiers[key], str):
126 for old_f, new_f in zip(old_list, new_list):
[all …]
/dports/security/zeronet/ZeroNet-0.7.1/src/Test/
H A DTestDiff.py41 new_f = io.BytesIO(b"one\ntwo\nthree\nfour\nfive\nsix")
42 actions = Diff.diff(list(old_f), list(new_f), limit=1024)
46 new_f = io.BytesIO(b"one\ntwo\nthree\nfour\nfive\nsix"*1024)
47 actions = Diff.diff(list(old_f), list(new_f), limit=1024)
52 new_f = io.BytesIO(b"one\ntwo\nthree\nfour\nfive\nsix")
55 list(new_f)
58 assert Diff.patch(old_f, actions).getvalue() == new_f.getvalue()
/dports/net-im/libpurple/pidgin-2.14.8/libpurple/protocols/zephyr/
H A Dzephyr.c455 frames = new_f; in html_to_zephyr()
467 frames = new_f; in html_to_zephyr()
480 new_f->env = ""; in html_to_zephyr()
483 frames = new_f; in html_to_zephyr()
492 frames = new_f; in html_to_zephyr()
508 frames = new_f; in html_to_zephyr()
521 frames = new_f; in html_to_zephyr()
550 new_f->env = ""; in html_to_zephyr()
559 frames = new_f; in html_to_zephyr()
635 zframe *new_f; in zephyr_to_html() local
[all …]
/dports/net-im/pidgin/pidgin-2.14.8/libpurple/protocols/zephyr/
H A Dzephyr.c455 frames = new_f; in html_to_zephyr()
467 frames = new_f; in html_to_zephyr()
480 new_f->env = ""; in html_to_zephyr()
483 frames = new_f; in html_to_zephyr()
492 frames = new_f; in html_to_zephyr()
508 frames = new_f; in html_to_zephyr()
521 frames = new_f; in html_to_zephyr()
550 new_f->env = ""; in html_to_zephyr()
559 frames = new_f; in html_to_zephyr()
635 zframe *new_f; in zephyr_to_html() local
[all …]
/dports/net-im/finch/pidgin-2.14.8/libpurple/protocols/zephyr/
H A Dzephyr.c455 frames = new_f; in html_to_zephyr()
467 frames = new_f; in html_to_zephyr()
480 new_f->env = ""; in html_to_zephyr()
483 frames = new_f; in html_to_zephyr()
492 frames = new_f; in html_to_zephyr()
508 frames = new_f; in html_to_zephyr()
521 frames = new_f; in html_to_zephyr()
550 new_f->env = ""; in html_to_zephyr()
559 frames = new_f; in html_to_zephyr()
635 zframe *new_f; in zephyr_to_html() local
[all …]
/dports/devel/dulwich/dulwich-0.19.16/dulwich/tests/
H A Dtest_file.py60 new_f = open(self.bar, 'rb')
61 self.assertEqual(b'foo contents', new_f.read())
62 new_f.close()
69 new_f = open(self.bar, 'rb')
71 new_f.close()
82 new_f = open(self.foo, 'rb')
84 new_f.close()
86 new_f = open(self.bar, 'rb')
88 new_f.close()
149 new_f = open(foo, 'rb')
[all …]
/dports/net/py-mpi4py/mpi4py-3.1.3/demo/futures/
H A Dtest_futures.py1046 new_f = base_f.then()
1058 new_f = base_f.then()
1066 self.assert_(new_f.done())
1102 new_f = base_f.then()
1121 new_f = base_f.then()
1133 new_f.result()
1182 new_f.result()
1209 new_f.result()
1243 new_f = base_f.catch()
1277 new_f.result()
[all …]
/dports/lang/racket/racket-8.3/src/worksp/
H A Dgenvsx.c32 FILE *f, *new_f; in adjust_file() local
43 new_f = fopen(new_fn, "w"); in adjust_file()
65 fwrite("X", 1, 1, new_f); in adjust_file()
67 fwrite(filename_suffix, 1, filename_pos, new_f); in adjust_file()
70 fputc(i, new_f); in adjust_file()
75 fwrite(vers, 1, strlen(vers), new_f); in adjust_file()
82 fclose(new_f); in adjust_file()
/dports/lang/racket-minimal/racket-8.3/src/worksp/
H A Dgenvsx.c32 FILE *f, *new_f; in adjust_file() local
43 new_f = fopen(new_fn, "w"); in adjust_file()
65 fwrite("X", 1, 1, new_f); in adjust_file()
67 fwrite(filename_suffix, 1, filename_pos, new_f); in adjust_file()
70 fputc(i, new_f); in adjust_file()
75 fwrite(vers, 1, strlen(vers), new_f); in adjust_file()
82 fclose(new_f); in adjust_file()
/dports/devel/py-prompt-toolkit2/prompt_toolkit-2.0.10/prompt_toolkit/eventloop/
H A Dcoroutine.py88 new_f = coroutine.send(None)
92 new_f = coroutine.throw(exc)
94 new_f = coroutine.send(f.result())
110 assert isinstance(new_f, Future), 'got %r' % (new_f, )
112 @new_f.add_done_callback
114 step_next(new_f)
/dports/devel/py-lineedit/lineedit-0.1.6/lineedit/deps/prompt_toolkit/eventloop/
H A Dcoroutine.py88 new_f = coroutine.send(None)
92 new_f = coroutine.throw(exc)
94 new_f = coroutine.send(f.result())
110 assert isinstance(new_f, Future), 'got %r' % (new_f, )
112 @new_f.add_done_callback
114 step_next(new_f)
/dports/databases/xtrabackup/boost_1_59_0/libs/multiprecision/test/
H A Dtest_rat_float_interconv.cpp92 Float new_f(rat); in do_round_trip() local
93 BOOST_CHECK_EQUAL(val, new_f); in do_round_trip()
112 new_f = static_cast<Float>(rounded); in do_round_trip()
113 BOOST_CHECK_EQUAL(val, new_f); in do_round_trip()
115 new_f = static_cast<Float>(rounded); in do_round_trip()
116 BOOST_CHECK_EQUAL(val, new_f); in do_round_trip()
120 new_f = static_cast<Float>(rounded); in do_round_trip()
121 BOOST_CHECK_EQUAL(val, new_f); in do_round_trip()
124 BOOST_CHECK_EQUAL(val, new_f); in do_round_trip()
129 BOOST_CHECK_EQUAL(val, new_f); in do_round_trip()
[all …]
/dports/databases/percona57-pam-for-mysql/boost_1_59_0/libs/multiprecision/test/
H A Dtest_rat_float_interconv.cpp92 Float new_f(rat); in do_round_trip() local
93 BOOST_CHECK_EQUAL(val, new_f); in do_round_trip()
112 new_f = static_cast<Float>(rounded); in do_round_trip()
113 BOOST_CHECK_EQUAL(val, new_f); in do_round_trip()
115 new_f = static_cast<Float>(rounded); in do_round_trip()
116 BOOST_CHECK_EQUAL(val, new_f); in do_round_trip()
120 new_f = static_cast<Float>(rounded); in do_round_trip()
121 BOOST_CHECK_EQUAL(val, new_f); in do_round_trip()
124 BOOST_CHECK_EQUAL(val, new_f); in do_round_trip()
129 BOOST_CHECK_EQUAL(val, new_f); in do_round_trip()
[all …]
/dports/databases/mysqlwsrep57-server/boost_1_59_0/libs/multiprecision/test/
H A Dtest_rat_float_interconv.cpp92 Float new_f(rat); in do_round_trip() local
93 BOOST_CHECK_EQUAL(val, new_f); in do_round_trip()
112 new_f = static_cast<Float>(rounded); in do_round_trip()
113 BOOST_CHECK_EQUAL(val, new_f); in do_round_trip()
115 new_f = static_cast<Float>(rounded); in do_round_trip()
116 BOOST_CHECK_EQUAL(val, new_f); in do_round_trip()
120 new_f = static_cast<Float>(rounded); in do_round_trip()
121 BOOST_CHECK_EQUAL(val, new_f); in do_round_trip()
124 BOOST_CHECK_EQUAL(val, new_f); in do_round_trip()
129 BOOST_CHECK_EQUAL(val, new_f); in do_round_trip()
[all …]
/dports/databases/percona57-server/boost_1_59_0/libs/multiprecision/test/
H A Dtest_rat_float_interconv.cpp92 Float new_f(rat); in do_round_trip() local
93 BOOST_CHECK_EQUAL(val, new_f); in do_round_trip()
112 new_f = static_cast<Float>(rounded); in do_round_trip()
113 BOOST_CHECK_EQUAL(val, new_f); in do_round_trip()
115 new_f = static_cast<Float>(rounded); in do_round_trip()
116 BOOST_CHECK_EQUAL(val, new_f); in do_round_trip()
120 new_f = static_cast<Float>(rounded); in do_round_trip()
121 BOOST_CHECK_EQUAL(val, new_f); in do_round_trip()
124 BOOST_CHECK_EQUAL(val, new_f); in do_round_trip()
129 BOOST_CHECK_EQUAL(val, new_f); in do_round_trip()
[all …]
/dports/databases/percona57-client/boost_1_59_0/libs/multiprecision/test/
H A Dtest_rat_float_interconv.cpp92 Float new_f(rat); in do_round_trip() local
93 BOOST_CHECK_EQUAL(val, new_f); in do_round_trip()
112 new_f = static_cast<Float>(rounded); in do_round_trip()
113 BOOST_CHECK_EQUAL(val, new_f); in do_round_trip()
115 new_f = static_cast<Float>(rounded); in do_round_trip()
116 BOOST_CHECK_EQUAL(val, new_f); in do_round_trip()
120 new_f = static_cast<Float>(rounded); in do_round_trip()
121 BOOST_CHECK_EQUAL(val, new_f); in do_round_trip()
124 BOOST_CHECK_EQUAL(val, new_f); in do_round_trip()
129 BOOST_CHECK_EQUAL(val, new_f); in do_round_trip()
[all …]
/dports/www/libdom/libdom-0.4.1/src/core/
H A Ddoc_fragment.c106 dom_document_fragment *new_f; in _dom_df_copy() local
109 new_f = malloc(sizeof(dom_document_fragment)); in _dom_df_copy()
110 if (new_f == NULL) in _dom_df_copy()
113 err = dom_node_copy_internal(old, new_f); in _dom_df_copy()
115 free(new_f); in _dom_df_copy()
119 *copy = (dom_node_internal *) new_f; in _dom_df_copy()
/dports/devel/boost-docs/boost_1_72_0/libs/multiprecision/test/
H A Dtest_rat_float_interconv.cpp92 Float new_f(rat); in do_round_trip() local
93 BOOST_CHECK_EQUAL(val, new_f); in do_round_trip()
112 new_f = static_cast<Float>(rounded); in do_round_trip()
113 BOOST_CHECK_EQUAL(val, new_f); in do_round_trip()
115 new_f = static_cast<Float>(rounded); in do_round_trip()
116 BOOST_CHECK_EQUAL(val, new_f); in do_round_trip()
120 new_f = static_cast<Float>(rounded); in do_round_trip()
121 BOOST_CHECK_EQUAL(val, new_f); in do_round_trip()
124 BOOST_CHECK_EQUAL(val, new_f); in do_round_trip()
129 BOOST_CHECK_EQUAL(val, new_f); in do_round_trip()
[all …]
/dports/devel/boost-python-libs/boost_1_72_0/libs/multiprecision/test/
H A Dtest_rat_float_interconv.cpp92 Float new_f(rat); in do_round_trip() local
93 BOOST_CHECK_EQUAL(val, new_f); in do_round_trip()
112 new_f = static_cast<Float>(rounded); in do_round_trip()
113 BOOST_CHECK_EQUAL(val, new_f); in do_round_trip()
115 new_f = static_cast<Float>(rounded); in do_round_trip()
116 BOOST_CHECK_EQUAL(val, new_f); in do_round_trip()
120 new_f = static_cast<Float>(rounded); in do_round_trip()
121 BOOST_CHECK_EQUAL(val, new_f); in do_round_trip()
124 BOOST_CHECK_EQUAL(val, new_f); in do_round_trip()
129 BOOST_CHECK_EQUAL(val, new_f); in do_round_trip()
[all …]
/dports/devel/boost-libs/boost_1_72_0/libs/multiprecision/test/
H A Dtest_rat_float_interconv.cpp92 Float new_f(rat); in do_round_trip() local
93 BOOST_CHECK_EQUAL(val, new_f); in do_round_trip()
112 new_f = static_cast<Float>(rounded); in do_round_trip()
113 BOOST_CHECK_EQUAL(val, new_f); in do_round_trip()
115 new_f = static_cast<Float>(rounded); in do_round_trip()
116 BOOST_CHECK_EQUAL(val, new_f); in do_round_trip()
120 new_f = static_cast<Float>(rounded); in do_round_trip()
121 BOOST_CHECK_EQUAL(val, new_f); in do_round_trip()
124 BOOST_CHECK_EQUAL(val, new_f); in do_round_trip()
129 BOOST_CHECK_EQUAL(val, new_f); in do_round_trip()
[all …]
/dports/devel/hyperscan/boost_1_75_0/libs/multiprecision/test/
H A Dtest_rat_float_interconv.cpp92 Float new_f(rat); in do_round_trip() local
93 BOOST_CHECK_EQUAL(val, new_f); in do_round_trip()
112 new_f = static_cast<Float>(rounded); in do_round_trip()
113 BOOST_CHECK_EQUAL(val, new_f); in do_round_trip()
115 new_f = static_cast<Float>(rounded); in do_round_trip()
116 BOOST_CHECK_EQUAL(val, new_f); in do_round_trip()
120 new_f = static_cast<Float>(rounded); in do_round_trip()
121 BOOST_CHECK_EQUAL(val, new_f); in do_round_trip()
124 BOOST_CHECK_EQUAL(val, new_f); in do_round_trip()
129 BOOST_CHECK_EQUAL(val, new_f); in do_round_trip()
[all …]
/dports/net/kamailio/kamailio-5.4.5/doc/scripts/cdefs2doc/
H A Ddump_selects.pl268 my ($prev, $type, $name, $new_f, $flags);
285 ($prev, $type, $name, $new_f, $flags)=@$m;
327 if ($new_f eq "" || $new_f eq "0"){
331 @sel=map("$s$_", gen_selects($new_f, $skip_next));
344 if (!($new_f eq "" || $new_f eq "0")){
345 @sel=map("$s$_", gen_selects($new_f, $skip_next));
451 my ($prev_f, $type, $name, $new_f, $flags);
466 $new_f=
473 $new_f, $flags];
/dports/biology/ncbi-cxx-toolkit/ncbi_cxx--25_2_0/src/objects/general/
H A DUser_field.cpp250 CConstRef<CUser_field> new_f; in GetFieldRef() local
271 f = new_f; in GetFieldRef()
360 CRef<CUser_field> new_f; in SetFieldRef() local
366 new_f = *field_iter; in SetFieldRef()
370 new_f = *field_iter; in SetFieldRef()
379 if ( !new_f ) { in SetFieldRef()
385 f = new_f; in SetFieldRef()
416 CRef<CUser_field> new_f; in DeleteField() local
426 new_f = *field_iter; in DeleteField()
435 if ( !new_f ) { in DeleteField()
[all …]
/dports/biology/ncbi-blast+/ncbi-blast-2.12.0+-src/c++/src/objects/general/
H A DUser_field.cpp250 CConstRef<CUser_field> new_f; in GetFieldRef() local
271 f = new_f; in GetFieldRef()
360 CRef<CUser_field> new_f; in SetFieldRef() local
366 new_f = *field_iter; in SetFieldRef()
370 new_f = *field_iter; in SetFieldRef()
379 if ( !new_f ) { in SetFieldRef()
385 f = new_f; in SetFieldRef()
416 CRef<CUser_field> new_f; in DeleteField() local
426 new_f = *field_iter; in DeleteField()
435 if ( !new_f ) { in DeleteField()
[all …]

12345678910>>...26