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

1 2 3 4 5 6 7 891011>>

  /external/opencv/cv/src/
cvcorner.cpp 278 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/opencv/otherlibs/highgui/
grfmt_exr.cpp 198 bool GrFmtExrReader::ReadData( uchar* data, int step, int color )
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 / xstep, m_green->ySampling )
    [all...]
grfmt_base.h 78 virtual bool ReadData( uchar* data, int step, int color ) = 0;
101 virtual bool WriteImage( const uchar* data, int step,
  /external/v8/test/mjsunit/
debug-stepin-function-call.js 35 // Simple debug event handler which first time will cause 'step in' action
42 // Step into f2.call:
66 // Test step into function call from a function without local variables.
73 // Test step into function call from a function with some local variables.
82 // Test step into function call which is a part of an expression.
92 // Test step into function call from a function with some local variables.
102 // Test step into function apply from a function without local variables.
109 // Test step into function apply from a function with some local variables.
118 // Test step into function apply which is a part of an expression.
128 // Test step into function apply from a function with some local variables
    [all...]
  /external/mesa3d/src/gallium/auxiliary/gallivm/
lp_bld_flow.c 242 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));
    [all...]
  /build/core/
cleanbuild.mk 22 # id for each step by taking makefile path, INTERNAL_CLEAN_BUILD_VERSION
26 # $(2): indicate to not use makefile path as part of step id if not empty.
28 define _add-clean-step
45 define add-clean-step
46 $(eval # for build/core/cleanspec.mk, dont use makefile path as part of step id) \
48 $(eval $(call _add-clean-step,$(1),true)),\
49 $(eval $(call _add-clean-step,$(1))))
81 $(foreach step,$(steps), \
82 $(info Clean step: $(INTERNAL_CLEAN_STEP.$(step))) \
    [all...]
  /external/opencv3/modules/core/src/cuda/
gpu_mat.cu 71 CV_CUDEV_SAFE_CALL( cudaMallocPitch(&mat->data, &mat->step, elemSize * cols, rows) );
77 mat->step = elemSize * cols;
139 if (esz * cols == step)
142 int64 _nettosize = static_cast<int64>(step) * rows;
164 step = rows = cols = 0;
179 CV_CUDEV_SAFE_CALL( cudaMemcpy2D(data, step, mat.data, mat.step, cols * elemSize(), rows, cudaMemcpyHostToDevice) );
191 CV_CUDEV_SAFE_CALL( cudaMemcpy2DAsync(data, step, mat.data, mat.step, cols * elemSize(), rows, cudaMemcpyHostToDevice, stream) );
204 CV_CUDEV_SAFE_CALL( cudaMemcpy2D(dst.data, dst.step, data, step, cols * elemSize(), rows, cudaMemcpyDeviceToHost) )
    [all...]
  /prebuilts/misc/common/swig/include/2.0.11/python/
pycontainer.swg 207 slice_adjust(Difference i, Difference j, Py_ssize_t step, size_t size, Difference &ii, Difference &jj, bool insert = false) {
208 if (step == 0) {
209 throw std::invalid_argument("slice step cannot be zero");
210 } else if (step > 0) {
259 getslice(const Sequence* self, Difference i, Difference j, Py_ssize_t step) {
263 swig::slice_adjust(i, j, step, size, ii, jj);
265 if (step > 0) {
270 if (step == 1) {
277 for (Py_ssize_t c=0; c<step && it!=se; ++c)
292 for (Py_ssize_t c=0; c<-step && it!=se; ++c
    [all...]
  /external/autotest/client/common_lib/
enum.py 36 step = kwargs.get('step', 1)
43 value = i * step + start_value
  /external/chromium-trace/catapult/dashboard/dashboard/
find_step_test.py 11 # Sample data where there is a small-ish step upwards around revision 304772.
55 # Sample data where there is no clear step pattern.
131 step = [3, 3, 3, 3, 10, 10, 10]
132 self.assertEqual(1.0, find_step.Steppiness(step, 4))
135 step = [1, 2, 1, 2, 4, 3, 5, 4]
136 self.assertAlmostEqual(0.56005865, find_step.Steppiness(step, 4))
139 step = [1, 2, 1, 2, 4, 3, 5, 4]
142 find_step.Steppiness(step, 4),
146 step = [1, 0, 1, 0, 1, 0, 1, 0]
147 self.assertAlmostEqual(0.0, find_step.Steppiness(step, 4)
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/coll/
Collation.java 506 * Decrements a 2-byte primary by one range step (1..0x7f).
508 static long decTwoBytePrimaryByOneStep(long basePrimary, boolean isCompressible, int step) {
510 // minus the step, modulo the number of usable byte values, plus the minimum.
513 assert(0 < step && step <= 0x7f);
514 int byte2 = ((int)(basePrimary >> 16) & 0xff) - step;
530 * Decrements a 3-byte primary by one range step (1..0x7f).
532 static long decThreeBytePrimaryByOneStep(long basePrimary, boolean isCompressible, int step) {
534 // minus the step, modulo the number of usable byte values, plus the minimum.
535 assert(0 < step && step <= 0x7f)
    [all...]
  /external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
Collation.java 504 * Decrements a 2-byte primary by one range step (1..0x7f).
506 static long decTwoBytePrimaryByOneStep(long basePrimary, boolean isCompressible, int step) {
508 // minus the step, modulo the number of usable byte values, plus the minimum.
511 assert(0 < step && step <= 0x7f);
512 int byte2 = ((int)(basePrimary >> 16) & 0xff) - step;
528 * Decrements a 3-byte primary by one range step (1..0x7f).
530 static long decThreeBytePrimaryByOneStep(long basePrimary, boolean isCompressible, int step) {
532 // minus the step, modulo the number of usable byte values, plus the minimum.
533 assert(0 < step && step <= 0x7f)
    [all...]
  /external/mesa3d/src/gallium/state_trackers/clover/core/
base.hpp 144 step(F op, S state, Its its, Args... args) { function in struct:clover::__iter_helper
145 return __iter_helper<T, S, N - 1>::step(
154 step(F op, S state, Its its, Args... args) { function in struct:clover::__iter_helper
165 step(F op, __empty state, Its its, Args... args) { function in struct:clover::__iter_helper
190 __iter_helper<void, __empty, sizeof...(Its)>::step(
214 ::step(op, {}, std::tie(it0, its...)));
231 a = __iter_helper<T, T, sizeof...(Its)>::step(
248 if (__iter_helper<bool, __empty, sizeof...(Its)>::step(
  /external/opencv3/modules/core/include/opencv2/core/
optim.hpp 113 where to start), all the others (terminal criteria, initial step, function to be minimized) are
133 which at each step uses an information about the values of a function evaluated only at `n+1`
135 each step new point is chosen to evaluate function at, obtained value is compared with previous
158 /** @brief Returns the initial step that will be used in downhill simplex algorithm.
160 @param step Initial step that will be used in algorithm. Note, that although corresponding setter
164 virtual void getInitStep(OutputArray step) const=0;
166 /** @brief Sets the initial step that will be used in downhill simplex algorithm.
168 Step, together with initial point (givin in DownhillSolver::minimize) are two `n`-dimensional
170 determines the position of a simplex (it will become simplex's centroid), while step determines th
    [all...]
  /external/opencv3/modules/core/test/
test_hal_core.cpp 162 hal::LU(a.ptr<float>(), a.step, size, x.ptr<float>(), x.step, 1);
164 hal::LU(a.ptr<double>(), a.step, size, x.ptr<double>(), x.step, 1);
168 hal::Cholesky(a.ptr<float>(), a.step, size, x.ptr<float>(), x.step, 1);
170 hal::Cholesky(a.ptr<double>(), a.step, size, x.ptr<double>(), x.step, 1);
  /external/opencv3/modules/cudaoptflow/src/
brox.cpp 152 frame0MemSeg.size = frame0.step * frame0.rows;
157 frame1MemSeg.size = frame1.step * frame1.rows;
162 uMemSeg.size = u.step * u.rows;
167 vMemSeg.size = v.step * v.rows;
172 NCVMatrixReuse<Ncv32f> frame0Mat(frame0MemSeg, static_cast<Ncv32u>(textureAlignment), frame0.cols, frame0.rows, static_cast<Ncv32u>(frame0.step));
173 NCVMatrixReuse<Ncv32f> frame1Mat(frame1MemSeg, static_cast<Ncv32u>(textureAlignment), frame1.cols, frame1.rows, static_cast<Ncv32u>(frame1.step));
174 NCVMatrixReuse<Ncv32f> uMat(uMemSeg, static_cast<Ncv32u>(textureAlignment), u.cols, u.rows, static_cast<Ncv32u>(u.step));
175 NCVMatrixReuse<Ncv32f> vMat(vMemSeg, static_cast<Ncv32u>(textureAlignment), v.cols, v.rows, static_cast<Ncv32u>(v.step));
  /external/skia/infra/bots/flavor/
chromeos_flavor.py 24 def step(self, name, cmd, **kwargs): member in class:ChromeOSFlavorUtils
25 """Wrapper for the Step API; runs a step as appropriate for this flavor."""
31 super(ChromeOSFlavorUtils, self).step(name=name,
  /external/universal-tween-engine/java/api/src/aurelienribon/tweenengine/
Timeline.java 284 protected void updateOverride(int step, int lastStep, boolean isIterationStep, float delta) {
285 if (!isIterationStep && step > lastStep) {
292 if (!isIterationStep && step < lastStep) {
301 if (step > lastStep) {
302 if (isReverse(step)) {
310 } else if (step < lastStep) {
311 if (isReverse(step)) {
320 float dt = isReverse(step) ? -delta : delta;
  /external/v8/test/mjsunit/es6/debug-promises/
try-throw-reject-in-constructor.js 14 var step = 0; variable
20 assertEquals(0, step);
26 step++;
43 assertEquals(1, step);
  /external/v8/test/mjsunit/es6/
regexp-match-lastindex.js 6 // ECMA-262 6.0 21.2.5.6 step 8.c.
regexp-replace-lastindex.js 6 // ECMA-262 6.0 21.2.5.8 step 10.c.
  /external/valgrind/gdbserver_tests/
make_local_links 80 # by default, we can run tests needed next/step/...
81 # But on ARM, we need at least 7.1 to run the 'next/step/...' tests.
85 check_version 7.1 gdbserver_tests/gdb.step "gdbserver next/step/... tests ARM"
87 check_version 7.0 gdbserver_tests/gdb.step "gdbserver next/step/... tests"
  /external/webp/src/dsp/
argb.c 29 int len, int step, uint32_t* out) {
33 offset += step;
  /frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
cor_h_x2.cpp 117 step = step size between pulses in one track (Word16)
168 Word16 step // (i): step size from one pulse position to the next
182 for (i = k; i < L_CODE; i += step)
234 Word16 step, /* (i): step size from one pulse position to the next
253 for (i = k; i < L_CODE; i += step)
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/comm/src/
omxVCCOMM_Copy8x8_s.s 8 ; * [in] step - distance between the starts of consecutive lines in the reference frame, in bytes;
16 ; * - step <8 or step is not a multiple of 8.
32 step RN 2 label
43 MOV Count,step ;//Count=step
45 LDRD X0,[pSrc],Count ;//pSrc after loading : pSrc=pSrc+step

Completed in 879 milliseconds

1 2 3 4 5 6 7 891011>>