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

<<11121314

  /external/libxml2/
xmlreader.c 135 int depth; /* depth of the current node */ member in struct:_xmlTextReader
143 int entNr; /* Depth of the entities stack */
144 int entMax; /* Max depth of the entities stack */
551 fprintf(stderr, "xmlTextReader: state %d depth %d ",
552 reader->state, reader->depth);
558 fprintf(stderr, " input: base %d, cur %d, depth %d: ",
    [all...]
parser.c 176 * arbitrary depth limit for the XML documents that we allow to
207 void *user_data, int depth, const xmlChar *URL,
6288 int depth = 0; local
    [all...]
relaxng.c 166 short depth; /* used for the cycle detection */ member in struct:_xmlRelaxNGDefine
236 int docNr; /* Depth of the parsing stack */
237 int docMax; /* Max depth of the parsing stack */
242 int incNr; /* Depth of the include parsing stack */
243 int incMax; /* Max depth of the parsing stack */
358 int depth; /* validation depth */ member in struct:_xmlRelaxNGValidCtxt
367 int errNr; /* Depth of the error stack */
368 int errMax; /* Max depth of the error stack */
384 int elemMax; /* the max depth of elements *
    [all...]
trio.c 1665 int depth = 1; local
    [all...]
  /external/opencv/ml/include/
ml.h 684 int depth; member in struct:CvDTreeNode
    [all...]
  /external/opencv/ml/src/
mltree.cpp 807 node->depth = parent ? parent->depth + 1 : 0;
3289 int i, depth; local
    [all...]
  /external/protobuf/src/google/protobuf/
descriptor.cc 1670 int depth = 0; local
    [all...]
  /external/qemu/
vl.c 2482 int w, h, depth; local
    [all...]
vl-android.c 2962 int w, h, depth; local
3519 int depth = android_hw->hw_lcd_depth; local
    [all...]
  /external/v8/src/
hydrogen-instructions.h 3502 int depth() const { return depth_; } function in class:v8::HMaterializedLiteral
    [all...]
  /external/valgrind/main/exp-ptrcheck/
sg_main.c 476 UWord depth; /* depth of stack at time block was pushed */ member in struct:__anon12471
526 UWord depth
540 VG_(printf)("\ndepth = %lu\n", depth);
555 nyu->depth = depth;
895 static void show_Invar( HChar* buf, Word nBuf, Invar* inv, Word depth )
913 depth - inv->Inv.StackN.nd->depth );
1156 Word depth; \/* 0 for outermost; increases inwards *\/ member in struct:_StackFrame
    [all...]
  /external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/
Context.cpp 349 void Context::setClearDepth(float depth)
351 mState.depthClearValue = depth;
1700 GLint depth = programObject->getDxDepthLocation(); local
2402 float depth = clamp01(mState.depthClearValue); local
    [all...]
  /external/webkit/Source/WebCore/bridge/
npapi.h 277 unsigned int depth; member in struct:__anon13049
497 int32_t depth; /* Depth of image pointer */ member in struct:_NPImageExpose
  /external/webkit/Source/WebKit/android/nav/
CachedRoot.cpp 236 int depth = INHERITED::saveLayer(bounds, paint, flags); local
238 mTransparentLayer = depth;
241 return depth;
246 int depth = getSaveCount(); local
247 if (depth == mTransparentLayer) {
    [all...]
  /frameworks/base/include/private/opengles/
gl_context.h 447 uint8_t depth; member in struct:android::gl::matrix_stack_t
452 void init(int depth);
464 matrixf_t& top() { return stack[depth]; }
465 const matrixf_t& top() const { return stack[depth]; }
466 uint32_t top_ops() const { return ops[depth]; }
468 return !(ops[depth] & ~(OP_TRANSLATE|OP_UNIFORM_SCALE|OP_ROTATE));
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/X11/extensions/
lbxstr.h 321 CARD8 depth; member in struct:__anon20329
519 CARD8 depth; member in struct:__anon20338
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
fb.h 348 __u8 depth; /* Depth of the image */ member in struct:fb_image
  /external/libpng/
png.h 678 /* When the depth of the sPLT palette is 8 bits, the color and alpha samples
686 png_byte depth; /* depth of palette samples */ member in struct:png_sPLT_struct
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAG.cpp 6280 printrWithDepth(dbgs(), G, depth); local
    [all...]
  /external/opencv/cxcore/src/
cxpersistence.cpp 3918 int y, depth; local
3980 int y, width, height, elem_type, coi, depth; local
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/
GraphicsContext3D.h 424 , depth(true)
434 bool depth; member in struct:WebCore::GraphicsContext3D::Attributes
633 void clearDepth(GC3Dclampf depth);
    [all...]
  /external/e2fsprogs/lib/blkid/
probe.h 551 __u16 depth; member in struct:hfsplus_bheader_record
  /external/kernel-headers/original/linux/
fb.h 368 __u8 depth; /* Depth of the image */ member in struct:fb_image
503 __u8 depth; /* Depth of the image */ member in struct:fb_image_user
711 __u32 depth; /* color depth of each tile */ member in struct:fb_tilemap
    [all...]
  /external/libxslt/libxslt/
xsltInternals.h 1246 int depth; \/* the depth in the tree *\/ member in struct:_xsltVarInfo
1262 int depth; member in struct:_xsltCompilerNodeInfo
1322 int depth; \/* Current depth of processing *\/ member in struct:_xsltCompilerCtxt
    [all...]
  /external/opencv/cxcore/include/
cxtypes.h 371 int depth; /* Pixel depth in bits: IPL_DEPTH_8U, IPL_DEPTH_8S, IPL_DEPTH_16S, member in struct:_IplImage
477 #define CV_MAKETYPE(depth,cn) ((depth) + (((cn)-1) << CV_CN_SHIFT))
688 int depth = CV_MAT_DEPTH(type); local
689 return CV_ELEM_SIZE1(depth)*8 | (depth == CV_8S || depth == CV_16S ||
690 depth == CV_32S ? IPL_DEPTH_SIGN : 0);
    [all...]

Completed in 759 milliseconds

<<11121314