Home
last modified time | relevance | path

Searched refs:rsteps (Results 1 – 11 of 11) sorted by relevance

/dports/math/R-cran-raster/raster/R/
H A Daggregate_3d.R55 rsteps <- as.integer(ceiling(nrx/yfact)) functionVar
64 rsteps <- as.integer(floor(nrx/yfact))
68 lastrow <- min(rsteps * yfact, nrx)
73 ymn <- ymax(x) - rsteps * yfact * yres(x)
82 dim(out) <- c(rsteps, csteps, lsteps)
/dports/games/exult/exult-snapshot-v1.7.0.20211128/files/sha1/
H A Dsha1.cpp57 const unsigned int rsteps = steps & mask; in rol()
58 return (value << rsteps) | (value >> ((-rsteps) & mask)); in rol()
/dports/science/gchemutils/gnome-chemistry-utils-0.14.16/libs/gcp/
H A Dreaction.cc115 map < string, ReactionStep * > rsteps; in Build() local
130 rsteps[(*istep).first] = step; in Build()
161 ReactionStep *start = rsteps[st], *end = rsteps[sh]; in Build()
183 map < string, ReactionStep * >::iterator rsi, rsiend = rsteps.end (); in Build()
184 for (rsi = rsteps.begin (); rsi != rsiend; rsi++) { in Build()
/dports/graphics/argyllcms/Argyll_V1.9.2/spectro/
H A Ddispcal.c2900 rsteps = 9; in main()
2907 rsteps = 16; in main()
2920 rsteps = 32; in main()
2935 rsteps = 64; in main()
2948 rsteps = 96; in main()
2961 rsteps = 128; in main()
4448 rsteps = VER_RES; in main()
4489 sdv[0][rsteps-1].w = sdv[1][rsteps-1].w = sdv[2][rsteps-1].w = 50.0; in main()
4638 if ((rv = dr->read(dr, set, 1, rsteps-i, rsteps, 0, 0, instClamp)) != 0) { in main()
4751 if ((rv = dr->read(dr, set, 1, rsteps-i, rsteps, 0, 0, instClamp)) != 0 in main()
[all …]
/dports/audio/denemo/denemo-2.0.6/src/core/
H A Dview.c1716 r->rsteps = g_list_append (r->rsteps, relement); in append_rhythm()
1723 if (r->rsteps) in append_rhythm()
1732 if (r->rsteps == NULL) in append_rhythm()
1734 r->rsteps = g_list_append (r->rsteps, relement); in append_rhythm()
2064 if (r->rsteps) in create_rhythm()
2067 r->rsteps->prev = g_list_last (r->rsteps); in create_rhythm()
2068 g_list_last (r->rsteps)->next = r->rsteps; in create_rhythm()
2185 r->rsteps->prev = g_list_last (r->rsteps); in create_singleton_rhythm()
2186 g_list_last (r->rsteps)->next = r->rsteps; in create_singleton_rhythm()
3273 r->rsteps->prev = NULL; in delete_rhythm_pattern()
[all …]
/dports/math/cocoalib/CoCoALib-0.99712/src/AlgebraicCore/
H A DTmpF5Mat.C636 int realred = 0, rsteps = 0; in gauss() local
653 rsteps+=loop_cnt; in gauss()
676 if (opt.skip_rows && !opt.use_NR) rsteps += pNF(j->second.elem(),curr_poly - 1); in gauss()
685 if (opt.verbose) cout << "\t&" << rsteps + realred; in gauss()
/dports/math/giacxcas/CoCoALib-0.99700/src/AlgebraicCore/
H A DTmpF5Mat.C636 int realred = 0, rsteps = 0; in gauss() local
653 rsteps+=loop_cnt; in gauss()
676 if (opt.skip_rows && !opt.use_NR) rsteps += pNF(j->second.elem(),curr_poly - 1); in gauss()
685 if (opt.verbose) cout << "\t&" << rsteps + realred; in gauss()
/dports/math/xspread/xspread-3.1.1c.orig/
H A Dinterp.c1602 register rsteps, csteps; local
1608 rsteps = maxsr - minsr + 1;
1614 sr += rsteps - 1;
1615 dr += rsteps - 1;
1625 for (; --rsteps >= 0; sr += rinc, dr += rinc)
/dports/audio/denemo/denemo-2.0.6/include/denemo/
H A Ddenemo_types.h1114 GList *rsteps; /**< the data are RhythmElements */ member
/dports/audio/denemo/denemo-2.0.6/src/scripting/
H A Dscheme-callbacks.c6254 r->rsteps = g_list_append (NULL, relement); in scheme_create_snippet_from_object()
6255 r->rsteps->prev = r->rsteps->next = r->rsteps; //make list circular in scheme_create_snippet_from_object()
/dports/audio/denemo/denemo-2.0.6/src/command/
H A Dcommandfuncs.c64 g = ((RhythmPattern *) Denemo.project->currhythm->data)->rsteps; in nextrhythm()