Home
last modified time | relevance | path

Searched refs:s_old (Results 1 – 25 of 71) sorted by relevance

123

/dports/java/openjdk17/jdk17u-jdk-17.0.1-12-1/src/hotspot/share/prims/
H A DmethodComparator.cpp55 while ((c_old = s_old.next()) >= 0) { in methods_EMCP()
76 u2 cpi_old = s_old->get_index_u2(); in args_same()
94 int cpci_old = s_old->get_index_u2_cpcache(); in args_same()
106 int cpci_old = s_old->get_index_u4(); in args_same()
141 Bytecode_loadconstant ldc_old(s_old->method(), s_old->bci()); in args_same()
151 u2 cpi_old = s_old->get_index_u2(); in args_same()
170 if (s_old->bcp()[1] != s_new->bcp()[1]) in args_same()
190 if (s_old->is_wide() != s_new->is_wide()) in args_same()
222 if (s_old->is_wide() != s_new->is_wide()) in args_same()
224 if (!s_old->is_wide()) { in args_same()
[all …]
/dports/x11-toolkits/libXaw/libXaw-1.0.14/src/
H A DSimple.c399 SimpleWidget s_old = (SimpleWidget)current; in XawSimpleSetValues() local
410 if (s_old->simple.cursor != s_new->simple.cursor) in XawSimpleSetValues()
418 s_old->simple.pointer_bg != s_new->simple.pointer_bg || in XawSimpleSetValues()
419 s_old->simple.cursor_name != s_new->simple.cursor_name) { in XawSimpleSetValues()
436 XtScreen(s_old), s_old->core.colormap, in XawSimpleSetValues()
437 (int)s_old->core.depth); in XawSimpleSetValues()
445 if (s_old->simple.tip != s_new->simple.tip) { in XawSimpleSetValues()
446 if (s_old->simple.tip) in XawSimpleSetValues()
447 XtFree((XtPointer)s_old->simple.tip); in XawSimpleSetValues()
452 if (s_old->simple.tip && !s_new->simple.tip) in XawSimpleSetValues()
[all …]
/dports/science/nest/nest-simulator-3.1/nestkernel/
H A Dnest_timeconverter.cpp38 TimeConverter::from_old_steps( long s_old ) const in from_old_steps()
40 if ( s_old == Time::LIM_NEG_INF.steps or s_old == Time::LIM_POS_INF.steps ) in from_old_steps()
42 return Time( Time::step( s_old ) ); in from_old_steps()
44 double ms = s_old * OLD_TICS_PER_STEP / OLD_TICS_PER_MS; in from_old_steps()
/dports/devel/py-BTrees/BTrees-4.9.2/src/BTrees/tests/
H A Dtest__base.py784 s_old = None
795 s_old = ((), None)
806 s_old = None
817 s_old = ((), None)
1204 s_old = None
1215 s_old = ((), None)
1226 s_old = None
1237 s_old = ((), None)
1307 s_old = (('a',), None)
1379 s_old = (('a',), None)
[all …]
/dports/sysutils/tarsnap/tarsnap-autoconf-1.0.39/tar/ccache/
H A Dccache_write.c195 char * s_old; in ccache_write() local
262 if (asprintf(&s_old, "%s/cache", path) == -1) { in ccache_write()
268 if (unlink(s_old)) { in ccache_write()
270 warnp("unlink(%s)", s_old); in ccache_write()
271 free(s_old); in ccache_write()
276 if (rename(W.s, s_old)) { in ccache_write()
277 warnp("rename(%s, %s)", W.s, s_old); in ccache_write()
278 free(s_old); in ccache_write()
283 free(s_old); in ccache_write()
/dports/science/chrono/chrono-7.0.1/src/chrono_multicore/solver/
H A DChSolverMulticoreMINRES.cpp38 …real beta, c = 1, eta, norm_rMR, norm_r0, c_old = 1, s_old = 0, s = 0, alpha, beta_old, c_oold, s_… in Solve() local
71 s_oold = s_old; in Solve()
72 s_old = s; in Solve()
73 r1_hat = c_old * alpha - c_oold * s_old * beta_old; in Solve()
75 r2 = s_old * alpha + c_oold * c_old * beta_old; in Solve()
/dports/deskutils/gcal/gcal-4.1/data/scripts/
H A Dold2v220.pl90 $s_old = '';
116 $s_old = $s_old . $ch2;
168 $line = $line . '%i' . $s_old . '#' . $e_old;
H A Dold2v220.awk86 s_old = ""
120 s_old = s_old ch2
172 line = line "%i" s_old "#" e_old
/dports/x11-toolkits/Xaw3d/xc/lib/Xaw3d/
H A DSimple.c240 SimpleWidget s_old = (SimpleWidget) current; local
246 s_new->simple.international = s_old->simple.international;
253 if (s_old->simple.cursor != s_new->simple.cursor) {
261 if ( (s_old->simple.pointer_fg != s_new->simple.pointer_fg) ||
262 (s_old->simple.pointer_bg != s_new->simple.pointer_bg) ||
263 (s_old->simple.cursor_name != s_new->simple.cursor_name) ) {
/dports/x11-toolkits/libxaw3dxft/libXaw3dXft-1.6.2h/src/
H A DSimple.c241 SimpleWidget s_old = (SimpleWidget) current; in SetValues() local
247 s_new->simple.international = s_old->simple.international; in SetValues()
254 if (s_old->simple.cursor != s_new->simple.cursor) { in SetValues()
262 if ( (s_old->simple.pointer_fg != s_new->simple.pointer_fg) || in SetValues()
263 (s_old->simple.pointer_bg != s_new->simple.pointer_bg) || in SetValues()
264 (s_old->simple.cursor_name != s_new->simple.cursor_name) ) { in SetValues()
/dports/sysutils/czkawka/czkawka-3.3.1/cargo-crates/rustfft-3.0.1/src/
H A Dmath_utils.rs76 let mut s_old = One::one(); in extended_euclidean_algorithm() localVariable
90 s_old = s_old - quotient * s; in extended_euclidean_algorithm()
91 swap(&mut s_old, &mut s); in extended_euclidean_algorithm()
97 (r_old, s_old, t_old) in extended_euclidean_algorithm()
/dports/x11-toolkits/neXtaw/neXtaw-0.15.1/X11/neXtaw/
H A DSimple.c260 SimpleWidget s_old = (SimpleWidget) current; local
265 s_new->simple.international = s_old->simple.international;
271 if (s_old->simple.cursor != s_new->simple.cursor) {
279 if ( (s_old->simple.pointer_fg != s_new->simple.pointer_fg) ||
280 (s_old->simple.pointer_bg != s_new->simple.pointer_bg) ||
281 (s_old->simple.cursor_name != s_new->simple.cursor_name) ) {
/dports/audio/libopenmpt/libopenmpt-0.6.0+release.autotools/soundlib/
H A DSampleIO.cpp837 int s_old = 0; in WriteSample() local
852 s_old = s_new; in WriteSample()
870 int s_old = 0; in WriteSample() local
877 mpt::IO::Write(fb, static_cast<int8>(s_new - s_old)); in WriteSample()
878 s_old = s_new; in WriteSample()
897 int s_old = 0; in WriteSample() local
905 s_old = s_new; in WriteSample()
976 int s_old = 0; in WriteSample() local
990 s_old = s_new; in WriteSample()
1000 int s_old = 0; in WriteSample() local
[all …]
/dports/java/openjdk8/jdk8u-jdk8u312-b07.1/hotspot/src/share/vm/prims/
H A DmethodComparator.cpp54 BytecodeStream s_old(old_method); in methods_EMCP() local
56 _s_old = &s_old; in methods_EMCP()
61 while ((c_old = s_old.next()) >= 0) { in methods_EMCP()
83 BytecodeStream s_old(old_method); in methods_switchable() local
85 _s_old = &s_old; in methods_switchable()
93 while ((c_old = s_old.next()) >= 0) { in methods_switchable()
97 int old_bci = s_old.bci(); in methods_switchable()
/dports/java/openjdk8-jre/jdk8u-jdk8u312-b07.1/hotspot/src/share/vm/prims/
H A DmethodComparator.cpp54 BytecodeStream s_old(old_method); in methods_EMCP() local
56 _s_old = &s_old; in methods_EMCP()
61 while ((c_old = s_old.next()) >= 0) { in methods_EMCP()
83 BytecodeStream s_old(old_method); in methods_switchable() local
85 _s_old = &s_old; in methods_switchable()
93 while ((c_old = s_old.next()) >= 0) { in methods_switchable()
97 int old_bci = s_old.bci(); in methods_switchable()
/dports/devel/upp/upp/uppsrc/plugin/Eigen/unsupported/Eigen/src/IterativeSolvers/
H A DMINRES.h72 RealScalar s_old(0.0); // the sine of the Givens rotation in minres()
107 … const RealScalar r3 =s_old*beta; // s, s_old, c and c_old are still from previous iteration in minres()
111 s_old = s; // store for next iteration in minres()
/dports/misc/openmvg/openMVG-2.0/src/third_party/eigen/unsupported/Eigen/src/IterativeSolvers/
H A DMINRES.h72 RealScalar s_old(0.0); // the sine of the Givens rotation in minres()
107 … const RealScalar r3 =s_old*beta; // s, s_old, c and c_old are still from previous iteration in minres()
111 s_old = s; // store for next iteration in minres()
/dports/math/eigen3/eigen-3.3.9/unsupported/Eigen/src/IterativeSolvers/
H A DMINRES.h73 RealScalar s_old(0.0); // the sine of the Givens rotation in minres()
110 … const RealScalar r3 =s_old*beta; // s, s_old, c and c_old are still from previous iteration in minres()
114 s_old = s; // store for next iteration in minres()
/dports/math/stanmath/math-4.2.0/lib/eigen_3.3.9/unsupported/Eigen/src/IterativeSolvers/
H A DMINRES.h73 RealScalar s_old(0.0); // the sine of the Givens rotation in minres()
110 … const RealScalar r3 =s_old*beta; // s, s_old, c and c_old are still from previous iteration in minres()
114 s_old = s; // store for next iteration in minres()
/dports/math/R-cran-RcppEigen/RcppEigen/inst/include/unsupported/Eigen/src/IterativeSolvers/
H A DMINRES.h73 RealScalar s_old(0.0); // the sine of the Givens rotation in minres()
110 … const RealScalar r3 =s_old*beta; // s, s_old, c and c_old are still from previous iteration in minres()
114 s_old = s; // store for next iteration in minres()
/dports/math/libsemigroups/libsemigroups-1.3.7/extern/eigen-3.3.7/unsupported/Eigen/src/IterativeSolvers/
H A DMINRES.h73 RealScalar s_old(0.0); // the sine of the Givens rotation in minres()
110 … const RealScalar r3 =s_old*beta; // s, s_old, c and c_old are still from previous iteration in minres()
114 s_old = s; // store for next iteration in minres()
/dports/science/pcmsolver/pcmsolver-1.3.0/external/eigen3/include/eigen3/unsupported/Eigen/src/IterativeSolvers/
H A DMINRES.h73 RealScalar s_old(0.0); // the sine of the Givens rotation in minres()
110 … const RealScalar r3 =s_old*beta; // s, s_old, c and c_old are still from previous iteration in minres()
114 s_old = s; // store for next iteration in minres()
/dports/misc/opennn/opennn-5.0.5/eigen/unsupported/Eigen/src/IterativeSolvers/
H A DMINRES.h73 RealScalar s_old(0.0); // the sine of the Givens rotation in minres()
110 … const RealScalar r3 =s_old*beta; // s, s_old, c and c_old are still from previous iteration in minres()
114 s_old = s; // store for next iteration in minres()
/dports/devel/taskflow/taskflow-3.2.0/3rd-party/eigen-3.3.7/unsupported/Eigen/src/IterativeSolvers/
H A DMINRES.h73 RealScalar s_old(0.0); // the sine of the Givens rotation in minres()
110 … const RealScalar r3 =s_old*beta; // s, s_old, c and c_old are still from previous iteration in minres()
114 s_old = s; // store for next iteration in minres()
/dports/math/py-pystan/pystan-2.19.0.0/pystan/stan/lib/stan_math/lib/eigen_3.3.3/unsupported/Eigen/src/IterativeSolvers/
H A DMINRES.h73 RealScalar s_old(0.0); // the sine of the Givens rotation in minres()
110 … const RealScalar r3 =s_old*beta; // s, s_old, c and c_old are still from previous iteration in minres()
114 s_old = s; // store for next iteration in minres()

123