/external/libvpx/libvpx/vpx_dsp/ |
H A D | fwd_txfm.c | 29 tran_high_t step[4]; // canbe16 local 49 step[0] = input[0] + input[3]; 50 step[1] = input[1] + input[2]; 51 step[2] = input[1] - input[2]; 52 step[3] = input[0] - input[3]; 53 temp1 = (step[0] + step[1]) * cospi_16_64; 54 temp2 = (step[0] - step[1]) * cospi_16_64; 57 temp1 = step[ 393 tran_high_t step[32]; local [all...] |
/external/apache-commons-math/src/main/java/org/apache/commons/math/ode/nonstiff/ |
H A D | ClassicalRungeKuttaIntegrator.java | 67 * step. 68 * @param step integration step 70 public ClassicalRungeKuttaIntegrator(final double step) { argument 72 new ClassicalRungeKuttaStepInterpolator(), step);
|
H A D | 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) { argument 69 super("Euler", STATIC_C, STATIC_A, STATIC_B, new EulerStepInterpolator(), step);
|
H A D | MidpointIntegrator.java | 61 * Build a midpoint integrator with the given step. 62 * @param step integration step 64 public MidpointIntegrator(final double step) { argument 65 super("midpoint", STATIC_C, STATIC_A, STATIC_B, new MidpointStepInterpolator(), step);
|
H A D | ThreeEighthesIntegrator.java | 65 * Build a 3/8 integrator with the given step. 66 * @param step integration step 68 public ThreeEighthesIntegrator(final double step) { argument 69 super("3/8", STATIC_C, STATIC_A, STATIC_B, new ThreeEighthesStepInterpolator(), step);
|
H A D | GillIntegrator.java | 67 * Build a fourth-order Gill integrator with the given step. 68 * @param step integration step 70 public GillIntegrator(final double step) { argument 71 super("Gill", STATIC_C, STATIC_A, STATIC_B, new GillStepInterpolator(), step);
|
/external/skia/src/animator/ |
H A D | SkAnimateProperties.h | 17 SK_PROPERTY(step),
|
/external/v8/test/mjsunit/es6/debug-promises/ |
H A D | throw-in-constructor.js | 13 var step = 0; variable 19 assertEquals(0, step); 25 step++; 39 assertEquals(1, step);
|
H A D | try-reject-in-constructor.js | 13 var step = 0; variable 19 assertEquals(0, step); 25 step++; 41 assertEquals(1, step);
|
H A D | try-throw-reject-in-constructor.js | 14 var step = 0; variable 20 assertEquals(0, step); 26 step++; 43 assertEquals(1, step);
|
/external/webp/src/dsp/ |
H A D | dec_mips32.c | 28 static WEBP_INLINE void do_filter2(uint8_t* p, int step) { argument 29 const int p1 = p[-2 * step], p0 = p[-step], q0 = p[0], q1 = p[step]; 33 p[-step] = VP8kclip1[p0 + a2]; 38 static WEBP_INLINE void do_filter4(uint8_t* p, int step) { argument 39 const int p1 = p[-2 * step], p0 = p[-step], q0 = p[0], q1 = p[step]; 44 p[-2 * step] 51 do_filter6(uint8_t* p, int step) argument 66 hev(const uint8_t* p, int step, int thresh) argument 71 needs_filter(const uint8_t* p, int step, int thresh) argument 76 needs_filter2(const uint8_t* p, int step, int t, int it) argument [all...] |
/external/androidplot/AndroidPlot-Core/src/test/java/com/androidplot/xy/ |
H A D | XYStepCalculatorTest.java | 47 XYStep step = XYStepCalculator.getStep(XYStepMode.SUBDIVIDE, plotSize, numSegments, minVal, maxVal);
49 assertEquals(plotSize/(numSegments-1), step.getStepPix());
50 //assertEquals(10, step.getStepVal());
55 step = XYStepCalculator.getStep(XYStepMode.SUBDIVIDE, plotSize, numSegments, minVal, maxVal);
56 assertEquals(plotSize/(numSegments-1), step.getStepPix());
|
/external/javasqlite/src/main/java/SQLite/ |
H A D | Function.java | 43 * Callback for one step in aggregate function. 49 public void step(FunctionContext fc, String args[]); method in interface:Function 52 * Callback for final step in aggregate function.
|
H A D | Vm.java | 16 * Internal last error code for compile()/step() methods. 22 * Perform one step on compiled SQLite VM. 30 * while (vm.step(cb)) { 34 * while (vm.step(cb)) { 47 public native boolean step(Callback cb) throws SQLite.Exception; method in class:Vm
|
/external/libvpx/libvpx/test/ |
H A D | 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[ [all...] |
/external/opencv/otherlibs/highgui/ |
H A D | grfmt_jpeg2000.h | 68 bool ReadData( uchar* data, int step, int color ); 73 bool ReadComponent8u( uchar *data, jas_matrix_t *buffer, int step, int cmpt, 75 bool ReadComponent16u( unsigned short *data, jas_matrix_t *buffer, int step, int cmpt, 91 bool WriteImage( const uchar* data, int step, 95 int step, int ncmpts, int w, int h ); 97 int step, int ncmpts, int w, int h );
|
H A D | grfmt_imageio.h | 24 bool ReadData( uchar* data, int step, int color ); 40 bool WriteImage( const uchar* data, int step,
|
/external/skia/src/effects/ |
H A D | SkCornerPathEffect.cpp | 20 SkPoint* step) { 23 *step = b - a; 25 *step *= SK_ScalarHalf; 28 *step *= radius / dist; 45 SkVector firstStep, step; local 49 step.set(0, 0); 71 bool drawSegment = ComputeStep(pts[0], pts[1], fRadius, &step); 74 dst->moveTo(moveTo + step); 77 dst->quadTo(pts[0].fX, pts[0].fY, pts[0].fX + step.fX, 78 pts[0].fY + step 19 ComputeStep(const SkPoint& a, const SkPoint& b, SkScalar radius, SkPoint* step) argument [all...] |
/external/icu/icu4c/source/i18n/ |
H A D | collation.cpp | 72 Collation::decTwoBytePrimaryByOneStep(uint32_t basePrimary, UBool isCompressible, int32_t step) { argument 74 // minus the step, modulo the number of usable byte values, plus the minimum. 77 U_ASSERT(0 < step && step <= 0x7f); 78 int32_t byte2 = ((int32_t)(basePrimary >> 16) & 0xff) - step; 94 Collation::decThreeBytePrimaryByOneStep(uint32_t basePrimary, UBool isCompressible, int32_t step) { argument 96 // minus the step, modulo the number of usable byte values, plus the minimum. 97 U_ASSERT(0 < step && step <= 0x7f); 98 int32_t byte3 = ((int32_t)(basePrimary >> 8) & 0xff) - step; [all...] |
/external/libdrm/tests/modetest/ |
H A D | cursor.c | 73 void (*run)(struct cursor *cursor, struct cursor_step *step); 81 static void set_cursor(struct cursor *cursor, struct cursor_step *step) argument 83 int enabled = (step->arg ^ count) & 0x1; 94 static void move_cursor(struct cursor *cursor, struct cursor_step *step) argument 104 x += cursor->dx * step->arg; 105 y += cursor->dy * step->arg; 148 struct cursor_step *step = &steps[indx % ARRAY_SIZE(steps)]; local 153 step->run(cursor, step); 156 /* iterate to next count/step [all...] |
/external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/xy/ |
H A D | XYStepCalculator.java | 39 XYStep step = null;
42 step = getStep(plot.getDomainStepMode(), rect.width(), plot.getDomainStepValue(), minVal, maxVal);
45 step = getStep(plot.getRangeStepMode(), rect.height(), plot.getRangeStepValue(), minVal, maxVal);
48 return step;
52 //XYStep step = new XYStep();
|
/external/opencv/cv/src/ |
H A D | cvdistransform.cpp | 68 int step, float* dist, int dststep, CvSize size, const float* metrics ) 77 step /= sizeof(temp[0]); 80 icvInitTopBottom( temp, step, size, BORDER ); 86 int* tmp = (int*)(temp + (i+BORDER)*step) + BORDER; 97 int t0 = tmp[j-step-1] + DIAG_DIST; 98 int t = tmp[j-step] + HV_DIST; 100 t = tmp[j-step+1] + DIAG_DIST; 113 int* tmp = (int*)(temp + (i+BORDER)*step) + BORDER; 120 int t = tmp[j+step+1] + DIAG_DIST; 122 t = tmp[j+step] 67 icvDistanceTransform_3x3_C1R( const uchar* src, int srcstep, int* temp, int step, float* dist, int dststep, CvSize size, const float* metrics ) argument 139 icvDistanceTransform_5x5_C1R( const uchar* src, int srcstep, int* temp, int step, float* dist, int dststep, CvSize size, const float* metrics ) argument 228 icvDistanceTransformEx_5x5_C1R( const uchar* src, int srcstep, int* temp, int step, float* dist, int dststep, int* labels, int lstep, CvSize size, const float* metrics ) argument [all...] |
/external/opencv/cvaux/src/ |
H A D | cvvideo.cpp | 73 memcpy( even->data.ptr + even->step*y, 74 frame->data.ptr + frame->step*y*2, size.width ); 75 memcpy( odd->data.ptr + even->step*y, 76 frame->data.ptr + frame->step*(y*2+1), size.width );
|
/external/skia/gm/ |
H A D | stringart.cpp | 40 SkScalar step = angle; variable 47 SkPoint rp = SkPoint::Make(length*SkScalarCos(step) + center.fX, 48 length*SkScalarSin(step) + center.fY); 51 step += angle;
|
/external/skia/samplecode/ |
H A D | SampleStringArt.cpp | 35 SkScalar step = angle; variable 42 SkPoint rp = SkPoint::Make(length*SkScalarCos(step) + center.fX, 43 length*SkScalarSin(step) + center.fY); 46 step += angle;
|