HomeSort by relevance Sort by last modified time
    Searched refs:step (Results 51 - 75 of 1645) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/apache-commons-math/src/main/java/org/apache/commons/math/ode/nonstiff/
GillIntegrator.java 67 * Build a fourth-order Gill integrator with the given step.
68 * @param step integration step
70 public GillIntegrator(final double step) {
71 super("Gill", STATIC_C, STATIC_A, STATIC_B, new GillStepInterpolator(), step);
  /external/libvpx/libvpx/test/
dct16x16_test.cc 60 double step[16]; local
64 // step 1
65 step[ 0] = input[0] + input[15];
66 step[ 1] = input[1] + input[14];
67 step[ 2] = input[2] + input[13];
68 step[ 3] = input[3] + input[12];
69 step[ 4] = input[4] + input[11];
70 step[ 5] = input[5] + input[10];
71 step[ 6] = input[6] + input[ 9];
72 step[ 7] = input[7] + input[ 8]
    [all...]
  /external/opencv/otherlibs/highgui/
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 );
grfmt_bmp.h 64 bool ReadData( uchar* data, int step, int color );
86 bool WriteImage( const uchar* data, int step,
  /external/webp/src/dsp/
argb_mips_dsp_r2.c 23 const int step = 4; local
37 "addu %[offset], %[offset], %[step] \n\t"
52 : [a]"r"(a), [r]"r"(r), [g]"r"(g), [b]"r"(b), [step]"r"(step),
59 int len, int step, uint32_t* out) {
76 "addu %[offset], %[offset], %[step] \n\t"
90 : [a]"r"(a), [r]"r"(r), [g]"r"(g), [b]"r"(b), [step]"r"(step),
dec_mips32.c 30 static WEBP_INLINE void do_filter2(uint8_t* p, int step) {
31 const int p1 = p[-2 * step], p0 = p[-step], q0 = p[0], q1 = p[step];
35 p[-step] = VP8kclip1[p0 + a2];
40 static WEBP_INLINE void do_filter4(uint8_t* p, int step) {
41 const int p1 = p[-2 * step], p0 = p[-step], q0 = p[0], q1 = p[step];
46 p[-2 * step] = VP8kclip1[p1 + a3]
    [all...]
  /external/webp/src/utils/
huffman.c 44 uint32_t step = 1 << (len - 1); local
45 while (key & step) {
46 step >>= 1;
48 return (key & (step - 1)) + step;
51 // Stores code in table[0], table[step], table[2*step], ..., table[end].
52 // Assumes that end is an integer multiple of step.
54 int step, int end,
56 assert(end % step == 0)
141 int step; \/\/ step size to replicate values in current table local
    [all...]
  /packages/apps/Bluetooth/tests/src/com/android/bluetooth/tests/
TestSequencer.java 65 * Add a test step to the sequencer.
67 * @return the created step, which can be decorated before execution.
77 * Add a sub-step to a sequencer step. All requests added to the same index will be send to
80 * responses in the step will be searched for a match.
81 * @param index the index returned from addStep() to which the sub-step is to be added.
86 SeqStep step = sequence.get(index);
87 step.add(request, response);
125 for(SeqStep step : mSequence) {
126 long stepIndex = mSequence.indexOf(step);
    [all...]
MapObexTestServer.java 35 /* This needs to be static, as calling the super-constructor must be the first step.
87 SeqStep step = mSequence.get(mOperationIndex); local
88 Assert.assertNotNull("invalid step index!", step);
89 if(step.mServerPreAction != null) {
90 step.mServerPreAction.execute(step, request, null);
110 SeqStep step = mSequence.get(mOperationIndex); local
111 Assert.assertNotNull("invalid step index!", step);
139 SeqStep step = mSequence.get(mOperationIndex); local
166 SeqStep step = mSequence.get(mOperationIndex); local
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p10/src/
omxVCM4P10_FilterDeblockingChroma_VerEdge_I_s.s 56 step RN 14 label
156 ADD step, srcdstStep, srcdstStep
159 VLD1 dRow0, [pSrcDst], step
161 VLD1 dRow1, [pTmp], step
162 VLD1 dRow2, [pSrcDst], step
163 VLD1 dRow3, [pTmp], step
164 VLD1 dRow4, [pSrcDst], step
165 VLD1 dRow5, [pTmp], step
166 VLD1 dRow6, [pSrcDst], step
167 VLD1 dRow7, [pTmp], step
    [all...]
omxVCM4P10_PredictIntraChroma_8x8_s.s 78 step RN 10 label
207 ADD step, leftStep, leftStep
210 VLD1 {dLeftVal[0]},[pSrcLeft],step ;// pSrcLeft[0*leftStep]
211 VLD1 {dLeftVal[1]},[pTmp],step ;// pSrcLeft[1*leftStep]
212 VLD1 {dLeftVal[2]},[pSrcLeft],step ;// pSrcLeft[2*leftStep]
213 VLD1 {dLeftVal[3]},[pTmp],step ;// pSrcLeft[3*leftStep]
214 VLD1 {dLeftVal[4]},[pSrcLeft],step ;// pSrcLeft[4*leftStep]
215 VLD1 {dLeftVal[5]},[pTmp],step ;// pSrcLeft[5*leftStep]
216 VLD1 {dLeftVal[6]},[pSrcLeft],step ;// pSrcLeft[6*leftStep]
248 ADD step, dstStep, dstSte
    [all...]
  /external/skia/src/effects/
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.fY)
    [all...]
  /packages/apps/QuickSearchBox/tests/src/com/android/quicksearchbox/util/
PerNameExecutorTest.java 49 assertRanNever("step 0", a1, a2, a3, b1);
50 step(); // run a1, b1 method
51 assertRanOnce("step 1", a1, b1);
52 assertRanNever("step 1", a2, a3);
53 step(); // run a2 method
54 assertRanOnce("step 2", a1, b1, a2);
55 assertRanNever("step 2", a3);
56 step(); // run a3 method
57 assertRanOnce("step 3", a1, b1, a2, a3);
58 step(); // should do nothin method
67 step(); \/\/ run a1, b1 method
73 step(); \/\/ do nothing method
81 step(); \/\/ run a3, c1 method
84 step(); \/\/ do nothing method
109 private void step() { method in class:PerNameExecutorTest
    [all...]
  /external/chromium-trace/catapult/experimental/buildbot/
query.py 28 step = steps[BENCHMARK_NAME]
29 if step.result != buildbot.SUCCESS:
33 trace_results = step.results['chart_data']['charts'][VALUE_NAME].iteritems()
37 'start_time': step.start_time,
38 'end_time': step.end_time,
  /external/opencv3/modules/cudaarithm/src/cuda/
bitwise_mat.cu 84 GlobPtrSz<uint> vsrc = globPtr((uint*) src.data, src.step, src.rows, vcols);
85 GlobPtrSz<uint> vdst = globPtr((uint*) dst.data, dst.step, src.rows, vcols);
93 GlobPtrSz<ushort> vsrc = globPtr((ushort*) src.data, src.step, src.rows, vcols);
94 GlobPtrSz<ushort> vdst = globPtr((ushort*) dst.data, dst.step, src.rows, vcols);
100 GlobPtrSz<uchar> vsrc = globPtr((uchar*) src.data, src.step, src.rows, bcols);
101 GlobPtrSz<uchar> vdst = globPtr((uchar*) dst.data, dst.step, src.rows, bcols);
110 GlobPtrSz<uint> vsrc = globPtr((uint*) src.data, src.step, src.rows, src.cols * src.channels());
111 GlobPtrSz<uint> vdst = globPtr((uint*) dst.data, dst.step, src.rows, src.cols * src.channels());
117 GlobPtrSz<ushort> vsrc = globPtr((ushort*) src.data, src.step, src.rows, src.cols * src.channels());
118 GlobPtrSz<ushort> vdst = globPtr((ushort*) dst.data, dst.step, src.rows, src.cols * src.channels())
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_buffer.py 19 # Skip step 0 (invalid)
20 for step in indices[1:]:
21 self.assertEqual(b[start:stop:step],
22 s[start:stop:step])
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_buffer.py 19 # Skip step 0 (invalid)
20 for step in indices[1:]:
21 self.assertEqual(b[start:stop:step],
22 s[start:stop:step])
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_buffer.py 19 # Skip step 0 (invalid)
20 for step in indices[1:]:
21 self.assertEqual(b[start:stop:step],
22 s[start:stop:step])
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_buffer.py 19 # Skip step 0 (invalid)
20 for step in indices[1:]:
21 self.assertEqual(b[start:stop:step],
22 s[start:stop:step])
  /external/v8/test/mjsunit/
regress-587004.js 18 function step() { function
29 step();
31 step();
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/source/arm_neon_asm/
h264bsdClearMbLayer.s 28 step RN 3 label
52 MOV step, #32
56 VST1 qZero, [pMbLayer], step
58 VST1 qZero, [pTmp], step
59 VST1 qZero, [pMbLayer], step
60 VST1 qZero, [pTmp], step
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/source/arm_neon_asm_gcc/
h264bsdClearMbLayer.S 28 #define step r3 define
52 MOV step, #32
56 VST1.8 {qZero}, [pMbLayer], step
58 VST1.8 {qZero}, [pTmp], step
59 VST1.8 {qZero}, [pMbLayer], step
60 VST1.8 {qZero}, [pTmp], step
  /external/curl/src/
tool_urlglob.h 46 int step; member in struct:__anon8644::__anon8645::__anon8647
53 unsigned long step; member in struct:__anon8644::__anon8645::__anon8648
  /external/icu/icu4c/source/i18n/
collation.cpp 72 Collation::decTwoBytePrimaryByOneStep(uint32_t basePrimary, UBool isCompressible, int32_t step) {
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) {
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/libgdx/extensions/gdx-box2d/gdx-box2d/jni/Box2D/Dynamics/
b2TimeStep.h 27 float32 step; member in struct:b2Profile
40 float32 dt; // time step
41 float32 inv_dt; // inverse time step (0 if dt == 0).
65 b2TimeStep step; member in struct:b2SolverData

Completed in 717 milliseconds

1 23 4 5 6 7 8 91011>>