Home
last modified time | relevance | path

Searched refs:outseq (Results 1 – 25 of 235) sorted by last modified time

12345678910

/dports/editors/uemacs/uemacs-4.0/src/
H A Dkeyboard.c320 char outseq[NSTRING]; /* output buffer for key sequence */ local
337 *outseq = '"';
338 if (rec_seq(outseq + 1, outseq, keymap) == TRUE) {
H A Dfile.c868 char outseq[NSTRING]; /* output buffer for file names */ local
895 strcpy(outseq, sp);
896 if (addline(dirbuf, outseq) != TRUE)
H A Deval.c1636 strcpy(outseq, "$");
1637 strcat(outseq, envars[uindex]);
1638 pad(outseq, 14);
1657 strcpy(outseq, "----- ");
1664 strcat(outseq, "(");
1668 strcat(outseq, ", ");
1672 strcat(outseq, ")");
1675 strcat(outseq, " -----");
1687 strcpy(outseq, "%");
1689 pad(outseq, 14);
[all …]
H A Dbind.c202 strcpy(outseq, TEXT215);
204 strcat(outseq, &bufn[1]);
215 strcat(outseq, " ");
216 mlwrite(outseq);
419 cpos = strlen(outseq);
434 outseq[cpos++] = ' ';
450 outseq[cpos] = 0;
469 strcpy(outseq, bp->b_bname);
470 cpos = strlen(outseq);
485 outseq[cpos++] = ' ';
[all …]
H A Dabbrev.c153 char outseq[NSTRING]; /* output buffer for keystroke sequence */ local
173 strcpy(outseq, cur_node->ab_sym);
174 pad(outseq, 20);
177 strncat(outseq, cur_node->ab_exp, NSTRING - 20);
178 outseq[NSTRING - 1] = 0;
181 if (addline(abbbuf, outseq) != TRUE)
/dports/devel/boost-libs/boost_1_72_0/libs/locale/src/posix/
H A Dcodecvt.cpp169 char outseq[3] = {0}; in from_unicode() local
170 char *outbuf = outseq; in from_unicode()
182 *begin++ = outseq[i]; in from_unicode()
/dports/biology/mafft/mafft-7.267-without-extensions/core/
H A Dmafft-homologs.tmpl332 outseq = []
334 readfasta( bfp, outnam, outseq )
340 len = outseq.length
346 outseq2.push( outseq[i] )
351 len = outseq[0].length
/dports/biology/p5-BioPerl-Run/BioPerl-Run-1.007003/scripts/
H A Dpapplmaker.PLS370 ->outseq;
/dports/math/R-cran-igraph/igraph/src/
H A Drinterface.c4130 igraph_vector_t outseq, *myoutseq=0; in R_igraph_barabasi_game() local
4139 R_SEXP_to_vector(poutseq, &outseq); in R_igraph_barabasi_game()
4140 myoutseq=&outseq; in R_igraph_barabasi_game()
4166 igraph_vector_t outseq; in R_igraph_recent_degree_game() local
4172 R_SEXP_to_vector(poutseq, &outseq); in R_igraph_recent_degree_game()
4174 igraph_recent_degree_game(&g, n, power, window, m, &outseq, outpref, in R_igraph_recent_degree_game()
4877 igraph_vector_t outseq; in R_igraph_degree_sequence_game() local
4882 R_SEXP_to_vector(pout_seq, &outseq); in R_igraph_degree_sequence_game()
4884 igraph_degree_sequence_game(&g, &outseq, in R_igraph_degree_sequence_game()
H A Dgames.c108 if (outseq) { in igraph_i_barabasi_game_bag()
218 if (outseq) { in igraph_i_barabasi_game_psumtree_multiple()
504 if (outseq && igraph_vector_size(outseq) == 0) { in igraph_barabasi_game()
526 if (outseq != 0 && igraph_vector_size(outseq) != 0 && in igraph_barabasi_game()
533 if (outseq && igraph_vector_min(outseq) < 0) { in igraph_barabasi_game()
1911 if (outseq != 0 && igraph_vector_size(outseq) != 0 && igraph_vector_size(outseq) != n) { in igraph_recent_degree_game()
1918 if (outseq == 0 || igraph_vector_size(outseq) == 0) { in igraph_recent_degree_game()
2072 … if (outseq != 0 && igraph_vector_size(outseq) != 0 && igraph_vector_size(outseq) != no_of_nodes) { in igraph_barabasi_aging_game()
2082 if (outseq == 0 || igraph_vector_size(outseq) == 0) { in igraph_barabasi_aging_game()
2228 … if (outseq != 0 && igraph_vector_size(outseq) != 0 && igraph_vector_size(outseq) != no_of_nodes) { in igraph_recent_degree_aging_game()
[all …]
/dports/math/R-cran-igraph/igraph/src/include/
H A Digraph_games.h44 const igraph_vector_t *outseq,
53 const igraph_vector_t *outseq,
72 const igraph_vector_t *outseq,
86 const igraph_vector_t *outseq,
93 const igraph_vector_t *outseq,
/dports/math/igraph/igraph-0.9.5/tests/unit/
H A Digraph_recent_degree_aging_game.c25 igraph_vector_t outseq; in main() local
50 igraph_vector_init_int(&outseq, 7, 1, 2, 1, 2, 1, 2, 1); in main()
51 IGRAPH_ASSERT(igraph_recent_degree_aging_game(&g, /*nodes*/7, /*edges per step(m)*/ 0, &outseq, in main()
64 igraph_vector_destroy(&outseq); in main()
H A Digraph_barabasi_aging_game.out41 Increasing thickness of the line using outseq:
H A Digraph_barabasi_aging_game.c24 igraph_vector_t outseq; in main() local
88 igraph_vector_init_int(&outseq, 5, 1, 2, 3, 4, 5); in main()
91 /*outseq: edges per step as vector*/ &outseq, /*outpref*/ 0, in main()
97 igraph_vector_destroy(&outseq); in main()
/dports/math/igraph/igraph-0.9.5/interfaces/
H A Dfunctions.yaml148 VECTOR_OR_0 outseq, BOOLEAN outpref=False, REAL A=1.0,
170 OUT GRAPH graph, INTEGER nodes, INTEGER m=1, VECTOR_OR_0 outseq,
178 INTEGER m=1, VECTOR_OR_0 outseq, BOOLEAN outpref=False,
183 OUT GRAPH graph, INTEGER nodes, INTEGER m=1, VECTOR_OR_0 outseq,
/dports/math/igraph/igraph-0.9.5/src/games/
H A Dbarabasi.c84 if (outseq) { in igraph_i_barabasi_game_bag()
143 if (outseq) { in igraph_i_barabasi_game_bag()
197 if (outseq) { in igraph_i_barabasi_game_psumtree_multiple()
304 if (outseq) { in igraph_i_barabasi_game_psumtree()
484 if (outseq && igraph_vector_size(outseq) == 0) { in igraph_barabasi_game()
485 outseq = 0; in igraph_barabasi_game()
506 if (outseq != 0 && igraph_vector_size(outseq) != 0 && in igraph_barabasi_game()
513 if (outseq && igraph_vector_min(outseq) < 0) { in igraph_barabasi_game()
637 … if (outseq != 0 && igraph_vector_size(outseq) != 0 && igraph_vector_size(outseq) != no_of_nodes) { in igraph_barabasi_aging_game()
680 if (outseq == 0 || igraph_vector_size(outseq) == 0) { in igraph_barabasi_aging_game()
[all …]
H A Drecent_degree.c68 const igraph_vector_t *outseq, in igraph_recent_degree_game() argument
82 igraph_bool_t have_outseq = outseq && igraph_vector_size(outseq) > 0; in igraph_recent_degree_game()
87 if (have_outseq && igraph_vector_size(outseq) != no_of_nodes) { in igraph_recent_degree_game()
111 long int outseq_len = igraph_vector_size(outseq); in igraph_recent_degree_game()
114 no_of_edges += VECTOR(*outseq)[i]; in igraph_recent_degree_game()
137 no_of_neighbors = (long int) VECTOR(*outseq)[i]; in igraph_recent_degree_game()
227 const igraph_vector_t *outseq, in igraph_recent_degree_aging_game() argument
246 igraph_bool_t have_outseq = outseq && igraph_vector_size(outseq) > 0; in igraph_recent_degree_aging_game()
276 long int outseq_len = igraph_vector_size(outseq); in igraph_recent_degree_aging_game()
279 no_of_edges += VECTOR(*outseq)[i]; in igraph_recent_degree_aging_game()
[all …]
/dports/math/igraph/igraph-0.9.5/include/
H A Digraph_games.h44 const igraph_vector_t *outseq,
65 const igraph_vector_t *outseq,
79 const igraph_vector_t *outseq,
86 const igraph_vector_t *outseq,
/dports/math/igraph/igraph-0.9.5/
H A DONEWS171 - Fixed a bug in igraph_barabasi_game when outseq was an empty vector.
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/src/java.base/share/classes/sun/security/provider/
H A DDSA.java246 byte[] outseq = new byte[size * 2]; in engineSign()
257 System.arraycopy(rBytes, rLength - i, outseq, size - i, i); in engineSign()
258 System.arraycopy(sBytes, sLength - j, outseq, size * 2 - j, j); in engineSign()
260 return outseq; in engineSign()
264 DerOutputStream outseq = new DerOutputStream(100); in engineSign() local
265 outseq.putInteger(r); in engineSign()
266 outseq.putInteger(s); in engineSign()
268 outseq.toByteArray()); in engineSign()
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/src/jdk.crypto.cryptoki/share/classes/sun/security/pkcs11/
H A DP11Signature.java786 DerOutputStream outseq = new DerOutputStream(100); in dsaToASN1() local
787 outseq.putInteger(r); in dsaToASN1()
788 outseq.putInteger(s); in dsaToASN1()
790 outseq.toByteArray()); in dsaToASN1()
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/src/jdk.crypto.cryptoki/share/classes/sun/security/pkcs11/
H A DP11Signature.java792 DerOutputStream outseq = new DerOutputStream(100); in dsaToASN1() local
793 outseq.putInteger(r); in dsaToASN1()
794 outseq.putInteger(s); in dsaToASN1()
796 outseq.toByteArray()); in dsaToASN1()
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/src/java.base/share/classes/sun/security/provider/
H A DDSA.java246 byte[] outseq = new byte[size * 2]; in engineSign()
257 System.arraycopy(rBytes, rLength - i, outseq, size - i, i); in engineSign()
258 System.arraycopy(sBytes, sLength - j, outseq, size * 2 - j, j); in engineSign()
260 return outseq; in engineSign()
264 DerOutputStream outseq = new DerOutputStream(100); in engineSign() local
265 outseq.putInteger(r); in engineSign()
266 outseq.putInteger(s); in engineSign()
268 outseq.toByteArray()); in engineSign()
/dports/java/openjdk8/jdk8u-jdk8u312-b07.1/jdk/src/share/classes/sun/security/pkcs11/
H A DP11Signature.java759 DerOutputStream outseq = new DerOutputStream(100); in dsaToASN1() local
760 outseq.putInteger(r); in dsaToASN1()
761 outseq.putInteger(s); in dsaToASN1()
763 outseq.toByteArray()); in dsaToASN1()
/dports/java/openjdk8/jdk8u-jdk8u312-b07.1/jdk/src/share/classes/sun/security/provider/
H A DDSA.java223 DerOutputStream outseq = new DerOutputStream(100); in engineSign() local
224 outseq.putInteger(r); in engineSign()
225 outseq.putInteger(s); in engineSign()
227 outseq.toByteArray()); in engineSign()

12345678910