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

1 2 3 4 5 6 7 8 91011>>

  /ndk/tests/device/test-stlport_shared-exception/jni/
omit-frame-pointer2.cpp 5 void step (int) function
12 step (2);
20 step (1);
22 step (-1);
26 step (3);
  /ndk/tests/device/test-stlport_static-exception/jni/
omit-frame-pointer2.cpp 5 void step (int) function
12 step (2);
20 step (1);
22 step (-1);
26 step (3);
  /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);
  /development/ndk/platforms/android-5/samples/hello-gl2/src/com/android/gl2jni/
GL2JNILib.java 32 public static native void step(); method in class:GL2JNILib
  /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
  /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...]
  /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/libvpx/libvpx/test/
dct16x16_test.cc 84 double step[16]; local
88 // step 1
89 step[ 0] = input[0] + input[15];
90 step[ 1] = input[1] + input[14];
91 step[ 2] = input[2] + input[13];
92 step[ 3] = input[3] + input[12];
93 step[ 4] = input[4] + input[11];
94 step[ 5] = input[5] + input[10];
95 step[ 6] = input[6] + input[ 9];
96 step[ 7] = input[7] + input[ 8]
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/test/
dct16x16_test.cc 84 double step[16]; local
88 // step 1
89 step[ 0] = input[0] + input[15];
90 step[ 1] = input[1] + input[14];
91 step[ 2] = input[2] + input[13];
92 step[ 3] = input[3] + input[12];
93 step[ 4] = input[4] + input[11];
94 step[ 5] = input[5] + input[10];
95 step[ 6] = input[6] + input[ 9];
96 step[ 7] = input[7] + input[ 8]
    [all...]
  /system/extras/tests/icachetest/
icache_main.c 4 extern void icache_test(long count, long step);
15 long step = 32; local
16 for (i=0 ; step<=2048 ; i++, step+=32)
20 icache_test(0x800000L, step);
23 printf("%6ld\t%lld\n", step*32, t);
  /development/ndk/platforms/android-18/samples/gles3jni/src/com/android/gles3jni/
GLES3JNILib.java 29 public static native void step(); method in class:GLES3JNILib
  /external/skia/src/animator/
SkAnimateProperties.h 17 SK_PROPERTY(step),
  /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
  /external/libvpx/libvpx/vp9/encoder/
vp9_dct.c 28 int16_t step[4]; local
31 step[0] = input[0] + input[3];
32 step[1] = input[1] + input[2];
33 step[2] = input[1] - input[2];
34 step[3] = input[0] - input[3];
36 temp1 = (step[0] + step[1]) * cospi_16_64;
37 temp2 = (step[0] - step[1]) * cospi_16_64;
40 temp1 = step[2] * cospi_24_64 + step[3] * cospi_8_64
72 \/*canbe16*\/ int step[4]; local
1043 int step[32]; local
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
vp9_dct.c 28 int16_t step[4]; local
31 step[0] = input[0] + input[3];
32 step[1] = input[1] + input[2];
33 step[2] = input[1] - input[2];
34 step[3] = input[0] - input[3];
36 temp1 = (step[0] + step[1]) * cospi_16_64;
37 temp2 = (step[0] - step[1]) * cospi_16_64;
40 temp1 = step[2] * cospi_24_64 + step[3] * cospi_8_64
61 \/*canbe16*\/ int step[4]; local
1010 int step[32]; local
    [all...]
  /dalvik/dx/tests/083-ssa-phi-placement/
run 18 dx --dump --ssa-blocks --ssa-step=phi-placement Blort.class
  /dalvik/dx/tests/086-ssa-edge-split/
run 18 dx --dump --width=1000 --ssa-blocks --ssa-step=edge-split Blort.class

Completed in 1317 milliseconds

1 2 3 4 5 6 7 8 91011>>