Home
last modified time | relevance | path

Searched refs:damp (Results 1 – 25 of 1510) sorted by relevance

12345678910>>...61

/dports/net/quagga/quagga-1.2.4/bgpd/
H A Dbgp_damp.c59 index = damp->reuse_index[i] - damp->reuse_index[0]; in bgp_reuse_index()
61 return (damp->reuse_offset + index) % damp->reuse_list_size; in bgp_reuse_index()
117 damp->t_reuse = NULL; in bgp_reuse_timer()
118 damp->t_reuse = in bgp_reuse_timer()
125 bdi = damp->reuse_list[damp->reuse_offset]; in bgp_reuse_timer()
126 damp->reuse_list[damp->reuse_offset] = NULL; in bgp_reuse_timer()
130 damp->reuse_offset = (damp->reuse_offset + 1) % damp->reuse_list_size; in bgp_reuse_timer()
389damp->ceiling = (int)(damp->reuse_limit * (pow(2, (double)damp->max_suppress_time/damp->half_life)… in bgp_damp_parameter_set()
400 damp->decay_array[i] = damp->decay_array[i-1] * damp->decay_array[1]; in bgp_damp_parameter_set()
416 reuse_max_ratio = (double)damp->ceiling/damp->reuse_limit; in bgp_damp_parameter_set()
[all …]
/dports/devel/ChipmunkPhysics/Chipmunk-7.0.1/demo/
H A DSpringies.c37 cpConstraint *spring = cpDampedSpringNew(a, b, anchorA, anchorB, restLength, stiff, damp); in new_spring()
93 cpFloat damp = 0.5f; in init() local
125 …aceAddConstraint(space, new_spring( body1, body5, cpv( 40,-40), cpv(-40, 40), 0.0f, stiff, damp)); in init()
126 …aceAddConstraint(space, new_spring( body1, body6, cpv( 40,-40), cpv( 40, 40), 0.0f, stiff, damp)); in init()
127 …aceAddConstraint(space, new_spring( body2, body3, cpv( 40, 40), cpv(-40, 80), 0.0f, stiff, damp)); in init()
128 …aceAddConstraint(space, new_spring( body3, body4, cpv(-40, 80), cpv(-40, 0), 0.0f, stiff, damp)); in init()
129 …aceAddConstraint(space, new_spring( body3, body4, cpv( 40,-80), cpv(-40, 0), 0.0f, stiff, damp)); in init()
130 …aceAddConstraint(space, new_spring( body3, body7, cpv( 40,-80), cpv( 40, 0), 0.0f, stiff, damp)); in init()
131 …aceAddConstraint(space, new_spring( body3, body7, cpv(-40, 80), cpv(-40, 0), 0.0f, stiff, damp)); in init()
132 …aceAddConstraint(space, new_spring( body3, body8, cpv( 40,-80), cpv( 40, 0), 0.0f, stiff, damp)); in init()
[all …]
/dports/audio/supercollider/SuperCollider-3.11.0-Source/SCClassLibrary/Common/Audio/
H A DPhysicalModel.sc2 *ar { arg in=0.0, spring=1, damp=0;
3 ^this.multiNew('audio', in, spring, damp)
6 *kr { arg in=0.0, spring=1, damp=0;
7 ^this.multiNew('control', in, spring, damp)
20 *ar { arg in=0.0, g=1, damp=0, friction=0.01;
21 ^this.multiNew('audio', in, g, damp, friction)
24 *kr { arg in=0.0, g=1, damp=0, friction=0.01;
25 ^this.multiNew('control', in, g, damp, friction)
31 *ar { arg in=0.0, g=10, damp=0, friction=0.01;
32 ^this.multiNew('audio', in, g, damp, friction)
[all …]
/dports/audio/faust/faust-2.37.3/examples/SAM/freeverb/
H A Dfreeverb.dsp74 comb(dt, fb, damp) = (+:@(dt)) ~ (*(1-damp) : (+ ~ *(damp)) : *(fb));
80 monoReverb(fb1, fb2, damp, spread)
81 = _ <: comb(combtuningL1+spread, fb1, damp),
82 comb(combtuningL2+spread, fb1, damp),
88 comb(combtuningL8+spread, fb1, damp)
96 monoReverbToStereo(fb1, fb2, damp, spread)
97 = + <: monoReverb(fb1, fb2, damp, 0) <: _,_;
98 stereoReverb(fb1, fb2, damp, spread)
99 = + <: monoReverb(fb1, fb2, damp, 0), monoReverb(fb1, fb2, damp, spread);
100 monoToStereoReverb(fb1, fb2, damp, spread)
[all …]
/dports/audio/faust/faust-2.37.3/examples/SAM/effects/
H A Dfreeverb.dsp74 comb(dt, fb, damp) = (+:@(dt)) ~ (*(1-damp) : (+ ~ *(damp)) : *(fb));
80 monoReverb(fb1, fb2, damp, spread)
81 = _ <: comb(combtuningL1+spread, fb1, damp),
82 comb(combtuningL2+spread, fb1, damp),
88 comb(combtuningL8+spread, fb1, damp)
96 monoReverbToStereo(fb1, fb2, damp, spread)
97 = + <: monoReverb(fb1, fb2, damp, 0) <: _,_;
98 stereoReverb(fb1, fb2, damp, spread)
99 = + <: monoReverb(fb1, fb2, damp, 0), monoReverb(fb1, fb2, damp, spread);
100 monoToStereoReverb(fb1, fb2, damp, spread)
[all …]
/dports/audio/faust/faust-2.37.3/tools/faust2pd/examples/synth/
H A Dfreeverb.dsp72 comb(dt, fb, damp) = (+:@(dt)) ~ (*(1-damp) : (+ ~ *(damp)) : *(fb));
78 monoReverb(fb1, fb2, damp, spread)
80 comb(combtuningL2+spread, fb1, damp),
81 comb(combtuningL3+spread, fb1, damp),
82 comb(combtuningL4+spread, fb1, damp),
83 comb(combtuningL5+spread, fb1, damp),
84 comb(combtuningL6+spread, fb1, damp),
85 comb(combtuningL7+spread, fb1, damp),
86 comb(combtuningL8+spread, fb1, damp)
94 stereoReverb(fb1, fb2, damp, spread)
[all …]
/dports/audio/faust/faust-2.37.3/tools/faust2pd/examples/seqdemo/
H A Dfreeverb.dsp72 comb(dt, fb, damp) = (+:@(dt)) ~ (*(1-damp) : (+ ~ *(damp)) : *(fb));
78 monoReverb(fb1, fb2, damp, spread)
80 comb(combtuningL2+spread, fb1, damp),
81 comb(combtuningL3+spread, fb1, damp),
82 comb(combtuningL4+spread, fb1, damp),
83 comb(combtuningL5+spread, fb1, damp),
84 comb(combtuningL6+spread, fb1, damp),
85 comb(combtuningL7+spread, fb1, damp),
86 comb(combtuningL8+spread, fb1, damp)
94 stereoReverb(fb1, fb2, damp, spread)
[all …]
/dports/audio/faust/faust-2.37.3/tools/faust2pd/examples/basic/
H A Dfreeverb.dsp72 comb(dt, fb, damp) = (+:@(dt)) ~ (*(1-damp) : (+ ~ *(damp)) : *(fb));
78 monoReverb(fb1, fb2, damp, spread)
80 comb(combtuningL2+spread, fb1, damp),
81 comb(combtuningL3+spread, fb1, damp),
82 comb(combtuningL4+spread, fb1, damp),
83 comb(combtuningL5+spread, fb1, damp),
84 comb(combtuningL6+spread, fb1, damp),
85 comb(combtuningL7+spread, fb1, damp),
86 comb(combtuningL8+spread, fb1, damp)
94 stereoReverb(fb1, fb2, damp, spread)
[all …]
/dports/audio/faust-lv2/agraef-faust-lv2-4dc83e28e998/examples/
H A Dfreeverb.dsp73 comb(dt, fb, damp) = (+:@(dt)) ~ (*(1-damp) : (+ ~ *(damp)) : *(fb));
79 monoReverb(fb1, fb2, damp, spread)
81 comb(combtuningL2+spread, fb1, damp),
82 comb(combtuningL3+spread, fb1, damp),
83 comb(combtuningL4+spread, fb1, damp),
84 comb(combtuningL5+spread, fb1, damp),
85 comb(combtuningL6+spread, fb1, damp),
86 comb(combtuningL7+spread, fb1, damp),
87 comb(combtuningL8+spread, fb1, damp)
95 stereoReverb(fb1, fb2, damp, spread)
[all …]
/dports/audio/faust/faust-2.37.3/tests/codegen-tests/
H A Dfreeverb.dsp69 comb(dt, fb, damp) = (+:@(dt)) ~ (*(1-damp) : (+ ~ *(damp)) : *(fb));
75 monoReverb(fb1, fb2, damp, spread)
77 comb(combtuningL2+spread, fb1, damp),
78 comb(combtuningL3+spread, fb1, damp),
79 comb(combtuningL4+spread, fb1, damp),
80 comb(combtuningL5+spread, fb1, damp),
81 comb(combtuningL6+spread, fb1, damp),
82 comb(combtuningL7+spread, fb1, damp),
83 comb(combtuningL8+spread, fb1, damp)
91 stereoReverb(fb1, fb2, damp, spread)
[all …]
/dports/audio/faust/faust-2.37.3/tools/faust2pd/examples/faust/
H A Dfreeverb.dsp75 comb(dt, fb, damp) = (+:@(dt)) ~ (*(1-damp) : (+ ~ *(damp)) : *(fb));
81 monoReverb(fb1, fb2, damp, spread)
83 comb(combtuningL2+spread, fb1, damp),
84 comb(combtuningL3+spread, fb1, damp),
85 comb(combtuningL4+spread, fb1, damp),
86 comb(combtuningL5+spread, fb1, damp),
87 comb(combtuningL6+spread, fb1, damp),
88 comb(combtuningL7+spread, fb1, damp),
89 comb(combtuningL8+spread, fb1, damp)
97 stereoReverb(fb1, fb2, damp, spread)
[all …]
/dports/audio/faust/faust-2.37.3/benchmark/
H A Dfreeverb.dsp75 comb(dt, fb, damp) = (+:@(dt)) ~ (*(1-damp) : (+ ~ *(damp)) : *(fb));
81 monoReverb(fb1, fb2, damp, spread)
83 comb(combtuningL2+spread, fb1, damp),
84 comb(combtuningL3+spread, fb1, damp),
85 comb(combtuningL4+spread, fb1, damp),
86 comb(combtuningL5+spread, fb1, damp),
87 comb(combtuningL6+spread, fb1, damp),
88 comb(combtuningL7+spread, fb1, damp),
89 comb(combtuningL8+spread, fb1, damp)
97 stereoReverb(fb1, fb2, damp, spread)
[all …]
/dports/audio/faustlive/faustlive-2.5.7/Resources/Examples_bckp/
H A Dfreeverb.dsp71 comb(dt, fb, damp) = (+:@(dt)) ~ (*(1-damp) : (+ ~ *(damp)) : *(fb));
77 monoReverb(fb1, fb2, damp, spread)
78 = _ <: comb(combtuningL1+spread, fb1, damp),
79 comb(combtuningL2+spread, fb1, damp),
80 comb(combtuningL3+spread, fb1, damp),
81 comb(combtuningL4+spread, fb1, damp),
82 comb(combtuningL5+spread, fb1, damp),
83 comb(combtuningL6+spread, fb1, damp),
85 comb(combtuningL8+spread, fb1, damp)
93 stereoReverb(fb1, fb2, damp, spread)
[all …]
/dports/audio/faust/faust-2.37.3/examples/old/
H A Dfreeverb.dsp73 comb(dt, fb, damp) = (+:@(dt)) ~ (*(1-damp) : (+ ~ *(damp)) : *(fb));
79 monoReverb(fb1, fb2, damp, spread)
80 = _ <: comb(combtuningL1+spread, fb1, damp),
81 comb(combtuningL2+spread, fb1, damp),
82 comb(combtuningL3+spread, fb1, damp),
83 comb(combtuningL4+spread, fb1, damp),
84 comb(combtuningL5+spread, fb1, damp),
85 comb(combtuningL6+spread, fb1, damp),
87 comb(combtuningL8+spread, fb1, damp)
95 stereoReverb(fb1, fb2, damp, spread)
[all …]
/dports/audio/faust/faust-2.37.3/embedded/faust4processing/src/faust-examples/effects/
H A Dfreeverb.dsp71 comb(dt, fb, damp) = (+:@(dt)) ~ (*(1-damp) : (+ ~ *(damp)) : *(fb));
77 monoReverb(fb1, fb2, damp, spread)
78 = _ <: comb(combtuningL1+spread, fb1, damp),
79 comb(combtuningL2+spread, fb1, damp),
80 comb(combtuningL3+spread, fb1, damp),
81 comb(combtuningL4+spread, fb1, damp),
82 comb(combtuningL5+spread, fb1, damp),
83 comb(combtuningL6+spread, fb1, damp),
85 comb(combtuningL8+spread, fb1, damp)
93 stereoReverb(fb1, fb2, damp, spread)
[all …]
/dports/audio/faust/faust-2.37.3/tests/impulse-tests/dsp/
H A Dfreeverb.dsp68 comb(dt, fb, damp) = (+:@(dt)) ~ (*(1-damp) : (+ ~ *(damp)) : *(fb));
73 monoReverb(fb1, fb2, damp, spread)
74 = _ <: comb(combtuningL1+spread, fb1, damp),
75 comb(combtuningL2+spread, fb1, damp),
76 comb(combtuningL3+spread, fb1, damp),
77 comb(combtuningL4+spread, fb1, damp),
78 comb(combtuningL5+spread, fb1, damp),
79 comb(combtuningL6+spread, fb1, damp),
81 comb(combtuningL8+spread, fb1, damp)
89 stereoReverb(fb1, fb2, damp, spread)
[all …]
/dports/audio/guitarix-lv2/guitarix-0.43.1/src/LV2/faust/
H A Dfreeverb.dsp34 dampslider = vslider("damp",0.5, 0, 1, 0.025);
42 monoReverb(fb1, fb2, damp, spread)
43 = _ <: comb(combtuningL1+spread, fb1, damp),
44 comb(combtuningL2+spread, fb1, damp),
45 comb(combtuningL3+spread, fb1, damp),
46 comb(combtuningL4+spread, fb1, damp),
47 comb(combtuningL5+spread, fb1, damp),
48 comb(combtuningL6+spread, fb1, damp),
49 comb(combtuningL7+spread, fb1, damp),
50 comb(combtuningL8+spread, fb1, damp)
H A Dstereoverb.dsp33 dampslider = vslider("damp",0.5, 0, 1, 0.025);
41 monoReverb(fb1, fb2, damp, spread)
42 = _ <: comb(combtuningL1+spread, fb1, damp),
43 comb(combtuningL2+spread, fb1, damp),
44 comb(combtuningL3+spread, fb1, damp),
45 comb(combtuningL4+spread, fb1, damp),
46 comb(combtuningL5+spread, fb1, damp),
47 comb(combtuningL6+spread, fb1, damp),
48 comb(combtuningL7+spread, fb1, damp),
49 comb(combtuningL8+spread, fb1, damp)
/dports/math/scilab/scilab-6.1.1/scilab/modules/cacsd/tests/unit_tests/
H A Ddamp.dia.ref11 [wn,zeta]=damp(R);
15 [wn,zeta]=damp(R,dt);
20 [wn,zeta]=damp(R);
24 [wn,zeta]=damp(R,dt);
28 [wn,zeta]=damp(R,dt);
32 [wn,zeta]=damp(R);
37 [wn,zeta]=damp(P);
42 [wn,zeta]=damp(prod(P));
48 [wn,zeta]=damp(P,dt);
57 [wn,zeta]=damp(prod(P),dt);
[all …]
H A Ddamp.tst12 [wn,zeta]=damp(R);
17 [wn,zeta]=damp(R,dt);
23 [wn,zeta]=damp(R);
28 [wn,zeta]=damp(R,dt);
33 [wn,zeta]=damp(R,dt);
38 [wn,zeta]=damp(R);
44 [wn,zeta]=damp(P);
50 [wn,zeta]=damp(prod(P));
57 [wn,zeta]=damp(P,dt);
67 [wn,zeta]=damp(prod(P),dt);
[all …]
/dports/audio/guitarix-lv2/guitarix-0.43.1/src/faust/
H A Dfreeverb.dsp34 dampslider = vslider("damp[name:HF Damp]",0.5, 0, 1, 0.025);
42 monoReverb(fb1, fb2, damp, spread)
43 = _ <: comb(combtuningL1+spread, fb1, damp),
44 comb(combtuningL2+spread, fb1, damp),
45 comb(combtuningL3+spread, fb1, damp),
46 comb(combtuningL4+spread, fb1, damp),
47 comb(combtuningL5+spread, fb1, damp),
48 comb(combtuningL6+spread, fb1, damp),
49 comb(combtuningL7+spread, fb1, damp),
50 comb(combtuningL8+spread, fb1, damp)
/dports/www/grafana8/grafana-8.3.6/vendor/gonum.org/v1/gonum/graph/network/
H A Dpage.go24 return edgeWeightedPageRank(g, damp, tol)
26 return pageRank(g, damp, tol)
38 return pageRankSparse(g, damp, tol)
61 dangling := damp / float64(len(nodes))
84 dt := (1 - damp) / float64(len(nodes))
145 df := damp / float64(len(nodes))
184 dt := (1 - damp) / float64(len(nodes))
225 dangling := damp / float64(len(nodes))
228 f := damp / float64(len(to))
299 df := damp / float64(len(nodes))
[all …]
/dports/sysutils/istio/istio-1.6.7/vendor/github.com/openshift/api/vendor/gonum.org/v1/gonum/graph/network/
H A Dpage.go24 return edgeWeightedPageRank(g, damp, tol)
26 return pageRank(g, damp, tol)
38 return pageRankSparse(g, damp, tol)
61 dangling := damp / float64(len(nodes))
84 dt := (1 - damp) / float64(len(nodes))
145 df := damp / float64(len(nodes))
184 dt := (1 - damp) / float64(len(nodes))
225 dangling := damp / float64(len(nodes))
228 f := damp / float64(len(to))
299 df := damp / float64(len(nodes))
[all …]
/dports/net/frr7-pythontools/frr-frr-7.5.1/bgpd/
H A Dbgp_damp.c488 && damp[afi][safi].max_suppress_time in bgp_config_write_damp()
489 == damp[afi][safi].half_life * 4) in bgp_config_write_damp()
494 && damp[afi][safi].max_suppress_time in bgp_config_write_damp()
495 == damp[afi][safi].half_life * 4) in bgp_config_write_damp()
497 damp[afi][safi].half_life / 60LL); in bgp_config_write_damp()
500 damp[afi][safi].half_life / 60LL, in bgp_config_write_damp()
501 damp[afi][safi].reuse_limit, in bgp_config_write_damp()
502 damp[afi][safi].suppress_value, in bgp_config_write_damp()
670 damp[afi][safi].reuse_limit); in bgp_show_dampening_parameters()
672 damp[afi][safi].suppress_value); in bgp_show_dampening_parameters()
[all …]
/dports/net/frr7/frr-frr-7.5.1/bgpd/
H A Dbgp_damp.c488 && damp[afi][safi].max_suppress_time in bgp_config_write_damp()
489 == damp[afi][safi].half_life * 4) in bgp_config_write_damp()
494 && damp[afi][safi].max_suppress_time in bgp_config_write_damp()
495 == damp[afi][safi].half_life * 4) in bgp_config_write_damp()
497 damp[afi][safi].half_life / 60LL); in bgp_config_write_damp()
500 damp[afi][safi].half_life / 60LL, in bgp_config_write_damp()
501 damp[afi][safi].reuse_limit, in bgp_config_write_damp()
502 damp[afi][safi].suppress_value, in bgp_config_write_damp()
670 damp[afi][safi].reuse_limit); in bgp_show_dampening_parameters()
672 damp[afi][safi].suppress_value); in bgp_show_dampening_parameters()
[all …]

12345678910>>...61