HomeSort by relevance Sort by last modified time
    Searched refs:depth (Results 276 - 300 of 3356) sorted by null

<<11121314151617181920>>

  /external/opencv/otherlibs/highgui/
grfmt_base.h 86 int m_bit_depth;// bit depth per channel (normally 8)
88 bool m_native_depth;// use the native bit depth of the image
100 virtual bool IsFormatSupported( int depth );
102 int width, int height, int depth, int channels ) = 0;
grfmt_exr.h 94 bool IsFormatSupported( int depth );
96 int width, int height, int depth, int channels );
grfmt_jpeg2000.h 90 bool IsFormatSupported( int depth );
92 int width, int height, int depth, int channels );
  /external/opencv3/modules/core/include/opencv2/core/
private.hpp 223 static inline IppDataType ippiGetDataType(int depth)
225 return depth == CV_8U ? ipp8u :
226 depth == CV_8S ? ipp8s :
227 depth == CV_16U ? ipp16u :
228 depth == CV_16S ? ipp16s :
229 depth == CV_32S ? ipp32s :
230 depth == CV_32F ? ipp32f :
231 depth == CV_64F ? ipp64f : (IppDataType)-1;
  /external/opencv3/modules/cudaimgproc/perf/
perf_bilateral_filter.cpp 63 const int depth = GET_PARAM(1); local
71 const int type = CV_MAKE_TYPE(depth, channels);
perf_blend.cpp 58 const int depth = GET_PARAM(1); local
61 const int type = CV_MAKE_TYPE(depth, channels);
  /external/opencv3/modules/cudalegacy/include/opencv2/cudalegacy/
NCVPyramid.hpp 57 CV_EXPORTS void downsampleX2(PtrStepSzb src, PtrStepSzb dst, int depth, int cn, cudaStream_t stream);
58 CV_EXPORTS void interpolateFrom1(PtrStepSzb src, PtrStepSzb dst, int depth, int cn, cudaStream_t stream);
  /external/opencv3/modules/imgcodecs/src/
grfmt_base.cpp 94 bool BaseImageEncoder::isFormatSupported( int depth ) const
96 return depth == CV_8U;
  /external/slf4j/log4j-over-slf4j/src/main/java/org/apache/log4j/
NDC.java 34 int depth = getDepth(); local
35 for (int i = 0; i < depth; i++) {
  /external/v8/test/cctest/
expression-type-collector.cc 45 e.depth = depth();
  /external/wpa_supplicant_8/wpa_supplicant/dbus/
dbus_old.h 80 int depth, const char *subject,
122 int depth, const char *subject,
  /frameworks/base/libs/hwui/
PathTessellator.h 131 std::vector<Vertex> &outputVertices, int depth = 0);
143 std::vector<Vertex> &outputVertices, int depth = 0);
  /frameworks/base/media/mca/filterfw/java/android/filterfw/core/
MutableFrameFormat.java 72 public void setDimensions(int width, int height, int depth) {
76 dimensions[2] = depth;
  /external/eigen/Eigen/src/Core/products/
TriangularMatrixMatrix_MKL.h 103 Index depth = IsLower ? diagSize : _depth; \
110 if (rows != depth) { \
114 if (((nthr==1) && (((std::max)(rows,depth)-diagSize)/(double)diagSize < 0.5))) { \
122 Map<const MatrixLhs, 0, OuterStride<> > lhsMap(_lhs,rows,depth,OuterStride<>(lhsStride)); \
127 rows, cols, depth, aa_tmp.data(), aStride, _rhs, rhsStride, res, resStride, alpha, gemm_blocking, 0); \
150 Map<const MatrixRhs, 0, OuterStride<> > rhs(_rhs,depth,cols,OuterStride<>(rhsStride)); \
161 Map<const MatrixLhs, 0, OuterStride<> > lhs(_lhs,rows,depth,OuterStride<>(lhsStride)); \
217 Index depth = IsLower ? _depth : diagSize; \
224 if (cols != depth) { \
228 if ((nthr==1) && (((std::max)(cols,depth)-diagSize)/(double)diagSize < 0.5)) {
    [all...]
  /libcore/ojluni/src/main/java/java/util/stream/
AbstractPipeline.java 109 private int depth; field in class:AbstractPipeline
169 this.depth = 0;
190 this.depth = 0;
214 this.depth = previousStage.depth + 1;
253 // Set the depth of this, last, pipeline stage to zero to slice the
257 depth = 0;
413 // The depth and flags of each pipeline stage are adjusted accordingly.
414 int depth = 1; local
421 depth = 0
    [all...]
  /external/ImageMagick/coders/
plasma.c 140 depth,
204 for (depth=1; ; depth++)
206 if (PlasmaImage(image,&segment_info,0,depth,exception) != MagickFalse)
208 status=SetImageProgress(image,LoadImageTag,(MagickOffsetType) depth,
138 depth, local
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/util/
Pick.java 137 public abstract String getInternal(int depth, Set alreadySeen);
159 public String getInternal(int depth, Set alreadySeen) {
162 result = indent(depth) + result + "SEQ(";
165 result += items[i].getInternal(depth+1, alreadySeen);
219 public String getInternal(int depth, Set alreadySeen) {
222 result = indent(depth) + result + "OR(";
225 result += items[i].getInternal(depth+1, alreadySeen) + "/" + weightedIndex.weights[i];
242 private static String indent(int depth) {
244 for (int i = 0; i < depth; ++i) {
274 public String getInternal(int depth, Set alreadySeen)
    [all...]
  /external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/util/
Pick.java 136 public abstract String getInternal(int depth, Set alreadySeen);
158 public String getInternal(int depth, Set alreadySeen) {
161 result = indent(depth) + result + "SEQ(";
164 result += items[i].getInternal(depth+1, alreadySeen);
218 public String getInternal(int depth, Set alreadySeen) {
221 result = indent(depth) + result + "OR(";
224 result += items[i].getInternal(depth+1, alreadySeen) + "/" + weightedIndex.weights[i];
241 private static String indent(int depth) {
243 for (int i = 0; i < depth; ++i) {
273 public String getInternal(int depth, Set alreadySeen)
    [all...]
  /external/libchrome/base/strings/
pattern.cc 73 int depth,
76 if (depth > kMaxDepth)
99 depth + 1, next))
104 depth + 1, next))
117 depth + 1, next))
  /external/libgdx/gdx/src/com/badlogic/gdx/
Graphics.java 37 * If supported by the backend, this interface lets you query the available display modes (graphics resolution and color depth)
97 /** Class describing the bits per pixel, depth buffer precision, stencil precision and number of MSAA samples. */
101 /* number of bits for depth and stencil buffer */
102 public final int depth, stencil; field in class:Graphics.BufferFormat
108 public BufferFormat (int r, int g, int b, int a, int depth, int stencil, int samples, boolean coverageSampling) {
113 this.depth = depth;
120 return "r: " + r + ", g: " + g + ", b: " + b + ", a: " + a + ", depth: " + depth + ", stencil: " + stencil
265 /** @return the format of the color, depth and stencil buffer in a {@link BufferFormat} instance *
    [all...]
  /external/libxml2/include/libxml/
debugXML.h 34 int depth);
38 int depth);
42 int depth);
46 int depth);
50 int depth);
  /external/mesa3d/src/gallium/auxiliary/util/
u_format_pack.py 415 depth = format.block_size()
416 print ' uint%u_t value = *(const uint%u_t *)src;' % (depth, depth)
422 print ' uint%u_t %s;' % (depth, src_channel.name)
424 print ' int%u_t %s;' % (depth, src_channel.name)
426 if depth > 8:
428 print ' value = util_bswap%u(value);' % depth
439 if shift + src_channel.size < depth:
442 if shift + src_channel.size < depth:
444 lshift = depth - (shift + src_channel.size
    [all...]
  /external/opencv3/modules/cudaarithm/src/
core.cpp 71 template<int DEPTH> struct NppTypeTraits;
80 template <int DEPTH> struct NppMirrorFunc
82 typedef typename NppTypeTraits<DEPTH>::npp_t npp_t;
87 template <int DEPTH, typename NppMirrorFunc<DEPTH>::func_t func> struct NppMirror
89 typedef typename NppMirrorFunc<DEPTH>::npp_t npp_t;
124 CV_Assert(src.depth() == CV_8U || src.depth() == CV_16U || src.depth() == CV_32S || src.depth() == CV_32F)
    [all...]
  /external/opencv3/modules/cudaarithm/src/cuda/
split_merge.cu 101 const int depth = src[0].depth();
107 CV_Assert( src[i].depth() == depth );
127 GpuMat dst = getOutputMat(_dst, size, CV_MAKE_TYPE(depth, channels), stream);
129 const func_t func = funcs[channels - 2][CV_ELEM_SIZE(depth) / 2];
210 const int depth = src.depth();
225 dst[i].create(src.size(), depth);
227 const func_t func = funcs[channels - 2][CV_ELEM_SIZE(depth) / 2]
    [all...]
  /frameworks/compile/mclinker/lib/LD/
Diagnostic.cpp 41 unsigned int depth = 0; local
43 if (depth == 0 && *pBegin == pVal)
45 if (depth != 0 && *pBegin == '}')
46 --depth;
61 ++depth;

Completed in 1951 milliseconds

<<11121314151617181920>>