Home
last modified time | relevance | path

Searched refs:ret_n (Results 1 – 25 of 66) sorted by relevance

123

/dports/textproc/R-cran-stringi/stringi/src/
H A Dstri_prepare_arg.cpp1345 size_t ret_n = strlen(ret_tmp); in stri__copy_string_Ralloc() local
1353 memcpy(ret, ret_tmp, ret_n+1); in stri__copy_string_Ralloc()
1381 size_t ret_n = strlen(ret_tmp); in stri__prepare_arg_string_1_NA() local
1389 memcpy(ret, ret_tmp, ret_n+1); in stri__prepare_arg_string_1_NA()
1483 R_len_t ret_n = strlen(buf); in stri__prepare_arg_locale()
1485 memcpy(ret, buf, ret_n+1); in stri__prepare_arg_locale()
1488 …while (ret_n > 0 && (ret[ret_n-1] == ' ' || ret[ret_n-1] == '\t' || ret[ret_n-1] == '\n' || ret[re… in stri__prepare_arg_locale()
1489 ret[--ret_n] = '\0'; in stri__prepare_arg_locale()
1494 --ret_n; in stri__prepare_arg_locale()
1497 if (ret_n == 0) { in stri__prepare_arg_locale()
[all …]
/dports/devel/pecl-swoole/swoole-4.8.5/tests/swoole_server/task/
H A Dtask_wait.phpt42 list($ret_n, $ret_random) = $server->taskwait($n, 1);
43 if ($ret_n !== $n) {
44 $response->end("ERROR MATCH {$ret_n} with {$n}");
47 …$response->end("ERROR EQUAL {$ret_n}(" . strlen($ret_random) . ") with {$n}(" . strlen($randoms[$n…
H A Dtask_co.phpt47 list($ret_n, $ret_random) = $server->taskCo([$n], 1)[0];
48 if ($ret_n !== $n) {
49 $response->end("ERROR MATCH {$ret_n} with {$n}");
52 …$response->end("ERROR EQUAL {$ret_n}(" . strlen($ret_random) . ") with {$n}(" . strlen($randoms[$n…
H A Denable_coroutine.phpt43 list($ret_n, $ret_random) = $server->taskwait($n, 1);
44 if ($ret_n !== $n) {
45 $response->end("ERROR MATCH {$ret_n} with {$n}");
48 …$response->end("ERROR EQUAL {$ret_n}(" . strlen($ret_random) . ") with {$n}(" . strlen($randoms[$n…
/dports/devel/pecl-swoole/swoole-4.8.5/tests/swoole_http_server/task/
H A Denable_coroutine.phpt42 list($ret_n, $ret_random) = $server->taskCo([$n], 1)[0];
43 if ($ret_n !== $n) {
44 $response->end("ERROR MATCH {$ret_n} with {$n}");
47 …$response->end("ERROR EQUAL {$ret_n}(" . strlen($ret_random) . ") with {$n}(" . strlen($randoms[$n…
/dports/news/fidogate/fidogate-5.10-3-g1c1fd41/src/areafix/
H A Dpkttmpl.c82 int type, ret_n; in do_packet() local
122 ret_n = do_netmail(&msg, &body); in do_packet()
124 if (ret_n == ERROR) in do_packet()
134 ret_n = do_echomail(&msg, &body); in do_packet()
137 if (ret_n == ERROR) in do_packet()
H A Dftnafpkt.c189 int type, ret_n; in do_packet() local
229 ret_n = do_netmail(&msg, &body); in do_packet()
231 if (ret_n == ERROR) in do_packet()
241 ret_n = do_echomail(&msg, &body); in do_packet()
244 if (ret_n == ERROR) in do_packet()
/dports/biology/infernal/infernal-1.1.3/easel/
H A Desl_mpi.h42 …rn int esl_mpi_PackOptSize(void *inbuf, int incount, MPI_Datatype type, MPI_Comm comm, int *ret_n);
48 extern int esl_sq_MPIPackSize(ESL_SQ *sq, MPI_Comm comm, int *ret_n);
56 extern int esl_msa_MPIPackSize(const ESL_MSA *msa, MPI_Comm comm, int *ret_n);
H A Desl_histogram.h92 extern int esl_histogram_GetData(ESL_HISTOGRAM *h, double **ret_x, int *ret_n);
94 int *ret_n, int *ret_z);
96 double **ret_x, int *ret_n, int *ret_z);
H A Desl_mpi.c92 esl_mpi_PackOptSize(void *inbuf, int incount, MPI_Datatype type, MPI_Comm comm, int *ret_n) in esl_mpi_PackOptSize() argument
97 *ret_n = 0; in esl_mpi_PackOptSize()
99 …status = MPI_Pack_size(1, MPI_INT, MPI_COMM_WORLD, &sz); *ret_n += sz; if (status != 0) ESL_… in esl_mpi_PackOptSize()
108 *ret_n = 0; in esl_mpi_PackOptSize()
283 esl_sq_MPIPackSize(ESL_SQ *sq, MPI_Comm comm, int *ret_n) in esl_sq_MPIPackSize() argument
317 *ret_n = n; in esl_sq_MPIPackSize()
321 *ret_n = 0; in esl_sq_MPIPackSize()
723 esl_msa_MPIPackSize(const ESL_MSA *msa, MPI_Comm comm, int *ret_n) in esl_msa_MPIPackSize() argument
730 if (msa == NULL) { *ret_n = 0; return eslOK; } in esl_msa_MPIPackSize()
761 *ret_n = n; in esl_msa_MPIPackSize()
[all …]
H A Desl_huffman.h30 …esl_huffman_Decode(const ESL_HUFFMAN *hc, const uint32_t *X, int nb, char **ret_T, int *ret_n);
H A Desl_histogram.c587 esl_histogram_GetData(ESL_HISTOGRAM *h, double **ret_x, int *ret_n) in esl_histogram_GetData() argument
593 *ret_n = h->n; in esl_histogram_GetData()
636 double **ret_x, int *ret_n, int *ret_z) in esl_histogram_GetTail() argument
659 if (ret_n != NULL) *ret_n = h->n - mid; in esl_histogram_GetTail()
703 double **ret_x, int *ret_n, int *ret_z) in esl_histogram_GetTailByMass() argument
717 if (ret_n != NULL) *ret_n = n; in esl_histogram_GetTailByMass()
H A Desl_buffer.h59 extern int esl_buffer_Get(ESL_BUFFER *bf, char **ret_p, esl_pos_t *ret_n);
/dports/biology/hmmer/hmmer-3.3/easel/
H A Desl_mpi.h42 …rn int esl_mpi_PackOptSize(void *inbuf, int incount, MPI_Datatype type, MPI_Comm comm, int *ret_n);
48 extern int esl_sq_MPIPackSize(ESL_SQ *sq, MPI_Comm comm, int *ret_n);
56 extern int esl_msa_MPIPackSize(const ESL_MSA *msa, MPI_Comm comm, int *ret_n);
H A Desl_histogram.h92 extern int esl_histogram_GetData(ESL_HISTOGRAM *h, double **ret_x, int *ret_n);
94 int *ret_n, int *ret_z);
96 double **ret_x, int *ret_n, int *ret_z);
H A Desl_mpi.c92 esl_mpi_PackOptSize(void *inbuf, int incount, MPI_Datatype type, MPI_Comm comm, int *ret_n) in esl_mpi_PackOptSize() argument
97 *ret_n = 0; in esl_mpi_PackOptSize()
99 …status = MPI_Pack_size(1, MPI_INT, MPI_COMM_WORLD, &sz); *ret_n += sz; if (status != 0) ESL_… in esl_mpi_PackOptSize()
108 *ret_n = 0; in esl_mpi_PackOptSize()
283 esl_sq_MPIPackSize(ESL_SQ *sq, MPI_Comm comm, int *ret_n) in esl_sq_MPIPackSize() argument
317 *ret_n = n; in esl_sq_MPIPackSize()
321 *ret_n = 0; in esl_sq_MPIPackSize()
723 esl_msa_MPIPackSize(const ESL_MSA *msa, MPI_Comm comm, int *ret_n) in esl_msa_MPIPackSize() argument
730 if (msa == NULL) { *ret_n = 0; return eslOK; } in esl_msa_MPIPackSize()
761 *ret_n = n; in esl_msa_MPIPackSize()
[all …]
H A Desl_huffman.h30 …esl_huffman_Decode(const ESL_HUFFMAN *hc, const uint32_t *X, int nb, char **ret_T, int *ret_n);
H A Desl_histogram.c587 esl_histogram_GetData(ESL_HISTOGRAM *h, double **ret_x, int *ret_n) in esl_histogram_GetData() argument
593 *ret_n = h->n; in esl_histogram_GetData()
636 double **ret_x, int *ret_n, int *ret_z) in esl_histogram_GetTail() argument
659 if (ret_n != NULL) *ret_n = h->n - mid; in esl_histogram_GetTail()
703 double **ret_x, int *ret_n, int *ret_z) in esl_histogram_GetTailByMass() argument
717 if (ret_n != NULL) *ret_n = n; in esl_histogram_GetTailByMass()
H A Desl_buffer.h59 extern int esl_buffer_Get(ESL_BUFFER *bf, char **ret_p, esl_pos_t *ret_n);
/dports/devel/pecl-swoole/swoole-4.8.5/examples/php/
H A Dbuf_size.php18 $ret_n = socket_write($socket, str_repeat('A', $n), $n); variable
19 var_dump($ret_n);
/dports/graphics/chafa/chafa-1.8.0/chafa/internal/
H A Dchafa-batch.h33 gint ret_n; member
/dports/x11/pixman/pixman-0.40.0/test/
H A Daffine-bench.c205 uint32_t *ret_n, in bench() argument
252 if (ret_n) in bench()
253 *ret_n = n; in bench()
/dports/security/gnutls/gnutls-3.6.16/lib/
H A Dsrp.h40 int _gnutls_srp_gn(uint8_t ** ret_g, uint8_t ** ret_n, int bits);
/dports/security/gnupg1/gnupg-1.4.23/g10/
H A Dpacket.h467 size_t *ret_n, int *start, int *critical );
470 size_t *ret_n );
473 size_t *ret_n );
/dports/math/octave-forge-signal/signal-1.4.1/inst/
H A Dspecgram.m168 ret_n = (n+1)/2; variable
170 ret_n = n/2; variable
172 S = S(1:ret_n, :);
174 f = [0:ret_n-1]*Fs/n;

123