HomeSort by relevance Sort by last modified time
    Searched refs:step (Results 1 - 25 of 2078) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/libvpx/libvpx/vpx_dsp/
fwd_txfm.c 30 tran_high_t step[4]; // canbe16 local
52 step[0] = in_high[0] + in_high[3];
53 step[1] = in_high[1] + in_high[2];
54 step[2] = in_high[1] - in_high[2];
55 step[3] = in_high[0] - in_high[3];
56 temp1 = (step[0] + step[1]) * cospi_16_64;
57 temp2 = (step[0] - step[1]) * cospi_16_64;
60 temp1 = step[2] * cospi_24_64 + step[3] * cospi_8_64
386 tran_high_t step[32]; local
    [all...]
  /dalvik/dx/tests/083-ssa-phi-placement/
run 17 dx --dump --ssa-blocks --ssa-step=phi-placement Blort.class
  /external/apache-commons-math/src/main/java/org/apache/commons/math/ode/nonstiff/
ClassicalRungeKuttaIntegrator.java 67 * step.
68 * @param step integration step
70 public ClassicalRungeKuttaIntegrator(final double step) {
72 new ClassicalRungeKuttaStepInterpolator(), step);
EulerIntegrator.java 33 * evaluation per step. However, as it uses linear estimates, it needs
65 * Build an Euler integrator with the given step.
66 * @param step integration step
68 public EulerIntegrator(final double step) {
69 super("Euler", STATIC_C, STATIC_A, STATIC_B, new EulerStepInterpolator(), step);
MidpointIntegrator.java 61 * Build a midpoint integrator with the given step.
62 * @param step integration step
64 public MidpointIntegrator(final double step) {
65 super("midpoint", STATIC_C, STATIC_A, STATIC_B, new MidpointStepInterpolator(), step);
ThreeEighthesIntegrator.java 65 * Build a 3/8 integrator with the given step.
66 * @param step integration step
68 public ThreeEighthesIntegrator(final double step) {
69 super("3/8", STATIC_C, STATIC_A, STATIC_B, new ThreeEighthesStepInterpolator(), step);
  /external/oj-libjdwp/src/share/back/
stepControl.c 53 * They usually require multiple events step, and otherwise, before they
54 * complete. While a step request is pending, we may need to temporarily
57 * events. So, for step events only, we directly enable and disable stepping.
58 * This is safe because there can only ever be one pending step request
71 EXIT_ERROR(error, "enabling single step");
85 EXIT_ERROR(error, "disabling single step");
166 initState(JNIEnv *env, jthread thread, StepRequest *step)
173 step->fromLine = -1;
174 step->fromNative = JNI_FALSE;
175 step->frameExited = JNI_FALSE
265 StepRequest *step; local
368 StepRequest *step; local
435 StepRequest *step; local
516 StepRequest *step; local
703 StepRequest *step; local
791 StepRequest *step; local
882 StepRequest *step; local
    [all...]
  /external/skia/infra/bots/recipe_modules/git/examples/
full.py 8 'recipe_engine/step',
13 api.step('1', cmd=['git', 'status'])
15 api.step('2', cmd=['git', 'status'])
  /external/skqp/infra/bots/recipe_modules/git/examples/
full.py 8 'recipe_engine/step',
13 api.step('1', cmd=['git', 'status'])
15 api.step('2', cmd=['git', 'status'])
  /cts/hostsidetests/sustainedperf/shadertoy_android/src/
GLtestLib.java 32 public static native void step(); method in class:GLtestLib
  /external/python/cpython2/Objects/
sliceobject.c 56 start, stop, and step are python objects with None indicating no
61 PySlice_New(PyObject *start, PyObject *stop, PyObject *step)
68 if (step == NULL) step = Py_None;
69 Py_INCREF(step);
75 obj->step = step;
104 Py_ssize_t *start, Py_ssize_t *stop, Py_ssize_t *step)
107 if (r->step == Py_None) {
108 *step = 1
195 PyObject *start, *stop, *step; local
257 Py_ssize_t ilen, start, stop, step, slicelength; local
    [all...]
  /external/skia/infra/bots/recipe_modules/env/examples/
full.py 9 'recipe_engine/step',
14 api.step('1', cmd=['echo', 'hi'])
16 api.step('2', cmd=['echo', 'hi'])
20 api.step('3', cmd=['echo', 'hi'])
22 api.step('4', cmd=['echo', 'hi'])
  /external/skqp/infra/bots/recipe_modules/env/examples/
full.py 9 'recipe_engine/step',
14 api.step('1', cmd=['echo', 'hi'])
16 api.step('2', cmd=['echo', 'hi'])
20 api.step('3', cmd=['echo', 'hi'])
22 api.step('4', cmd=['echo', 'hi'])
  /frameworks/native/opengl/tests/gl2_jni/src/com/android/gl2jni/
GL2JNILib.java 32 public static native void step(); method in class:GL2JNILib
  /frameworks/native/opengl/tests/gl_perfapp/src/com/android/glperf/
GLPerfLib.java 32 public static native void step(); method in class:GLPerfLib
  /frameworks/native/opengl/tests/gldual/src/com/android/gldual/
GLDualLib.java 32 public static native void step(); method in class:GLDualLib
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
sliceobject.c 56 start, stop, and step are python objects with None indicating no
61 PySlice_New(PyObject *start, PyObject *stop, PyObject *step)
68 if (step == NULL) step = Py_None;
69 Py_INCREF(step);
75 obj->step = step;
103 Py_ssize_t *start, Py_ssize_t *stop, Py_ssize_t *step)
106 if (r->step == Py_None) {
107 *step = 1;
194 PyObject *start, *stop, *step; local
255 Py_ssize_t ilen, start, stop, step, slicelength; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
sliceobject.c 56 start, stop, and step are python objects with None indicating no
61 PySlice_New(PyObject *start, PyObject *stop, PyObject *step)
68 if (step == NULL) step = Py_None;
69 Py_INCREF(step);
75 obj->step = step;
103 Py_ssize_t *start, Py_ssize_t *stop, Py_ssize_t *step)
106 if (r->step == Py_None) {
107 *step = 1;
194 PyObject *start, *stop, *step; local
254 Py_ssize_t ilen, start, stop, step, slicelength; local
    [all...]
  /libcore/luni/src/test/java/libcore/dalvik/system/
VMRuntimeTest.java 29 private void doTestNewNonMovableArray(Class<?> componentType, int step, int maxLength) {
44 for (int i = 0; i <= maxLength; i += step) {
68 int step = 67; local
69 doTestNewNonMovableArray(boolean.class, step, maxLengthForLoop);
70 doTestNewNonMovableArray(byte.class, step, maxLengthForLoop);
71 doTestNewNonMovableArray(char.class, step, maxLengthForLoop);
72 doTestNewNonMovableArray(short.class, step, maxLengthForLoop);
73 doTestNewNonMovableArray(int.class, step, maxLengthForLoop);
74 doTestNewNonMovableArray(long.class, step, maxLengthForLoop);
75 doTestNewNonMovableArray(float.class, step, maxLengthForLoop)
122 int step = 67; local
    [all...]
  /external/syslinux/gpxe/src/include/gpxe/
process.h 21 * Single-step the process
23 * This method should execute a single step of the process.
27 void ( * step ) ( struct process *process ); member in struct:process
38 extern void step ( void );
44 * @v step Process' step() method
48 void ( * step ) ( struct process *process ),
51 process->step = step;
59 * @v step Process' step() metho
    [all...]
  /external/universal-tween-engine/java/api/src/aurelienribon/tweenengine/
BaseTween.java 19 private int step; field in class:BaseTween
48 step = -2;
284 * Gets the id of the current step. Values are as follows:<br/>
293 return step;
360 protected void updateOverride(int step, int lastStep, boolean isIterationStep, float delta) {
365 step = -1;
373 step = repeatCnt*2 + 1;
383 protected boolean isReverse(int step) {
384 return isYoyo && Math.abs(step%4) == 2;
387 protected boolean isValid(int step) {
    [all...]
  /external/tensorflow/tensorflow/contrib/opt/python/training/
sign_decay_test.py 29 def linear_decay(step):
30 step = min(step, decay_steps)
31 return float(decay_steps - step) / decay_steps
38 def cosine_decay(step):
39 step = min(step, decay_steps)
40 fraction = 2.0 * num_periods * step / float(decay_steps)
50 def restart_decay(step):
51 step = min(step, decay_steps
    [all...]
  /external/ltp/testcases/kernel/tracing/ftrace_test/ftrace_stress/
ftrace_buffer_size_kb.sh 22 step=$(( $free_mem / 10 / $LOOP / $cpus ))
24 if [ $step -eq 0 ]; then
25 step=1
34 new_size=$(( $new_size + $step ))
40 new_size=$(( $new_size - $step ))
  /external/libvpx/libvpx/vpx_dsp/x86/
highbd_idct4x4_add_sse4.c 20 __m128i temp[2], step[4]; local
27 step[0] = multiplication_round_shift_sse4_1(temp, cospi_16_64);
30 step[1] = multiplication_round_shift_sse4_1(temp, cospi_16_64);
31 highbd_butterfly_sse4_1(io[1], io[3], cospi_24_64, cospi_8_64, &step[2],
32 &step[3]);
35 io[0] = _mm_add_epi32(step[0], step[3]); // step[0] + step[3]
36 io[1] = _mm_add_epi32(step[1], step[2]); // step[1] + step[2
    [all...]
  /external/brotli/csharp/org/brotli/dec/
Utils.cs 31 int step = System.Math.Min(cursor + 1024, length) - cursor;
32 System.Array.Copy(ByteZeroes, 0, dest, offset + cursor, step);
33 cursor += step;
53 int step = System.Math.Min(cursor + 1024, length) - cursor;
54 System.Array.Copy(IntZeroes, 0, dest, offset + cursor, step);
55 cursor += step;

Completed in 876 milliseconds

1 2 3 4 5 6 7 8 91011>>