HomeSort by relevance Sort by last modified time
    Searched refs:step (Results 1 - 25 of 1735) 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/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/recipes/
swarm_presubmit.py 13 'recipe_engine/step',
24 with api.step.context({'cwd': api.vars.skia_dir}):
27 api.step('create git branch',
30 api.step('git status',
35 with api.step.context({'env': env}):
36 api.step('presubmit',
39 api.step('git reset',
41 api.step('checkout origin/master',
43 api.step('delete git branch',
  /cts/hostsidetests/sustainedperf/shadertoy_android/src/
GLtestLib.java 32 public static native void step(); method in class:GLtestLib
  /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/skia/infra/bots/recipe_modules/flavor/
pdfium_flavor.py 20 with self.m.step.context({'cwd': pdfium_dir}):
22 self.m.step,
28 self.m.step,
46 env = self.m.step.get_from_context('env', {})
48 with self.m.step.context({'env': env}):
50 self.m.step,
56 self.m.step,
  /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...]
omxVCCOMM_Copy8x8_s.s 8 ; * [in] step - distance between the starts of consecutive lines in the reference frame, in bytes;
16 ; * - step <8 or step is not a multiple of 8.
30 step RN 2 label
45 VLD1 {X0},[pSrc],step ;// Load 8 bytes from 8 byte aligned pSrc, pSrc=pSrc+step after load
46 VLD1 {X1},[pSrc],step
47 VLD1 {X2},[pSrc],step
48 VLD1 {X3},[pSrc],step
53 VLD1 {X0},[pSrc],step
    [all...]
  /external/autotest/client/common_lib/
priorities.py 9 'PFQ', 'CQ', 'Super', start_value=10, step=10)
  /external/strace/tests/
qual_fault.test 41 local trace fault err first step extra
46 step=$1; shift
50 if [ -z "$first$step" ]; then
52 step=1
54 case "$step" in
55 '') when=":when=$first"; step=0 ;;
56 +) when=":when=$first+"; step=1 ;;
57 *) when=":when=$first+$step" ;;
79 ./$NAME $raw "$err" "$first" "$step" $N \
  /external/strace/tests-m32/
qual_fault.test 41 local trace fault err first step extra
46 step=$1; shift
50 if [ -z "$first$step" ]; then
52 step=1
54 case "$step" in
55 '') when=":when=$first"; step=0 ;;
56 +) when=":when=$first+"; step=1 ;;
57 *) when=":when=$first+$step" ;;
79 ./$NAME $raw "$err" "$first" "$step" $N \
  /external/strace/tests-mx32/
qual_fault.test 41 local trace fault err first step extra
46 step=$1; shift
50 if [ -z "$first$step" ]; then
52 step=1
54 case "$step" in
55 '') when=":when=$first"; step=0 ;;
56 +) when=":when=$first+"; step=1 ;;
57 *) when=":when=$first+$step" ;;
79 ./$NAME $raw "$err" "$first" "$step" $N \
  /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)

Completed in 766 milliseconds

1 2 3 4 5 6 7 8 91011>>