Home
last modified time | relevance | path

Searched refs:delayLeft (Results 1 – 13 of 13) sorted by relevance

/dports/net/ns3/ns-allinone-3.35/ns-3.35/src/buildings/model/
H A Drandom-walk-2d-outdoor-mobility-model.cc117 Time delayLeft; in DoInitializePrivate() local
120 delayLeft = m_modeTime; in DoInitializePrivate()
124 delayLeft = Seconds (m_modeDistance / speed); in DoInitializePrivate()
126 DoWalk (delayLeft); in DoInitializePrivate()
132 NS_LOG_FUNCTION (this << delayLeft.GetSeconds ()); in DoWalk()
137 nextPosition.x += speed.x * delayLeft.GetSeconds (); in DoWalk()
138 nextPosition.y += speed.y * delayLeft.GetSeconds (); in DoWalk()
283 NS_LOG_FUNCTION (this << delayLeft.GetSeconds ()); in Rebound()
304 DoWalk (delayLeft); in Rebound()
310 NS_LOG_FUNCTION (this << delayLeft.GetSeconds ()); in AvoidBuilding()
[all …]
H A Drandom-walk-2d-outdoor-mobility-model.h83 void AvoidBuilding (Time delayLeft, Vector intersectPosition);
/dports/net/ns3/ns-allinone-3.35/ns-3.35/src/mobility/model/
H A Drandom-walk-2d-mobility-model.cc96 Time delayLeft; in DoInitializePrivate() local
99 delayLeft = m_modeTime; in DoInitializePrivate()
103 delayLeft = Seconds (m_modeDistance / speed); in DoInitializePrivate()
105 DoWalk (delayLeft); in DoInitializePrivate()
109 RandomWalk2dMobilityModel::DoWalk (Time delayLeft) in DoWalk() argument
114 nextPosition.x += speed.x * delayLeft.GetSeconds (); in DoWalk()
115 nextPosition.y += speed.y * delayLeft.GetSeconds (); in DoWalk()
119 … m_event = Simulator::Schedule (delayLeft, &RandomWalk2dMobilityModel::DoInitializePrivate, this); in DoWalk()
126 delayLeft - delay); in DoWalk()
132 RandomWalk2dMobilityModel::Rebound (Time delayLeft) in Rebound() argument
[all …]
H A Dgauss-markov-mobility-model.cc149 GaussMarkovMobilityModel::DoWalk (Time delayLeft) in DoWalk() argument
155 nextPosition.x += speed.x * delayLeft.GetSeconds (); in DoWalk()
156 nextPosition.y += speed.y * delayLeft.GetSeconds (); in DoWalk()
157 nextPosition.z += speed.z * delayLeft.GetSeconds (); in DoWalk()
158 if (delayLeft.GetSeconds () < 0.0) delayLeft = Seconds (1.0); in DoWalk()
164 m_event = Simulator::Schedule (delayLeft, &GaussMarkovMobilityModel::Start, this); in DoWalk()
190 m_event = Simulator::Schedule (delayLeft, &GaussMarkovMobilityModel::Start, this); in DoWalk()
/dports/audio/libmysofa/libmysofa-1.2.1-16-g52590e1/src/hrtf/
H A Deasy.c146 short *IRright, int *delayLeft, in mysofa_getfilter_short() argument
166 *delayLeft = delays[0] * easy->hrtf->DataSamplingRate.values[0]; in mysofa_getfilter_short()
180 float *IRright, float *delayLeft, float *delayRight, bool interpolate) in mysofa_getfilter_float_advanced() argument
207 *delayLeft = delays[0]; in mysofa_getfilter_float_advanced()
221 float *IRright, float *delayLeft, in mysofa_getfilter_float() argument
224 mysofa_getfilter_float_advanced(easy, x, y, z, IRleft, IRright, delayLeft, in mysofa_getfilter_float()
231 float *delayLeft, float *delayRight) in mysofa_getfilter_float_nointerp() argument
233 mysofa_getfilter_float_advanced(easy, x, y, z, IRleft, IRright, delayLeft, in mysofa_getfilter_float_nointerp()
H A Dmysofa.h185 short *IRleft, short *IRright, int *delayLeft,
188 float *IRleft, float *IRright, float *delayLeft,
192 float *delayLeft, float *delayRight);
/dports/audio/mixxx/mixxx-2.3.0/src/effects/builtin/
H A Dflangereffect.cpp195 CSAMPLE* delayLeft = pState->delayLeft; in processChannel() local
219 CSAMPLE prevLeft = delayLeft[framePrev]; in processChannel()
220 CSAMPLE nextLeft = delayLeft[frameNext]; in processChannel()
230 delayLeft[pState->delayPos] = tanh_approx(pInput[i] + regen_ramped * delayedSampleLeft); in processChannel()
241 SampleUtil::clear(delayLeft, kBufferLenth); in processChannel()
H A Dflangereffect.h35 SampleUtil::clear(delayLeft, kBufferLenth); in FlangerGroupState()
38 CSAMPLE delayLeft[kBufferLenth]; member
H A Dphasereffect.cpp211 const auto delayLeft = static_cast<CSAMPLE>(0.5 + 0.5 * sin(pState->leftPhase)); in processChannel() local
216 CSAMPLE wLeft = range * delayLeft; in processChannel()
/dports/net-p2p/vuze/vuze-5.7.4.0_2/org/gudy/azureus2/ui/swt/shells/
H A DMessageSlideShell.java839 int delayLeft = timeoutSecs * 1000; in runPopup()
840 final boolean autohide = (delayLeft != 0); in runPopup()
844 while ((!autohide || bDelayPaused || delayLeft > 0) in runPopup()
847 final long delaySecs = Math.round(delayLeft / 1000.0) in runPopup()
895 delayLeft -= PAUSE; in runPopup()
899 delayLeft = 0; in runPopup()
/dports/security/zeronet/ZeroNet-0.7.1/src/util/
H A DRateLimit.py30 def delayLeft(event, allowed_again=10): function
/dports/audio/x42-plugins-lv2/x42-plugins-20211016/balance.lv2/
H A Dbalance.ttl.in99 lv2:symbol "delayLeft" ;
/dports/security/zeronet/ZeroNet-0.7.1/src/Ui/
H A DUiWebsocket.py493 …nfo", _["Content publish queued for {0:.0f} seconds."].format(RateLimit.delayLeft(event_name, 30))…