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

1 2 3 4 5 67 8 91011>>

  /external/opencv/otherlibs/highgui/
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...]
  /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/opencv3/modules/videoio/src/
cap_ffmpeg_api.hpp 41 int* step, int* width, int* height, int* cn);
43 int* step, int* width, int* height, int* cn);
52 int step, int width, int height, int cn, int origin);
59 typedef int (*CvRetrieveFrame_Plugin)( void* capture_handle, unsigned char** data, int* step,
66 typedef int (*CvWriteFrame_Plugin)( void* writer_handle, const unsigned char* data, int step,
  /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/opencv3/3rdparty/libwebp/enc/
filter.c 53 static WEBP_INLINE void do_filter2(uint8_t* p, int step) {
54 const int p1 = p[-2*step], p0 = p[-step], q0 = p[0], q1 = p[step];
58 p[-step] = clip1[255 + p0 + a2];
63 static WEBP_INLINE void do_filter4(uint8_t* p, int step) {
64 const int p1 = p[-2*step], p0 = p[-step], q0 = p[0], q1 = p[step];
69 p[-2*step] = clip1[255 + p1 + a3]
    [all...]
  /external/opencv3/samples/cpp/
autofocus.cpp 57 int step; member in struct:FocusState
69 << state.step * state.direction << "\tLast change="
77 state.step = FOCUS_STEP;
94 * Minimal focus step depends on lens
121 cout << "Found minimal focus step = " << lStep << endl;
170 state.step /= 2;
176 state.step = FOCUS_STEP;
181 state.step = static_cast<int>(static_cast<double>(state.step) * 0.75);
186 || ((state.step < (state.minFocusStep * 1.5)
    [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/opencv3/modules/cudalegacy/src/
graphcuts.cpp 186 static_cast<int>(terminals.step), static_cast<int>(leftTransp.step), sznpp, labels.ptr<Npp8u>(), static_cast<int>(labels.step), state) );
191 static_cast<int>(terminals.step), static_cast<int>(leftTransp.step), sznpp, labels.ptr<Npp8u>(), static_cast<int>(labels.step), state) );
196 static_cast<int>(terminals.step), static_cast<int>(leftTransp.step), sznpp, labels.ptr<Npp8u>(), static_cast<int>(labels.step), state) );
260 static_cast<int>(terminals.step), static_cast<int>(leftTransp.step), sznpp, labels.ptr<Npp8u>(), static_cast<int>(labels.step), st (…)
    [all...]
  /external/opencv3/modules/imgcodecs/src/
grfmt_bmp.cpp 187 int step = (int)img.step; local
200 data += (m_height - 1)*step;
201 step = -step;
225 for( y = 0; y < m_height; y++, data += step )
239 for( y = 0; y < m_height; y++, data += step )
305 data = FillUniColor( data, line_end, step, width3,
309 data = FillUniGray( data, line_end, step, width3,
327 for( y = 0; y < m_height; y++, data += step )
    [all...]
grfmt_webp.cpp 177 (int)out_data_size, (int)img.step);
182 (int)out_data_size, (int)img.step);
258 size = WebPEncodeLosslessBGR(image->ptr(), width, height, (int)image->step, &out);
262 size = WebPEncodeLosslessBGRA(image->ptr(), width, height, (int)image->step, &out);
269 size = WebPEncodeBGR(image->ptr(), width, height, (int)image->step, quality, &out);
273 size = WebPEncodeBGRA(image->ptr(), width, height, (int)image->step, quality, &out);
  /external/chromium-trace/catapult/firefighter/update/handlers/
builds.py 157 # Step trace events.
158 for step in build.steps:
159 if not step.start_time:
162 if step.name == 'steps':
165 if step.end_time:
166 step_end_time = step.end_time
170 'name': step.name,
171 'start_time': step.start_time,
174 'benchmark': step.name, # TODO(dtu): This isn't always right.
184 'status': step.status
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/coll/
CollationRootElements.java 39 * Mask for getting the primary range step value from a primary-range-end element.
134 return elements[(int)elements[IX_FIRST_PRIMARY_INDEX]]; // step=0: cannot be a range end
220 int step; local
225 step = (int)q & PRIMARY_STEP_MASK;
226 if(step == 0) {
237 step = (int)nextElement & PRIMARY_STEP_MASK;
241 return Collation.decTwoBytePrimaryByOneStep(p, isCompressible, step);
243 return Collation.decThreeBytePrimaryByOneStep(p, isCompressible, step);
324 int step; local
325 if((q & SEC_TER_DELTA_FLAG) == 0 && (step = (int)q & PRIMARY_STEP_MASK) != 0)
    [all...]
  /external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
CollationRootElements.java 37 * Mask for getting the primary range step value from a primary-range-end element.
132 return elements[(int)elements[IX_FIRST_PRIMARY_INDEX]]; // step=0: cannot be a range end
218 int step; local
223 step = (int)q & PRIMARY_STEP_MASK;
224 if(step == 0) {
235 step = (int)nextElement & PRIMARY_STEP_MASK;
239 return Collation.decTwoBytePrimaryByOneStep(p, isCompressible, step);
241 return Collation.decThreeBytePrimaryByOneStep(p, isCompressible, step);
322 int step; local
323 if((q & SEC_TER_DELTA_FLAG) == 0 && (step = (int)q & PRIMARY_STEP_MASK) != 0)
    [all...]
  /external/opencv3/modules/core/include/opencv2/core/cuda/
border_interpolate.hpp 92 template <typename T> __device__ __forceinline__ D at_low(int y, const T* data, size_t step) const
94 return y >= 0 ? saturate_cast<D>(*(const T*)((const char*)data + y * step)) : val;
97 template <typename T> __device__ __forceinline__ D at_high(int y, const T* data, size_t step) const
99 return y < height ? saturate_cast<D>(*(const T*)((const char*)data + y * step)) : val;
102 template <typename T> __device__ __forceinline__ D at(int y, const T* data, size_t step) const
104 return (y >= 0 && y < height) ? saturate_cast<D>(*(const T*)((const char*)data + y * step)) : val;
119 template <typename T> __device__ __forceinline__ D at(int y, int x, const T* data, size_t step) const
121 return (x >= 0 && x < width && y >= 0 && y < height) ? saturate_cast<D>(((const T*)((const uchar*)data + y * step))[x]) : val;
199 template <typename T> __device__ __forceinline__ D at_low(int y, const T* data, size_t step) const
201 return saturate_cast<D>(*(const T*)((const char*)data + idx_row_low(y) * step));
    [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...]
  /external/opencv3/modules/core/include/opencv2/core/
cuda.inl.hpp 59 : flags(0), rows(0), cols(0), step(0), data(0), refcount(0), datastart(0), dataend(0), allocator(allocator_)
64 : flags(0), rows(0), cols(0), step(0), data(0), refcount(0), datastart(0), dataend(0), allocator(allocator_)
72 : flags(0), rows(0), cols(0), step(0), data(0), refcount(0), datastart(0), dataend(0), allocator(allocator_)
80 : flags(0), rows(0), cols(0), step(0), data(0), refcount(0), datastart(0), dataend(0), allocator(allocator_)
91 : flags(0), rows(0), cols(0), step(0), data(0), refcount(0), datastart(0), dataend(0), allocator(allocator_)
102 : flags(m.flags), rows(m.rows), cols(m.cols), step(m.step), data(m.data), refcount(m.refcount), datastart(m.datastart), dataend(m.dataend), allocator(m.allocator)
110 flags(0), rows(0), cols(0), step(0), data(0), refcount(0), datastart(0), dataend(0), allocator(allocator_)
145 std::swap(step, b.step);
    [all...]
  /external/opencv3/3rdparty/libwebp/dsp/
dec.c 495 static WEBP_INLINE void do_filter2(uint8_t* p, int step) {
496 const int p1 = p[-2*step], p0 = p[-step], q0 = p[0], q1 = p[step];
500 p[-step] = clip1[255 + p0 + a2];
505 static WEBP_INLINE void do_filter4(uint8_t* p, int step) {
506 const int p1 = p[-2*step], p0 = p[-step], q0 = p[0], q1 = p[step];
511 p[-2*step] = clip1[255 + p1 + a3]
    [all...]
  /external/webp/src/dsp/
dec.c 466 static WEBP_INLINE void do_filter2(uint8_t* p, int step) {
467 const int p1 = p[-2*step], p0 = p[-step], q0 = p[0], q1 = p[step];
471 p[-step] = VP8kclip1[p0 + a2];
476 static WEBP_INLINE void do_filter4(uint8_t* p, int step) {
477 const int p1 = p[-2*step], p0 = p[-step], q0 = p[0], q1 = p[step];
482 p[-2*step] = VP8kclip1[p1 + a3]
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/ode/nonstiff/
RungeKuttaIntegrator.java 31 * This class implements the common part of all fixed step Runge-Kutta
66 /** Prototype of the step interpolator. */
69 /** Integration step. */
70 private final double step; field in class:RungeKuttaIntegrator
74 * step. The default step handler does nothing.
79 * @param prototype prototype of the step interpolator to use
80 * @param step integration step
85 final double step) {
    [all...]
  /external/opencv3/modules/cudaarithm/src/cuda/
cmp_mat.cu 118 GlobPtrSz<uint> src1_ = globPtr((uint*) src1.data, src1.step, src1.rows, vcols);
119 GlobPtrSz<uint> src2_ = globPtr((uint*) src2.data, src2.step, src1.rows, vcols);
120 GlobPtrSz<uint> dst_ = globPtr((uint*) dst.data, dst.step, src1.rows, vcols);
128 GlobPtrSz<uint> src1_ = globPtr((uint*) src1.data, src1.step, src1.rows, vcols);
129 GlobPtrSz<uint> src2_ = globPtr((uint*) src2.data, src2.step, src1.rows, vcols);
130 GlobPtrSz<uint> dst_ = globPtr((uint*) dst.data, dst.step, src1.rows, vcols);
138 GlobPtrSz<uint> src1_ = globPtr((uint*) src1.data, src1.step, src1.rows, vcols);
139 GlobPtrSz<uint> src2_ = globPtr((uint*) src2.data, src2.step, src1.rows, vcols);
140 GlobPtrSz<uint> dst_ = globPtr((uint*) dst.data, dst.step, src1.rows, vcols);
148 GlobPtrSz<uint> src1_ = globPtr((uint*) src1.data, src1.step, src1.rows, vcols)
    [all...]
  /external/v8/test/mjsunit/es6/
debug-stepin-proxies.js 45 var has = "step" in proxy; // b
46 var get = proxy.step; // c
47 proxy.step = 43; // d
  /external/v8/test/mjsunit/harmony/
async-debug-step-in-and-out.js 15 var [match, expected_count, step] = /\/\/ B(\d) (\w+)$/.exec(line);
17 if (step != "Continue") execState.prepareStep(Debug.StepAction[step]);

Completed in 942 milliseconds

1 2 3 4 5 67 8 91011>>