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

1 23 4 5 6 7 8 91011>>

  /libcore/luni/src/test/java/libcore/java/util/zip/
OldAndroidGZIPStreamTest.java 65 byte val, step;
69 step = 1;
74 val += step;
77 step += stepStep;
  /external/webp/src/enc/
filter.c 52 static inline void do_filter2(uint8_t* p, int step) {
53 const int p1 = p[-2*step], p0 = p[-step], q0 = p[0], q1 = p[step];
57 p[-step] = clip1[255 + p0 + a2];
62 static inline void do_filter4(uint8_t* p, int step) {
63 const int p1 = p[-2*step], p0 = p[-step], q0 = p[0], q1 = p[step];
68 p[-2*step] = clip1[255 + p1 + a3]
    [all...]
  /cts/tests/src/android/app/cts/
SearchManagerStubActivity.java 73 public boolean doStep(int step) throws FailException {
74 switch (step) {
87 throw new IllegalArgumentException("Bad step " + step);
104 public boolean doStep(int step) throws FailException {
105 switch (step) {
124 throw new IllegalArgumentException("Bad step " + step);
133 public boolean doStep(int step) throws FailException {
134 switch (step) {
    [all...]
  /cts/apps/CtsVerifier/jni/audioquality/
OverflowCheck.cpp 21 large step changes in value from one sample to the next. On the
51 static void findEndpoints(short* data, int n, int step, int* start, int* end) {
52 int size = step;
55 for (int frame = 0; frame < last_frame; frame += step) {
111 int step = int(0.5 + (windSize * sampleRate)); local
115 findEndpoints(pcm, numSamples, step, onset, offset);
  /external/apache-http/src/org/apache/http/conn/routing/
BasicRouteDirector.java 54 * Provides the next step.
61 * either the next step to perform, or success, or failure.
70 int step = UNREACHABLE; local
73 step = firstStep(plan);
75 step = proxiedStep(plan, fact);
77 step = directStep(plan, fact);
79 return step;
85 * Determines the first step to establish a route.
89 * @return the first step
99 * Determines the next step to establish a direct connection
    [all...]
  /external/opencv/otherlibs/highgui/
grfmt_jpeg.h 59 bool ReadData( uchar* data, int step, int color );
78 bool WriteImage( const uchar* data, int step,
115 bool ReadData( uchar* data, int step, int color );
156 void ProcessScan( int* idx, int ns, uchar* data, int step, int color );
190 bool WriteImage( const uchar* data, int step,
grfmt_sunras.h 70 bool ReadData( uchar* data, int step, int color );
93 bool WriteImage( const uchar* data, int step,
grfmt_exr.h 65 bool ReadData( uchar* data, int step, int color );
73 void ChromaToBGR( float *data, int numlines, int step );
95 bool WriteImage( const uchar* data, int step,
grfmt_tiff.h 100 bool ReadData( uchar* data, int step, int color );
120 bool ReadData( uchar* data, int step, int color );
154 bool WriteImage( const uchar* data, int step,
grfmt_bmp.cpp 187 bool GrFmtBmpReader::ReadData( uchar* data, int step, int color )
204 data += (m_height - 1)*step;
205 step = -step;
227 for( y = 0; y < m_height; y++, data += step )
241 for( y = 0; y < m_height; y++, data += step )
307 data = FillUniColor( data, line_end, step, width3,
311 data = FillUniGray( data, line_end, step, width3,
329 for( y = 0; y < m_height; y++, data += step )
359 data = FillUniColor( data, line_end, step, width3,
    [all...]
  /external/webkit/Tools/Scripts/webkitpy/tool/steps/
steps_unittest.py 48 def _run_step(self, step, tool=None, options=None, state=None):
55 step(tool, options).run(state)
71 step = RunTests(MockTool(log_executive=True), mock_options)
77 step = RunTests(tool, mock_options)
87 OutputCapture().assert_outputs(self, step.run, [{}], expected_stderr=expected_stderr)
preparechangelog_unittest.py 41 step = PrepareChangeLog(MockTool(), MockOptions())
49 capture.assert_outputs(self, step.run, [state])
  /external/tremolo/Tremolo/
mdct.c 64 STIN void presymmetry(DATA_TYPE *in,int n2,int step){
76 XPROD31( s0, s2, T[0], T[1], &aX[0], &aX[2] ); T+=step;
82 XPROD31( s0, s2, T[1], T[0], &aX[0], &aX[2] ); T-=step;
95 XNPROD31( ro2, ro0, T[1], T[0], &aX[0], &aX[2] ); T+=step;
197 STIN void mdct_butterfly_generic(DATA_TYPE *x,int points,int step){
209 XPROD31( s2, s3, T[0], T[1], &x2[1], &x2[3] ); T+=step;
222 XNPROD31( s3, s2, T[0], T[1], &x2[1], &x2[3] ); T-=step;
274 STIN void mdct_step7(DATA_TYPE *x,int n,int step){
277 LOOKUP_T *T = (step>=4)?(sincos_lookup0+(step>>1)):sincos_lookup1
413 int step; local
    [all...]
  /external/dropbear/libtommath/
bn_mp_prime_next_prime.c 26 mp_digit res_tab[PRIME_SIZE], step, kstep; local
109 step = 0;
114 /* increase step to next candidate */
115 step += kstep;
119 /* add the step to each residue */
132 } while (y == 1 && step < ((((mp_digit)1)<<DIGIT_BIT) - kstep));
134 /* add the step */
135 if ((err = mp_add_d(a, step, a)) != MP_OKAY) {
139 /* if didn't pass sieve and step == MAX then skip test */
140 if (y == 1 && step >= ((((mp_digit)1)<<DIGIT_BIT) - kstep))
    [all...]
  /external/opencv/cxcore/src/
cxlogic.cpp 64 uchar* dst, int step, CvSize size ), (src1, step1, src2, step2, dst, step, size) )\
66 for( ; size.height--; src1 += step1, src2 += step2, dst += step ) \
112 ( const uchar* src0, int step1, uchar* dst0, int step, CvSize size, \
117 for( ; size.height--; src0 += step1, dst0 += step ) \
288 dstbuf.step = cvAlign( dstbuf.step, 8 );
289 buf_size = dstbuf.step ? dstbuf.step*dy : size.width*elem_size;
303 src_step = src->step;
    [all...]
  /external/libxml2/
pattern.c 89 int flags; /* properties of that step */
111 int *states; /* the array of step indexes */
138 int step; member in struct:_xmlStepState
338 * Add a step to an XSLT Compiled Match
460 xmlPatPushState(xmlStepStates *states, int step, xmlNodePtr node) {
476 states->states[states->nbstates].step = step;
479 fprintf(stderr, "Push: %d, %s\n", step, node->name);
496 xmlStepOpPtr step; local
503 step = &comp->steps[i]
1576 xmlStepOp step; local
1858 xmlStreamStep step; local
    [all...]
  /external/clang/test/SemaCXX/
for-range-examples.cpp 30 T it, step; member in class:value_range_detail::value_range_step_iter
32 value_range_step_iter(const T &it, const T &step) : it(it), step(step) {}
35 value_range_step_iter &operator++() { it += step; return *this; }
40 T it, step, end_; member in class:value_range_detail::value_range_step
42 value_range_step(const T &it, const T &end, const T &step) :
43 it(it), end_(end), step(step) {}
45 iterator begin() const { return iterator(it, step); }
    [all...]
  /external/chromium/chrome/browser/sync/util/
user_settings_win.cc 29 if (SQLITE_DONE != statement.step()) {
46 if (SQLITE_ROW == query.step()) {
  /external/webkit/Source/WebCore/html/
BaseDateAndTimeInputType.cpp 111 bool BaseDateAndTimeInputType::stepMismatch(const String& value, double step) const
119 ASSERT(round(step) == step);
120 return fmod(doubleValue, step);
167 double step; local
168 if (!element()->getAllowedValueStep(&step))
170 if (!fmod(step, msecPerMinute))
172 if (!fmod(step, msecPerSecond))
NumberInputType.cpp 124 bool NumberInputType::stepMismatch(const String& value, double step) const
133 // is greater than step*2^DBL_MANT_DIG, the following computation for
135 if (doubleValue / pow(2.0, DBL_MANT_DIG) > step)
137 // The computation follows HTML5 4.10.7.2.10 `The step attribute' :
138 // ... that number subtracted from the step base is not an integral multiple
139 // of the allowed value step, the element is suffering from a step mismatch.
140 double remainder = fabs(doubleValue - step * round(doubleValue / step));
143 double computedAcceptableError = acceptableError(step);
    [all...]
  /external/webkit/Source/WebCore/xml/
XPathPath.h 40 class Step;
65 void appendStep(Step* step);
66 void insertFirstStep(Step* step);
71 Vector<Step*> m_steps;
  /external/chromium/chrome/browser/chromeos/login/
login_display_host.h 39 // Sets current step on OOBE progress bar.
40 virtual void SetOobeProgress(BackgroundView::LoginStep step) = 0;
  /external/webkit/Tools/Scripts/webkitpy/tool/commands/
stepsequence.py 56 for step in self._steps:
57 collected_options = collected_options + step.options()
63 for step in self._steps:
64 step(tool, options).run(state)
  /build/core/
cleanspec.mk 19 # 1. DELETE ANY "add-clean-step" ENTRIES THAT HAVE PILED UP IN THIS FILE.
28 # Do not touch INTERNAL_CLEAN_BUILD_VERSION if you've added a clean step!
32 # a file or delete some intermediate files, add a clean step to the end
37 # $(call add-clean-step, touch -c external/sqlite/sqlite3.h)
38 # $(call add-clean-step, rm -rf $(PRODUCT_OUT)/obj/STATIC_LIBRARIES/libz_intermediates)
50 # touch step and add it to the end of the list.
57 #$(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/APPS/AndroidTests_intermediates)
58 #$(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/JAVA_LIBRARIES/core_intermediates)
59 #$(call add-clean-step, find $(OUT_DIR) -type f -name "IGTalkSession*" -print0 | xargs -0 rm -f)
60 #$(call add-clean-step, rm -rf $(PRODUCT_OUT)/data/*
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/
ContextShadow.cpp 136 // For each step, we blur the alpha in a channel and store the result
137 // in another channel for the subsequent step.
142 for (int step = 0; step < 3; ++step) {
143 int side1 = (!step) ? dmin : dmax;
144 int side2 = (step == 1) ? dmin : dmax;
148 int alpha1 = pixels[channels[step]];
149 int alpha2 = pixels[(dim - 1) * stride + channels[step]];
150 unsigned char* ptr = pixels + channels[step + 1]
    [all...]

Completed in 742 milliseconds

1 23 4 5 6 7 8 91011>>