/external/apache-commons-math/src/main/java/org/apache/commons/math/ode/nonstiff/ |
AdaptiveStepsizeIntegrator.java | 30 * stepsize integrators for Ordinary Differential Equations. 32 * <p>These algorithms perform integration with stepsize control, which 47 * main set} part of the state vector is used for stepsize control, not the complete 58 * stepsize.</p> 92 /** Build an integrator with the given stepsize bounds. 122 /** Build an integrator with the given stepsize bounds. 332 stepSize = FastMath.sqrt(minStep * maxStep);
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/ode/sampling/ |
NordsieckStepInterpolator.java | 119 * @param stepSize step size used in the scaled and nordsieck arrays 125 public void reinitialize(final double time, final double stepSize, 129 this.scalingH = stepSize; 141 * @param stepSize new step size to use in the scaled and nordsieck arrays 143 public void rescale(final double stepSize) { 145 final double ratio = stepSize / scalingH; 160 scalingH = stepSize;
|
StepNormalizer.java | 32 * <p>The stepsize used is selected at construction time. The {@link 36 * integration range is an integer multiple of the stepsize, then the
|
/frameworks/base/core/java/android/widget/ |
RatingBar.java | 95 final float stepSize = a.getFloat(R.styleable.RatingBar_stepSize, -1); 102 if (stepSize >= 0) { 103 setStepSize(stepSize); 211 * @param stepSize The step size of this rating bar. For example, if 214 public void setStepSize(float stepSize) { 215 if (stepSize <= 0) { 219 final float newMax = mNumStars / stepSize;
|
/frameworks/opt/datetimepicker/src/com/android/datetimepicker/time/ |
RadialPickerLayout.java | 400 int stepSize = HOUR_VALUE_TO_DEGREES_STEP_SIZE; 401 int floor = (degrees / stepSize) * stepSize; 402 int ceiling = floor + stepSize; 407 floor -= stepSize; 440 int stepSize; 451 stepSize = HOUR_VALUE_TO_DEGREES_STEP_SIZE; 454 stepSize = MINUTE_VALUE_TO_DEGREES_STEP_SIZE; 474 int value = degrees / stepSize; [all...] |
/external/apache-commons-math/src/main/java/org/apache/commons/math/ode/ |
package.html | 124 variable stepsize. The {@link 126 be used to convert the variable stepsize into a fixed stepsize that 129 interface. Adaptive stepsize integrators can automatically compute the 130 initial stepsize by themselves, however the user can specify it if he 148 <tr BGCOLOR="#CCCCFF"><td colspan=3><font size="+2">Adaptive Stepsize Integrators</font></td></tr>
|
ODEIntegrator.java | 103 /** Get the current signed value of the integration stepsize. 106 * differential equations} problem) if the signed value of the current stepsize 110 * @return current signed value of the stepsize
|
/external/webrtc/webrtc/modules/audio_device/dummy/ |
audio_device_dummy.h | 89 int32_t SpeakerVolumeStepSize(uint16_t& stepSize) const override; 97 int32_t MicrophoneVolumeStepSize(uint16_t& stepSize) const override;
|
/external/webrtc/webrtc/modules/audio_device/linux/ |
audio_mixer_manager_pulse_linux.h | 41 int32_t SpeakerVolumeStepSize(uint16_t& stepSize) const; 59 int32_t MicrophoneVolumeStepSize(uint16_t& stepSize) const;
|
/external/webrtc/webrtc/modules/audio_device/win/ |
audio_mixer_manager_win.h | 60 int32_t SpeakerVolumeStepSize(uint16_t& stepSize) const; 76 int32_t MicrophoneVolumeStepSize(uint16_t& stepSize) const;
|
/frameworks/wilhelm/src/itf/ |
IPlaybackRate.c | 166 SLpermille stepSize = thiz->mStepSize; 170 *pStepSize = stepSize;
|
/external/opencv3/modules/features2d/src/kaze/ |
nldiffusion_functions.h | 37 void nld_step_scalar(cv::Mat& Ld, const cv::Mat& c, cv::Mat& Lstep, float stepsize);
|
nldiffusion_functions.cpp | 351 , stepsize(_stepsize) 383 dst[j] = 0.5f*stepsize*(xpos - xneg + ypos - yneg); 391 float stepsize; member in class:cv::Nld_Step_Scalar_Invoker 400 * @param stepsize The step size in time units 405 void nld_step_scalar(cv::Mat& Ld, const cv::Mat& c, cv::Mat& Lstep, float stepsize) { 407 cv::parallel_for_(cv::Range(1, Lstep.rows - 1), Nld_Step_Scalar_Invoker(Ld, c, Lstep, stepsize), (double)Ld.total()/(1 << 16)); 421 dst[j] = 0.5f*stepsize*(xpos - xneg + ypos); 434 dst[j] = 0.5f*stepsize*(xpos - xneg - yneg); 453 dst[0] = 0.5f*stepsize*(xpos + ypos - yneg); 458 dst[r0] = 0.5f*stepsize*(-xneg + ypos - yneg) [all...] |
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/numeric/ |
SinWaveFilter.java | 34 @GenerateFieldPort(name = "stepSize", hasDefault = true)
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/MultiSession/ |
SingleStepTest.java | 62 stepFunction(JDWPConstants.StepSize.LINE, JDWPConstants.StepDepth.OVER); 65 void stepFunction(byte StepSize, byte StepDepth) { 104 setRequestCommand.setNextValueAsInt(StepSize);
|
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/ |
DocumentaryFilter.java | 47 "uniform float stepsize;\n" + 67 " vec3 temp = clamp(2.0 * (color.rgb + stepsize), 0.0, 1.0);\n" + 156 mProgram.setHostValue("stepsize", 1.0f / 255.0f);
|
LomoishFilter.java | 49 "uniform float stepsize;\n" + 111 " vec3 temp = clamp((color.rgb + stepsize - 0.15) * 1.53846, 0.0, 1.0);\n" + 166 mProgram.setHostValue("stepsize", 1.0f / 255.0f);
|
/cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/ |
MotionIndicatorView.java | 274 float stepSize = 360.0f/mZCovered.getNSteps(); 282 canvas.drawArc(mZBoundOut,i*stepSize-0.2f, stepSize+0.4f, 289 canvas.drawArc(mZBoundOut2, mZCovered.getLastValue()*stepSize- 1, 2, 291 canvas.drawArc(mZBoundIn2, mZCovered.getLastValue()*stepSize-1.5f, 3,
|
/external/webrtc/webrtc/modules/audio_device/test/ |
audio_device_test_api.cc | 883 uint16_t stepSize(0); 893 EXPECT_EQ(-1, audio_device_->SpeakerVolumeStepSize(&stepSize)); [all...] |
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/stress/ |
Camera2CaptureRequestTest.java | 332 double stepSize = range / (double)DEFAULT_NUM_EXPOSURE_TIME_STEPS; 334 testValues[i] = maxExpTime - (long)(stepSize * i); 357 int stepSize = DEFAULT_SENSITIVITY_STEP_SIZE; 358 int numSteps = range / stepSize; 362 stepSize = range / numSteps; 366 testValues[i] = maxSensitivity - stepSize * i;
|
/frameworks/base/cmds/am/src/com/android/commands/am/ |
Am.java | [all...] |
/external/chromium-trace/catapult/third_party/polymer/components/web-animations-js/src/ |
timing-utilities.js | 95 var stepSize = 1 / count; 96 x += pos * stepSize; 97 return x - x % stepSize;
|
/external/libvpx/libvpx/vp9/encoder/ |
vp9_subexp.c | 144 int stepsize) { 158 step = -stepsize; 176 step = stepsize;
|
/external/webrtc/webrtc/modules/audio_device/ |
audio_device_generic.h | 86 virtual int32_t SpeakerVolumeStepSize(uint16_t& stepSize) const = 0; 94 virtual int32_t MicrophoneVolumeStepSize(uint16_t& stepSize) const = 0;
|
audio_device_impl.h | 122 int32_t SpeakerVolumeStepSize(uint16_t* stepSize) const override; 130 int32_t MicrophoneVolumeStepSize(uint16_t* stepSize) const override;
|