HomeSort by relevance Sort by last modified time
    Searched defs:depth (Results 226 - 250 of 477) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/opencv/cxcore/src/
cxarray.cpp 549 "Depth is not the same for all arrays" );
989 int depth = img->depth; local
992 if( img->depth == IPL_DEPTH_32F || img->nChannels == 64 )
994 img->width *= img->depth == IPL_DEPTH_32F ? sizeof(float) : sizeof(double);
995 img->depth = IPL_DEPTH_8U;
1001 img->depth = depth;
1084 pix_size = ((img->depth & 255) >> 3)*img->nChannels;
1705 int depth = type & CV_MAT_DEPTH_MASK; local
2793 int depth, order; local
3192 int depth; local
    [all...]
cxmathfuncs.cpp 334 int depth; local
351 depth = CV_MAT_DEPTH( xmat->type );
352 if( depth < CV_32F )
392 if( depth == CV_64F && angle )
397 else if( depth == CV_32F && mag )
402 if( depth == CV_32F )
574 int depth; local
582 depth = CV_MAT_DEPTH( angle->type );
583 if( depth < CV_32F )
645 if( depth == CV_32F
1712 int depth; local
    [all...]
  /external/openssl/crypto/x509/
x509_vfy.c 158 int depth,i,ok=0; local
194 depth=param->depth;
200 if (depth < num) break; /* FIXME: If this happens, we should take
288 if (depth < num) break;
    [all...]
  /external/qemu/
console.h 130 uint8_t depth; /* color depth in bits */ member in struct:PixelFormat
  /external/qemu/distrib/sdl-1.2.12/src/video/Xext/extensions/
Xvproto.h 95 CARD8 depth; member in struct:__anon10795
118 CARD8 depth; member in struct:__anon10797
  /external/qemu/distrib/sdl-1.2.12/src/video/windib/
SDL_dibvideo.c 305 /* Determine the screen depth */
409 Helper fn to work out which screen depth windows is currently using.
418 int depth; local
422 depth = GetDeviceCaps(hdc, PLANES) * GetDeviceCaps(hdc, BITSPIXEL);
424 return(depth);
426 int depth;
455 depth = 0;
458 case 8: depth = 8; break;
459 case 24: depth = 24; break;
460 case 32: depth = 32; break
    [all...]
  /external/qemu-pc-bios/vgabios/
clext.c 36 unsigned short depth; member in struct:__anon11488
  /external/v8/src/
stub-cache.cc 1482 int depth = 0; local
    [all...]
  /external/webkit/Source/JavaScriptCore/bytecompiler/
NodesCodegen.cpp 364 size_t depth = 0; local
367 if (generator.findScopedProperty(m_ident, index, depth, false, requiresDynamicChecks, globalObject) && index != missingSymbolMarker() && !requiresDynamicChecks) {
368 RefPtr<RegisterID> func = generator.emitGetScopedVar(generator.newTemporary(), depth, index, globalObject);
558 size_t depth = 0; local
561 if (generator.findScopedProperty(m_ident, index, depth, true, requiresDynamicChecks, globalObject) && index != missingSymbolMarker() && !requiresDynamicChecks) {
562 RefPtr<RegisterID> value = generator.emitGetScopedVar(generator.newTemporary(), depth, index, globalObject);
570 generator.emitPutScopedVar(depth, index, value.get(), globalObject);
745 size_t depth = 0; local
1170 size_t depth = 0; local
1200 size_t depth = 0; local
    [all...]
  /external/webkit/Source/JavaScriptCore/interpreter/
Interpreter.cpp 78 // Returns the depth of the scope chain within a given call frame.
79 static int depth(CodeBlock* codeBlock, ScopeChainNode* sc) function in namespace:JSC
707 scopeDelta = depth(codeBlock, scopeChain) - handler->scopeDepth;
    [all...]
  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/preprocessor/
cpp.c 268 int atom,depth=0; local
287 depth++; cpp->ifdepth++; cpp->elsetracker++;
291 if(--depth<0){
300 else if (((int)(matchelse) != 0)&& depth==0) {
477 CPPErrorToInfoLog("max #if nesting depth exceeded");
503 CPPErrorToInfoLog("max #if nesting depth exceeded");
936 int i,j, token, depth=0; local
    [all...]
  /external/webkit/Source/WebCore/inspector/front-end/
DetailedHeapshotView.js 634 var depth = 0; variable
643 current = current.traverseNextNode(false, null, (depth >= maxDepth), info);
644 depth += info.depthChange;
    [all...]
HeapSnapshotView.js 256 var depth = 0; variable
267 current = current.traverseNextNode(false, null, (depth >= maxDepth), info);
268 depth += info.depthChange;
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/src/crypto/
tls_openssl.c 1019 int err, depth; local
1026 depth = X509_STORE_CTX_get_error_depth(x509_ctx);
1037 " error %d (%s) depth %d for '%s'", err,
1038 X509_verify_cert_error_string(err), depth, buf);
1041 "preverify_ok=%d err=%d (%s) depth=%d buf='%s'",
1043 X509_verify_cert_error_string(err), depth, buf);
1044 if (depth == 0 && match && os_strstr(buf, match) == NULL) {
1048 } else if (depth == 0 && altmatch &&
    [all...]
  /frameworks/base/graphics/java/android/graphics/drawable/
LayerDrawable.java 125 int depth; local
127 && ((depth = parser.getDepth()) >= innerDepth || type != XmlPullParser.END_TAG)) {
132 if (depth > innerDepth || !parser.getName().equals("item")) {
  /libcore/luni/src/main/java/org/apache/harmony/xml/
ExpatParser.java 766 private int depth = 0; field in class:ExpatParser.EntityParser
780 if (depth++ > 0) {
789 if (--depth > 0) {
  /packages/apps/Contacts/src/com/android/contacts/model/
BaseAccountType.java 694 final int depth = parser.getDepth(); local
695 if (type != XmlPullParser.START_TAG || depth != outerDepth + 1) {
839 final int depth = parser.getDepth(); local
    [all...]
  /packages/inputmethods/LatinIME/native/jni/src/
unigram_dictionary.cpp 350 // Depth first search
755 int depth = 0; local
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/X11/
Xutil.h 285 int depth; member in struct:__anon22478
539 int /* depth */,
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/X11/extensions/
multibufst.h 59 CARD8 depth; /* depth of visual (redundant) */ member in struct:xMbufBufferInfo
258 CARD8 depth; member in struct:__anon22712
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/alsa/sound/
ainstr_iw.h 87 signed short depth; /* volume +- (0-255) 0.48675dB/step */ member in struct:iwffff_lfo
242 __s16 depth; /* volume +- (0-255) 0.48675dB/step */ member in struct:iwffff_xlfo
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
tipc_config.h 221 __be32 depth; /* 1:type, 2:+name info, 3:+port info, 4+:+debug info */ member in struct:tipc_name_table_query
222 __be32 type; /* {t,l,u} info ignored if high bit of "depth" is set */
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/X11/
Xutil.h 285 int depth; member in struct:__anon24068
539 int /* depth */,
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/X11/extensions/
multibufst.h 59 CARD8 depth; /* depth of visual (redundant) */ member in struct:xMbufBufferInfo
258 CARD8 depth; member in struct:__anon24302
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/alsa/sound/
ainstr_iw.h 87 signed short depth; /* volume +- (0-255) 0.48675dB/step */ member in struct:iwffff_lfo
242 __s16 depth; /* volume +- (0-255) 0.48675dB/step */ member in struct:iwffff_xlfo

Completed in 1019 milliseconds

1 2 3 4 5 6 7 8 91011>>