HomeSort by relevance Sort by last modified time
    Searched refs:step (Results 1 - 25 of 1858) 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...]
  /external/brotli/java/org/brotli/dec/
Utils.java 31 int step = Math.min(cursor + 1024, length) - cursor; local
32 System.arraycopy(BYTE_ZEROES, 0, dest, offset + cursor, step);
33 cursor += step;
50 int step = Math.min(cursor + 1024, length) - cursor; local
51 System.arraycopy(INT_ZEROES, 0, dest, offset + cursor, step);
52 cursor += step;
  /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/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'])
  /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'])
  /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/dalvik/system/
VMRuntimeTest.java 27 private void doTestNewNonMovableArray(Class<?> componentType, int step, int maxLength) {
42 for (int i = 0; i <= maxLength; i += step) {
66 int step = 67; local
67 doTestNewNonMovableArray(boolean.class, step, maxLengthForLoop);
68 doTestNewNonMovableArray(byte.class, step, maxLengthForLoop);
69 doTestNewNonMovableArray(char.class, step, maxLengthForLoop);
70 doTestNewNonMovableArray(short.class, step, maxLengthForLoop);
71 doTestNewNonMovableArray(int.class, step, maxLengthForLoop);
72 doTestNewNonMovableArray(long.class, step, maxLengthForLoop);
73 doTestNewNonMovableArray(float.class, step, maxLengthForLoop)
120 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/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 ))
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/comm/src/
omxVCCOMM_Copy16x16_s.s 8 ; * [in] step - distance between the starts of consecutive lines in the reference frame, in bytes;
16 ; * - step <16 or step is not a multiple of 16.
30 step RN 2 label
48 VLD1 {X0,X1},[pSrc@128],step ;// Load 16 bytes from 16 byte aligned pSrc and pSrc=pSrc + step after loading
49 VLD1 {X2,X3},[pSrc@128],step
50 VLD1 {X4,X5},[pSrc@128],step
51 VLD1 {X6,X7},[pSrc@128],step
57 VLD1 {X0,X1},[pSrc@128],step
    [all...]
  /external/autotest/client/common_lib/
priorities.py 9 'PFQ', 'CQ', 'Super', start_value=10, step=10)
  /external/skia/infra/bots/recipes/
bundle_recipes.py 14 'recipe_engine/step',
24 api.step('git init', infra_step=True,
26 api.step('git add', infra_step=True,
28 api.step('git commit', infra_step=True,
30 api.step('Bundle Recipes', infra_step=True,
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/comm/src/
omxVCCOMM_Copy16x16.c 47 * step - distance between the starts of consecutive lines in the reference
64 * - step <16 or step is not a multiple of 16.
71 OMX_INT step)
82 armRetArgErrIf(((step < 16) || (step % 16)), OMX_Sts_BadArgErr);
86 for (y = 0, count = 0, index = 0; y < 16; y++, count = count + step - 16)
omxVCCOMM_Copy8x8.c 47 * step - distance between the starts of consecutive lines in the reference
64 * - step <8 or step is not a multiple of 8.
71 OMX_INT step)
82 armRetArgErrIf(((step < 8) || (step % 8)), OMX_Sts_BadArgErr);
86 for (y = 0, count = 0, index = 0; y < 8; y++, count = count + step - 8)
  /frameworks/native/opengl/tests/gl_jni/src/com/android/gljni/
GLJNILib.java 32 public static native void step(); method in class:GLJNILib

Completed in 2600 milliseconds

1 2 3 4 5 6 7 8 91011>>