Home
last modified time | relevance | path

Searched refs:INITIAL_LIST_LEN (Results 1 – 2 of 2) sorted by relevance

/dports/biology/ugene/ugene-40.1/src/plugins_3rdparty/primer3/src/primer3_core/
H A Dprimer3_main.c77 #define INITIAL_LIST_LEN 2000 /* Initial size of oligo lists. */ macro
390 (ctx->f) = pr_safe_malloc(sizeof(*(ctx->f)) * INITIAL_LIST_LEN);
391 (ctx->r) = pr_safe_malloc(sizeof(*(ctx->r)) * INITIAL_LIST_LEN);
392 (ctx->f_len) = (ctx->r_len) = INITIAL_LIST_LEN;
775 (ctx->mid_len) = INITIAL_LIST_LEN;
/dports/biology/primer3/primer3-2.3.6/src/
H A Dlibprimer3.c97 #define INITIAL_LIST_LEN 2000 /* Initial size of oligo lists. */ macro
834 = (primer_rec *) malloc(sizeof(*state->fwd.oligo) * INITIAL_LIST_LEN); in create_p3retval()
837 = (primer_rec *) malloc(sizeof(*state->rev.oligo) * INITIAL_LIST_LEN); in create_p3retval()
840 = (primer_rec *) malloc(sizeof(*state->intl.oligo) * INITIAL_LIST_LEN); in create_p3retval()
849 state->fwd.storage_size = INITIAL_LIST_LEN; in create_p3retval()
850 state->rev.storage_size = INITIAL_LIST_LEN; in create_p3retval()
851 state->intl.storage_size = INITIAL_LIST_LEN; in create_p3retval()
2389 oarray->storage_size = INITIAL_LIST_LEN; in add_oligo_to_oligo_array()