HomeSort by relevance Sort by last modified time
    Searched refs:step (Results 76 - 100 of 746) sorted by null

1 2 34 5 6 7 8 91011>>

  /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/webkit/Tools/Scripts/webkitpy/tool/steps/
preparechangelog_unittest.py 41 step = PrepareChangeLog(MockTool(), MockOptions())
49 capture.assert_outputs(self, step.run, [state])
  /external/ceres-solver/internal/ceres/
levenberg_marquardt_strategy.h 40 // Levenberg-Marquardt step computation and trust region sizing
55 double* step);
59 // Treat the current step as a rejected step with no increase in
78 // allocations in every iteration and reuse when a step fails and
trust_region_minimizer.h 60 const double* step) const;
dogleg_strategy.h 40 // Dogleg step computation and trust region sizing strategy based on
47 // Gauss-Newton step, we compute a regularized version of it. This is
64 double* step);
86 void ComputeTraditionalDoglegStep(double* step);
88 void ComputeSubspaceDoglegStep(double* step);
105 // reports an invalid step, the value of mu_ is increased so that
108 // If a successful step is reported, then the value of mu_ is
142 // problem with the step computed in the last call to ComputeStep,
  /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)
  /external/opencv/otherlibs/highgui/
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...]
grfmt_jpeg2000.cpp 152 bool GrFmtJpeg2000Reader::ReadData( uchar* data, int step, int color )
235 result = ReadComponent8u( data + i, buffer, step, cmptlut[i], maxval, offset, ncmpts );
237 result = ReadComponent16u( ((unsigned short *)data) + i, buffer, step / 2, cmptlut[i], maxval, offset, ncmpts );
260 int step, int cmpt,
280 uchar* dst = data + (y - yoffset) * step - xoffset;
312 for( ++y; y < y1; y++, dst += step )
314 dst[x*ncmpts + step] = dst[x*ncmpts];
322 int step, int cmpt,
342 ushort* dst = data + (y - yoffset) * step - xoffset;
374 for( ++y; y < y1; y++, dst += step )
    [all...]
  /external/valgrind/main/gdbserver_tests/
mcbreak.stdoutB.exp 8 old_pc has changed after step
10 old_pc has changed after step
13 old_pc has changed after step
19 old_pc has changed after step
21 old_pc has changed after step
50 old_pc has changed after step
  /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...]
  /external/opencv/cv/include/
cvtypes.h 109 #define CV_INIT_3X3_DELTAS( deltas, step, nch ) \
110 ((deltas)[0] = (nch), (deltas)[1] = -(step) + (nch), \
111 (deltas)[2] = -(step), (deltas)[3] = -(step) - (nch), \
112 (deltas)[4] = -(nch), (deltas)[5] = (step) - (nch), \
113 (deltas)[6] = (step), (deltas)[7] = (step) + (nch))
  /external/opencv/cv/src/
cvcalccontrasthistogram.cpp 45 IPCVAPI(CvStatus, icvCalcContrastHist8uC1R, ( uchar** img, int step, CvSize size,
48 IPCVAPI(CvStatus, icvCalcContrastHistMask8uC1R, ( uchar** img, int step,
62 icvCalcContrastHist8uC1R( uchar** img, int step, CvSize size,
113 for( y = 0; y < size.height; y++, data0 += step )
131 int v1_d = MIN( data0[x], data0[x + step] );
132 int v2_d = MAX( data0[x], data0[x + step] );
175 icvCalcContrastHistMask8uC1R( uchar** img, int step, uchar* mask, int mask_step,
228 for( y = 0; y < size.height; y++, data0 += step, maskp += mask_step )
255 int v1_d = MIN( data0[x], data0[x + step] );
256 int v2_d = MAX( data0[x], data0[x + step] );
    [all...]
  /external/webp/src/enc/
filter.c 51 static WEBP_INLINE void do_filter2(uint8_t* p, int step) {
52 const int p1 = p[-2*step], p0 = p[-step], q0 = p[0], q1 = p[step];
56 p[-step] = clip1[255 + p0 + a2];
61 static WEBP_INLINE void do_filter4(uint8_t* p, int step) {
62 const int p1 = p[-2*step], p0 = p[-step], q0 = p[0], q1 = p[step];
67 p[-2*step] = clip1[255 + p1 + a3]
    [all...]
  /external/chromium/chrome/browser/sync/util/
user_settings.cc 5 // This class isn't pretty. It's just a step better than globals, which is what
38 if (SQLITE_DONE != statement.step()) {
117 int query_result = share_query.step();
170 if (SQLITE_DONE != statement.step()) {
197 int query_result = table_query.step();
205 query_result = version_query.step();
223 if (SQLITE_DONE != statement.step()) {
232 if (SQLITE_DONE != statement.step()) {
241 if (SQLITE_DONE != statement.step()) {
299 int query_result = query.step();
    [all...]
  /external/opencv/cxcore/src/
cxminmaxloc.cpp 52 step /= sizeof(src[0]); \
89 icvMinMaxIndx_##flavor##_C1R,( const srctype* src, int step, CvSize size, \
91 (src, step, size, minVal, maxVal, minLoc, maxLoc) ) \
95 for( ; size.height--; src += step ) \
107 icvMinMaxIndx_##flavor##_CnCR( const srctype* src, int step, \
115 for( ; size.height--; src += step ) \
169 step /= sizeof(src[0]); \
171 if( width*(cn) == step && width == maskStep ) \
177 for( y = 0; y < size.height; y++, src += step, \
216 icvMinMaxIndx_##flavor##_C1MR,( const srctype* src, int step, \
    [all...]
cxutils.cpp 92 ids_delta = labels->step ? labels->step/(int)sizeof(int) : 1;
113 float* s = (float*)(samples->data.ptr + i*samples->step);
115 double* c = (double*)(centers->data.ptr + k*centers->step);
140 double* c = (double*)(centers->data.ptr + k*centers->step);
150 float* s = (float*)(samples->data.ptr + i*samples->step);
158 double* c_o = (double*)(old_centers->data.ptr + k*old_centers->step);
172 float* s = (float*)(samples->data.ptr + i*samples->step);
178 double* c = (double*)(centers->data.ptr + k*centers->step);
276 int step = 1, coeff_count local
819 int cont_flag, arr_size, elem_size, cols, step; local
915 int type, step; local
    [all...]
  /external/sonivox/arm-fm-22k/lib_src/
eas_imaadpcm.c 84 pState->decoderL.step = 0;
85 pState->decoderR.step = 0;
132 /* if start of block, fetch new predictor and step index */
144 /* get step index for left channel - upper 8 bits are reserved */
148 { /* dpp: EAS_ReportEx(_EAS_SEVERITY_DETAIL, "Step: Was %d, now %d\n", pState->decoderL.step, sTemp); */ }
150 pState->decoderL.step = sTemp & 0xff;
159 /* get step index for right channel - upper 8 bits are reserved */
163 { /* dpp: EAS_ReportEx(_EAS_SEVERITY_DETAIL, "Step: Was %d, now %d\n", pState->decoderR.step, sTemp); */
    [all...]
  /external/sonivox/arm-hybrid-22k/lib_src/
eas_imaadpcm.c 84 pState->decoderL.step = 0;
85 pState->decoderR.step = 0;
132 /* if start of block, fetch new predictor and step index */
144 /* get step index for left channel - upper 8 bits are reserved */
148 { /* dpp: EAS_ReportEx(_EAS_SEVERITY_DETAIL, "Step: Was %d, now %d\n", pState->decoderL.step, sTemp); */ }
150 pState->decoderL.step = sTemp & 0xff;
159 /* get step index for right channel - upper 8 bits are reserved */
163 { /* dpp: EAS_ReportEx(_EAS_SEVERITY_DETAIL, "Step: Was %d, now %d\n", pState->decoderR.step, sTemp); */
    [all...]
  /external/sonivox/arm-wt-22k/lib_src/
eas_imaadpcm.c 84 pState->decoderL.step = 0;
85 pState->decoderR.step = 0;
132 /* if start of block, fetch new predictor and step index */
144 /* get step index for left channel - upper 8 bits are reserved */
148 { /* dpp: EAS_ReportEx(_EAS_SEVERITY_DETAIL, "Step: Was %d, now %d\n", pState->decoderL.step, sTemp); */ }
150 pState->decoderL.step = sTemp & 0xff;
159 /* get step index for right channel - upper 8 bits are reserved */
163 { /* dpp: EAS_ReportEx(_EAS_SEVERITY_DETAIL, "Step: Was %d, now %d\n", pState->decoderR.step, sTemp); */
    [all...]

Completed in 595 milliseconds

1 2 34 5 6 7 8 91011>>