Searched refs:step (Results 126 - 150 of 819) sorted by relevance

1234567891011>>

/external/skia/experimental/Intersection/
H A DEdgeDemo.cpp40 static bool drawCircles(SkCanvas* canvas, int step, bool useOld) argument
49 scales[c] = abs(10 - (step + c * 4) % 21);
50 angles[c] = (step + c * 6) % 600;
51 locs[c * 2] = abs(130 - (step + c * 9) % 261);
52 locs[c * 2 + 1] = abs(170 - (step + c * 11) % 341);
54 pts[c * 8 + p * 2] = abs(90 - ((step + c * 121 + p * 13) % 190));
55 pts[c * 8 + p * 2 + 1] = abs(110 - ((step + c * 223 + p * 17) % 230));
103 static bool drawStars(SkCanvas* canvas, int step, bool useOld) argument
125 locs[s].fX = (int) (step * (1.3f * (s + 1) / stars) + s * 121) % (starW * 2);
131 locs[s].fY = (int) (step * (1.
269 drawLetters(SkCanvas* canvas, int step, bool useOld) argument
339 DrawEdgeDemo(SkCanvas* canvas, int step, bool useOld) argument
[all...]
/external/chromium_org/chrome/browser/resources/chromeos/login/
H A Doobe_screen_eula.css80 #eula .step-contents {
99 .step.eula-loading #cros-eula-frame {
103 .step.eula-loading #cros-eula-loading {
H A Doobe_screen_oauth_enrollment.css12 #oauth-enroll-step-contents {
18 #oauth-enroll-step-contents > div {
22 .oauth-enroll-state-working #oauth-enroll-step-working,
23 .oauth-enroll-state-error #oauth-enroll-step-error,
24 .oauth-enroll-state-explain #oauth-enroll-step-explain,
25 .oauth-enroll-state-success #oauth-enroll-step-success {
31 .oauth-enroll-state-signin #oauth-enroll-step-signin {
89 .oauth-enroll-step-content {
94 .oauth-enroll-step-icon {
101 .oauth-enroll-step
[all...]
/external/chromium_org/third_party/openmax_dl/dl/sp/src/arm/neon/
H A DarmSP_FFT_CToC_SC16_Radix2_fs_unsafe_s.S73 #define step r8 define
107 RSB step,pointStep,#4
115 VLD1 {dX1S32[0]},[pSrc],step @// step = -pointStep + 4
132 VST1 {dY1S32[0]},[pDst],dstStep @// dstStep = step = -pointStep + 4
H A DarmSP_FFT_CToC_SC32_Radix2_fs_unsafe_s.S73 #define step r8 define
103 RSB step,pointStep,#8
111 VLD1 dX1,[pSrc],step @// step = -pointStep + 8
128 VST1 dY1,[pDst],dstStep @// dstStep = step = -pointStep + 8
/external/opencv/cvaux/src/
H A Dcvcreatehandmask.cpp53 uchar * image_mask, int step,
79 memset( image_mask, 0, step * size.height );
90 *(image_mask + pt.y * step + pt.x) = 255;
52 icvCreateHandMask8uC1R(CvSeq * numbers, uchar * image_mask, int step, CvSize size, CvRect * roi ) argument
H A Dcvmorphing.cpp74 float step = 0; local
105 step = 0;
107 step = (endLine - begLine) / ((float) (endDestLine - begDestLine));
134 begLine += step;
161 begLine += step;
194 step = 0;
196 step = (endLine - begLine) / ((float) (endDestLine - begDestLine));
231 begLine += step;
261 begLine += step;
/external/opencv/otherlibs/highgui/
H A Dgrfmt_sunras.cpp173 bool GrFmtSunRasterReader::ReadData( uchar* data, int step, int color ) argument
209 for( y = 0; y < m_height; y++, data += step )
265 data += step;
278 for( y = 0; y < m_height; y++, data += step )
328 data = FillUniColor( data, line_end, step, width3,
332 data = FillUniGray( data, line_end, step, width3,
343 line_end += step;
356 for( y = 0; y < m_height; y++, data += step )
375 for( y = 0; y < m_height; y++, data += step )
414 bool GrFmtSunRasterWriter::WriteImage( const uchar* data, int step, argument
[all...]
H A Dgrfmt_tiff.h100 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,
H A Dgrfmt_exr.cpp198 bool GrFmtExrReader::ReadData( uchar* data, int step, int color ) argument
220 ystep = step;
314 UpSample( data, 3, step / xstep, xsample[0], m_blue->ySampling );
316 UpSample( data + xstep, 3, step / xstep, xsample[1], m_green->ySampling );
318 UpSample( data + 2 * xstep, 3, step / xstep, xsample[2], m_red->ySampling );
321 UpSample( data, 1, step / xstep, xsample[0], m_green->ySampling );
352 ChromaToBGR( (float *)buffer, 1, step );
374 out += step;
379 UpSampleY( data, 3, step / xstep, m_blue->ySampling );
381 UpSampleY( data + xstep, 3, step / xste
589 WriteImage( const uchar* data, int step, int width, int height, int depth, int channels ) argument
[all...]
/external/opencv/cxcore/src/
H A Dcxarithm.cpp83 type* dst, int step, CvSize size ), \
84 (src1, step1, src2, step2, dst, step, size) ) \
86 step1/=sizeof(src1[0]); step2/=sizeof(src2[0]); step/=sizeof(dst[0]); \
90 for( ; size.height--; src1 += step1, src2 += step2, dst += step ) \
98 for( ; size.height--; src1 += step1, src2 += step2, dst += step ) \
112 type* dst, int step, CvSize size, int /*scalefactor*/ ), \
113 (src1, step1, src2, step2, dst, step, size, 0) ) \
115 step1/=sizeof(src1[0]); step2/=sizeof(src2[0]); step/=sizeof(dst[0]); \
119 for( ; size.height--; src1 += step1, src2 += step2, dst += step ) \
127 for( ; size.height--; src1 += step1, src2 += step2, dst += step ) \
1869 icvAddWeighted_8u_fast_C1R( const uchar* src1, int step1, double alpha, const uchar* src2, int step2, double beta, double gamma, uchar* dst, int step, CvSize size ) argument
[all...]
/external/ceres-solver/internal/ceres/
H A Dlevenberg_marquardt_strategy.h40 // Levenberg-Marquardt step computation and trust region sizing
56 double* step);
60 // Treat the current step as a rejected step with no increase in
79 // allocations in every iteration and reuse when a step fails and
/external/chromium_org/build/android/buildbot/
H A Dbb_utils.py93 unknown_steps = set(steps) - set(step for step, _ in step_cmds)
98 for step, cmd in step_cmds:
99 if step in steps:
/external/chromium_org/media/base/
H A Dfake_audio_render_callback.h21 // The function used to fulfill Render() is f(x) = sin(2 * PI * x * |step|),
24 explicit FakeAudioRenderCallback(double step);
/external/chromium_org/third_party/WebKit/Source/core/html/forms/
H A DDateTimeChooser.h61 double step; member in struct:blink::DateTimeChooserParameters
H A DInputType.cpp392 Decimal candidate2 = candidate1 < numericValue ? candidate1 + stepRange.step() : candidate1 - stepRange.step();
727 exceptionState.throwDOMException(InvalidStateError, "This form element does not have an allowed value step.");
732 const Decimal step = stepRange.step(); local
736 // Snap-to-step / clamping steps
737 // If the current value is not matched to step value:
739 // e.g. <input type=number value=3 min=-100 step=3> -> 5
741 // e.g. <input type=number value=3 min=-100 step=3> -> 2
744 ASSERT(!step
853 const Decimal step = stepRange.step(); local
901 const Decimal step = StepRange::parseStep(anyStepHandling, stepDescription, element().fastGetAttribute(stepAttr)); local
[all...]
H A DRangeInputType.cpp126 const Decimal step = StepRange::parseStep(anyStepHandling, stepDescription, element().fastGetAttribute(stepAttr)); local
127 return StepRange(stepBase, minimum, maximum, step, stepDescription);
188 // FIXME: We can't use stepUp() for the step value "any". So, we increase
190 const Decimal step = equalIgnoringCase(element().fastGetAttribute(stepAttr), "any") ? (stepRange.maximum() - stepRange.minimum()) / 100 : stepRange.step(); local
191 const Decimal bigStep = std::max((stepRange.maximum() - stepRange.minimum()) / 10, step);
201 newValue = current + step;
203 newValue = current - step;
205 newValue = isVertical ? current + step : current - step;
[all...]
/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
H A Dlinemap.c250 unsigned long vindex, step; local
256 /* start step as the greatest power of 2 <= size */
257 step = 1;
258 while (step*2<=linemap->map_size)
259 step*=2;
260 while (step>0) {
261 if (vindex+step < linemap->map_size
262 && linemap->map_vector[vindex+step].line <= line)
263 vindex += step;
264 step /
[all...]
/external/javasqlite/src/main/java/SQLite/
H A DBackup.java41 * Perform a backup step.
47 public boolean step(int n) throws SQLite.Exception { method in class:Backup
56 * Perform the backup in one step.
/external/smack/src/org/xbill/DNS/
H A DGenerator.java22 /** The step value of the range. */
23 public long step; field in class:Generator
61 * @param step The step value of the range.
74 Generator(long start, long end, long step, String namePattern, argument
77 if (start < 0 || end < 0 || start > end || step <= 0)
86 this.step = step;
221 current += step;
233 for (long i = start; i < end; i += step) {
[all...]
/external/tremolo/Tremolo/
H A Dmdct.h64 int step,
/external/opencv/cv/src/
H A Dcvcorner.cpp278 shifted_ptr = tempsrc->data.ptr + el_anchor.y*tempsrc->step +
280 temp_step = tempsrc->step ? tempsrc->step : CV_STUB_STEP;
303 d_step = Dx->step ? Dx->step : CV_STUB_STEP;
353 float* cov_data = (float*)(cov->data.ptr + i*cov->step);
356 const short* dxdata = (const short*)(Dx->data.ptr + i*Dx->step);
357 const short* dydata = (const short*)(Dy->data.ptr + i*Dy->step);
371 const float* dxdata = (const float*)(Dx->data.ptr + i*Dx->step);
372 const float* dydata = (const float*)(Dy->data.ptr + i*Dy->step);
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/
H A Dlp_bld_flow.c242 LLVMValueRef step,
250 if (!step)
251 step = LLVMConstInt(LLVMTypeOf(end), 1, 0);
253 next = LLVMBuildAdd(builder, state->counter, step, "");
272 LLVMValueRef step)
274 lp_build_loop_end_cond(state, end, step, LLVMIntNE);
280 * e.g. for(i = start; i cmp_op end; i += step)
286 * \param step value added to iterator at end of each loop
294 LLVMValueRef step)
299 assert(LLVMTypeOf(start) == LLVMTypeOf(step));
240 lp_build_loop_end_cond(struct lp_build_loop_state *state, LLVMValueRef end, LLVMValueRef step, LLVMIntPredicate llvm_cond) argument
270 lp_build_loop_end(struct lp_build_loop_state *state, LLVMValueRef end, LLVMValueRef step) argument
289 lp_build_for_loop_begin(struct lp_build_for_loop_state *state, struct gallivm_state *gallivm, LLVMValueRef start, LLVMIntPredicate cmp_op, LLVMValueRef end, LLVMValueRef step) argument
[all...]
/external/chromium_org/third_party/openmax_dl/dl/sp/src/arm/armv7/
H A DarmSP_FFT_CToC_FC32_Radix4_unsafe_s.S59 #define step r12 /*@// Reuse grpCount*/ define
123 MOV step,#0
132 ADD step,step,diff @// step += (grpCount-1)*setCount
145 add pTwiddle, step
147 add pTwiddle, step
168 add pTwiddle, pTwiddle, step
170 sub pTwiddle, pTwiddle, step
192 SUB pTwiddle,pTwiddle,step,LS
[all...]
/external/mesa3d/src/gallium/auxiliary/gallivm/
H A Dlp_bld_flow.c242 LLVMValueRef step,
250 if (!step)
251 step = LLVMConstInt(LLVMTypeOf(end), 1, 0);
253 next = LLVMBuildAdd(builder, state->counter, step, "");
272 LLVMValueRef step)
274 lp_build_loop_end_cond(state, end, step, LLVMIntNE);
280 * e.g. for(i = start; i cmp_op end; i += step)
286 * \param step value added to iterator at end of each loop
294 LLVMValueRef step)
299 assert(LLVMTypeOf(start) == LLVMTypeOf(step));
240 lp_build_loop_end_cond(struct lp_build_loop_state *state, LLVMValueRef end, LLVMValueRef step, LLVMIntPredicate llvm_cond) argument
270 lp_build_loop_end(struct lp_build_loop_state *state, LLVMValueRef end, LLVMValueRef step) argument
289 lp_build_for_loop_begin(struct lp_build_for_loop_state *state, struct gallivm_state *gallivm, LLVMValueRef start, LLVMIntPredicate cmp_op, LLVMValueRef end, LLVMValueRef step) argument
[all...]

Completed in 657 milliseconds

1234567891011>>