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

1 2 34 5 6 7 8 91011>>

  /external/mesa3d/src/mesa/main/
depth.c 29 #include "depth.h"
42 _mesa_ClearDepth( GLclampd depth )
48 _mesa_debug(ctx, "glClearDepth(%f)\n", depth);
50 depth = CLAMP( depth, 0.0, 1.0 );
52 if (ctx->Depth.Clear == depth)
56 ctx->Depth.Clear = depth;
61 _mesa_ClearDepthf( GLclampf depth )
    [all...]
  /external/opencv/otherlibs/highgui/
grfmt_png.h 81 bool IsFormatSupported( int depth );
83 int width, int height, int depth, int channels );
grfmt_pxm.h 79 bool IsFormatSupported( int depth );
82 int width, int height, int depth, int channels );
  /external/opencv3/modules/core/misc/java/src/java/
core+CvType.java 5 // type depth constants
26 public static final int makeType(int depth, int channels) {
31 if (depth < 0 || depth >= CV_DEPTH_MAX) {
33 "Data type depth should be 0.." + (CV_DEPTH_MAX - 1));
35 return (depth & (CV_DEPTH_MAX - 1)) + ((channels - 1) << CV_CN_SHIFT);
70 public static final int depth(int type) { method in class:CvType
75 return depth(type) < CV_32F;
79 switch (depth(type)) {
99 switch (depth(type))
    [all...]
  /ndk/sources/host-tools/make-3.81/
debug.h 31 #define DBS(_l,_x) do{ if(ISDB(_l)) {print_spaces (depth); \
34 #define DBF(_l,_x) do{ if(ISDB(_l)) {print_spaces (depth); \
  /external/opencv3/modules/cudaimgproc/src/
color.cpp 91 CV_Assert( src.depth() == CV_8U || src.depth() == CV_16U || src.depth() == CV_32F );
94 _dst.create(src.size(), CV_MAKE_TYPE(src.depth(), 3));
97 funcs[src.depth()](src, dst, stream);
107 CV_Assert( src.depth() == CV_8U || src.depth() == CV_16U || src.depth() == CV_32F );
110 _dst.create(src.size(), CV_MAKE_TYPE(src.depth(), 4));
113 funcs[src.depth()](src, dst, stream)
    [all...]
  /libcore/ojluni/src/main/java/sun/security/provider/certpath/
PolicyNodeImpl.java 66 // the tree depth
241 * Removes all paths which don't reach the specified depth.
243 * @param depth an int representing the desired minimum depth of all paths
245 void prune(int depth) {
256 node.prune(depth);
259 if ((node.mChildren.size() == 0) && (depth > mDepth + 1))
297 * Returns all nodes at the specified depth in the tree.
299 * @param depth an int representing the depth of the desired node
    [all...]
  /external/opencv3/modules/photo/src/
fast_nlmeans_denoising_opencl.hpp 41 int depth = DataType<FT>::depth; local
44 if (depth == CV_64F && !doubleSupport)
69 ocl::typeToStr(depth), ocl::typeToStr(CV_MAKE_TYPE(depth, hn)),
70 ocl::typeToStr(CV_32SC(hn)), ocl::convertTypeStr(depth, CV_32S, hn, buf),
87 int type = _src.type(), depth = CV_MAT_DEPTH(type), cn = CV_MAT_CN(type); local
91 if (cn < 1 || cn > 4 || ((normType != NORM_L2 || depth != CV_8U) &&
92 (normType != NORM_L1 || (depth != CV_8U && depth != CV_16U)))
    [all...]
  /external/ImageMagick/coders/
psd-private.h 39 depth, member in struct:_PSDInfo
  /external/chromium-trace/catapult/third_party/coverage/coverage/ctracer/
datastack.h 34 int depth; /* The index of the last-used entry in stack. */ member in struct:DataStack
  /external/compiler-rt/test/asan/TestCases/Linux/
uar_signals.cc 42 void RecursiveFunction(int depth) {
43 if (depth == 0) return;
47 // printf("[%2d] n_signals: %d\n", depth, n_signals);
48 RecursiveFunction(depth - 1);
49 RecursiveFunction(depth - 1);
  /external/eigen/bench/
bench_unrolling 3 # gcc : CXX="g++ -finline-limit=10000 -ftemplate-depth-2000 --param max-inline-recursive-depth=2000"
5 CXX=${CXX-g++ -finline-limit=10000 -ftemplate-depth-2000 --param max-inline-recursive-depth=2000} # default value
  /external/libgdx/extensions/gdx-box2d/gdx-box2d/jni/jni-headers/linux/
jawt_md.h 29 int depth; member in struct:jawt_X11DrawingSurfaceInfo
  /external/libgdx/extensions/gdx-bullet/jni/jni-headers/linux/
jawt_md.h 29 int depth; member in struct:jawt_X11DrawingSurfaceInfo
  /external/libgdx/extensions/gdx-controllers/gdx-controllers-desktop/jni/jni-headers/linux/
jawt_md.h 29 int depth; member in struct:jawt_X11DrawingSurfaceInfo
  /external/libgdx/extensions/gdx-freetype/jni/jni-headers/linux/
jawt_md.h 29 int depth; member in struct:jawt_X11DrawingSurfaceInfo
  /external/libgdx/extensions/gdx-jnigen/src/com/badlogic/gdx/jnigen/resources/headers/linux/
jawt_md.h 29 int depth; member in struct:jawt_X11DrawingSurfaceInfo
  /external/libgdx/gdx/jni/jni-headers/linux/
jawt_md.h 29 int depth; member in struct:jawt_X11DrawingSurfaceInfo
  /external/v8/test/cctest/
expression-type-collector.h 18 int depth; member in struct:v8::internal::ExpressionTypeEntry
  /external/vogar/src/vogar/target/
Profiler.java 26 public abstract void setup(boolean profileThreadGroup, int depth, int interval);
  /external/boringssl/src/crypto/bytestring/
ber.c 31 static int cbs_find_ber(CBS *orig_in, char *ber_found, unsigned depth) {
34 if (depth > kMaxDepth) {
57 !cbs_find_ber(&contents, ber_found, depth + 1)) {
90 char looking_for_eoc, unsigned depth) {
91 if (depth > kMaxDepth) {
155 1 /* looking for eoc */, depth + 1)) {
178 0 /* not looking for eoc */, depth + 1)) {
  /external/compiler-rt/lib/msan/
msan_origin.h 52 // The "zzz" bits of chained origin id are used to store the length (or depth)
111 int depth = prev.isChainedOrigin() ? prev.depth() : 0; local
112 // depth is the length of the chain minus 1.
113 // origin_history_size of 0 means unlimited depth.
115 if (depth + 1 >= flags()->origin_history_size) {
118 ++depth;
119 CHECK(depth < (1 << kDepthBits));
138 return Origin((1 << kHeapShift) | (depth << kDepthShift) | chained_id);
158 int depth() const function
    [all...]
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/utils/shapebuilders/
ConeShapeBuilder.java 26 public static void build (MeshPartBuilder builder, float width, float height, float depth, int divisions) {
27 build(builder, width, height, depth, divisions, 0, 360);
30 public static void build (MeshPartBuilder builder, float width, float height, float depth, int divisions, float angleFrom,
32 build(builder, width, height, depth, divisions, angleFrom, angleTo, true);
35 public static void build (MeshPartBuilder builder, float width, float height, float depth, int divisions, float angleFrom,
43 final float hd = depth * 0.5f;
66 EllipseShapeBuilder.build(builder, width, depth, 0, 0, divisions, 0, -hh, 0, 0, -1, 0, -1, 0, 0, 0, 0, 1,
  /external/opencv3/modules/core/include/opencv2/core/
ippasync.hpp 71 int depth = CV_MAT_DEPTH(cvType); local
72 int hppType = depth == CV_8U ? HPP_DATA_TYPE_8U :
73 depth == CV_16U ? HPP_DATA_TYPE_16U :
74 depth == CV_16S ? HPP_DATA_TYPE_16S :
75 depth == CV_32S ? HPP_DATA_TYPE_32S :
76 depth == CV_32F ? HPP_DATA_TYPE_32F :
77 depth == CV_64F ? HPP_DATA_TYPE_64F : -1;
  /external/opencv3/modules/core/test/
test_rand.cpp 106 int depth = cvtest::randInt(rng) % (CV_64F+1);
108 int type = CV_MAKETYPE(depth, cn);
114 if (depth == CV_64F)
123 bool fast_algo = dist_type == CV_RAND_UNI && depth < CV_32F;
130 a = (int)(cvtest::randInt(rng) % (_ranges[depth][1] -
131 _ranges[depth][0])) + _ranges[depth][0];
134 b = (int)(cvtest::randInt(rng) % (_ranges[depth][1] -
135 _ranges[depth][0])) + _ranges[depth][0]
    [all...]

Completed in 2850 milliseconds

1 2 34 5 6 7 8 91011>>