/external/openssl/apps/ |
s_cb.c | 136 int err,depth; local 140 depth= X509_STORE_CTX_get_error_depth(ctx); 142 BIO_printf(bio_err,"depth=%d ",depth); 155 if (verify_depth >= depth)
|
/external/openssl/crypto/pkcs7/ |
bio_ber.c | 83 int depth; member in struct:ber_struct 96 int depth; /* used with indefinite encoding. */ member in struct:bio_ber_struct 259 ctx->depth--; 260 if (ctx->depth <= 0)
|
/external/qemu/distrib/sdl-1.2.12/src/video/ataricommon/ |
SDL_atarigl_c.h | 78 GLint depth,stencil,accum; member in struct:SDL_PrivateGLData 92 #define gl_curdepth (this->gl_data->depth)
|
/external/qemu/distrib/sdl-1.2.12/src/video/cybergfx/ |
SDL_cgxmodes.c | 38 int depth=8; local 41 depth=GetCyberMapAttr(SDL_Display->RastPort.BitMap,CYBRMATTR_DEPTH); 45 CYBRBIDTG_Depth,depth, 58 SA_Depth,depth,SA_DisplayID,idok, 77 static void add_visual(_THIS, int depth, int class) 81 tID=BestCModeIDTags(CYBRBIDTG_Depth,depth, 90 this->hidden->visuals[n].depth = depth; 200 bug("\t%lx - depth: %ld bpp: %ld\n",this->hidden->visuals[i].visual,this->hidden->visuals[i].depth,this->hidden->visuals[i].bpp) [all...] |
/external/valgrind/main/callgrind/ |
callstack.c | 222 /* only increment depth if another function is called */ 310 Int depth = 0; local 333 /* only decrement depth if another function was called */ 337 depth = *pdepth; 357 if (depth == 0) function_left(to_fn);
|
/external/webkit/Source/WebKit/chromium/public/ |
WebGraphicsContext3D.h | 83 , depth(true) 92 bool depth; member in struct:WebKit::WebGraphicsContext3D::Attributes 199 virtual void clearDepth(WGC3Dclampf depth) = 0;
|
/frameworks/base/core/java/android/view/animation/ |
AnimationUtils.java | 101 int depth = parser.getDepth(); local 103 while (((type=parser.next()) != XmlPullParser.END_TAG || parser.getDepth() > depth) 170 int depth = parser.getDepth(); local 172 while (((type = parser.next()) != XmlPullParser.END_TAG || parser.getDepth() > depth) 287 int depth = parser.getDepth(); local 289 while (((type=parser.next()) != XmlPullParser.END_TAG || parser.getDepth() > depth)
|
/packages/apps/Contacts/src/com/android/contacts/util/ |
LocalizedNameResolver.java | 115 final int depth = parser.getDepth(); local 116 while (((type = parser.next()) != XmlPullParser.END_TAG || parser.getDepth() > depth)
|
/packages/providers/ContactsProvider/src/com/android/providers/contacts/ |
PhotoPriorityResolver.java | 140 final int depth = parser.getDepth(); local 141 while (((type = parser.next()) != XmlPullParser.END_TAG || parser.getDepth() > depth)
|
/prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/plugin/include/ |
line-map.h | 87 /* Depth of the include stack, including the current file. */ 88 unsigned int depth; local
|
/prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/lib/gcc/arm-eabi/4.4.3/plugin/include/ |
line-map.h | 87 /* Depth of the include stack, including the current file. */ 88 unsigned int depth; local
|
/prebuilt/linux-x86/toolchain/arm-linux-androideabi-4.4.x/lib/gcc/arm-linux-androideabi/4.4.3/plugin/include/ |
line-map.h | 87 /* Depth of the include stack, including the current file. */ 88 unsigned int depth; local
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/resources/manager/ |
IdeScanningContext.java | 119 int depth = resource instanceof IFolder ? DEPTH_ONE : DEPTH_ZERO; local 120 resource.deleteMarkers(MARKER_AAPT_COMPILE, true, depth);
|
/bionic/libc/kernel/common/linux/ |
irq.h | 86 unsigned int depth; member in struct:irq_desc
|
/dalvik/vm/ |
AllocTracker.cpp | 40 * how many allocations it wants to see and what the stack depth should be. 41 * Changing the window size is easy, changing the max stack depth is harder 241 (1b) stack depth 395 /* compute depth */ 396 int depth; local 397 for (depth = 0; depth < kMaxAllocRecordStackDepth; depth++) { 398 if (pRec->stackElem[depth].method == NULL) 408 set1(&ptr[8], depth); [all...] |
/development/ndk/platforms/android-3/include/linux/ |
irq.h | 86 unsigned int depth; member in struct:irq_desc
|
/development/samples/ApiDemos/src/com/example/android/apis/graphics/ |
SensorTest.java | 64 final int depth = mDepth; local 67 for (int i = 0; i < depth; i++) { 71 index = depth - 1;
|
/external/bouncycastle/src/main/java/org/bouncycastle/jce/provider/ |
PKIXPolicyNode.java | 14 protected int depth; field in class:PKIXPolicyNode 37 depth = _depth; 59 return depth; 151 depth,
|
/external/chromium/third_party/libjingle/source/talk/base/ |
opensslstreamadapter.cc | 564 int depth = X509_STORE_CTX_get_error_depth(store); local 567 LOG(LS_INFO) << "Error with certificate at depth: " << depth;
|
/external/libvpx/vpx_mem/memory_manager/include/ |
cavl_impl.h | 104 /* The maximum depth may be greater than the number of bits in a long, 106 ** depth. */ 355 /* Zero-based depth in tree. */ 356 unsigned depth = 0, unbal_depth = 0; variable 374 unbal_depth = depth; 388 L_BIT_ARR_1(branch, depth) 393 L_BIT_ARR_0(branch, depth) 397 depth++; 407 depth = unbal_depth; 413 cmp = L_BIT_ARR_VAL(branch, depth) ? 1 : -1 570 unsigned depth = 0, rm_depth; variable 865 unsigned depth = 0; variable [all...] |
/external/opencv/cxcore/include/ |
cxcore.hpp | 50 CvImage( CvSize size, int depth, int channels ) 52 image = cvCreateImage( size, depth, channels ); 86 void create( CvSize size, int depth, int channels ) 90 image->depth != depth || image->nChannels != channels ) 91 attach( cvCreateImage( size, depth, channels )); 153 int depth() const { return image ? image->depth : 0; } function in class:CvImage 155 int pix_size() const { return image ? ((image->depth & 255)>>3)*image->nChannels : 0; } 173 image->roi->xOffset*((image->depth & 255)>>3)*image->nChannels) 321 int depth() const { return matrix ? CV_MAT_DEPTH(matrix->type) : 0; } function in class:CvMatrix [all...] |
/external/opencv/cxcore/src/ |
cxlogic.cpp | 198 int elem_size, elem_size1, type, depth; local 232 depth = CV_MAT_DEPTH(type); 234 elem_size1 = CV_ELEM_SIZE1(depth); 259 depth = CV_MAT_DEPTH(type); 261 elem_size1 = CV_ELEM_SIZE1(depth);
|
cxminmaxloc.cpp | 298 int type, depth, cn, coi = 0; local 320 depth = CV_MAT_DEPTH( type ); 327 if( depth == CV_32S || depth == CV_64F ) 360 CvFunc2D_1A4P func = (CvFunc2D_1A4P)(minmax_tab.fn_2d[depth]); 370 CvFunc2DnC_1A4P func = (CvFunc2DnC_1A4P)(minmaxcoi_tab.fn_2d[depth]); 383 CvFunc2D_2A4P func = (CvFunc2D_2A4P)(minmaxmask_tab.fn_2d[depth]); 394 CvFunc2DnC_2A4P func = (CvFunc2DnC_2A4P)(minmaxmaskcoi_tab.fn_2d[depth]); 437 if( depth != CV_32S && depth != CV_64F [all...] |
cxnorm.cpp | 977 int type, depth, cn, is_relative; local [all...] |
cxrand.cpp | 453 int type, depth, channels; local 505 depth = CV_MAT_DEPTH( type ); 511 if( depth <= CV_32S ) 537 CV_GET_FUNC_PTR( func, (CvFunc2D_1A2P)(fastrng_tab.fn_2d[depth])); 551 CV_GET_FUNC_PTR( func, (CvFunc2D_1A2P)(rng_tab[0].fn_2d[depth])); 565 CV_GET_FUNC_PTR( func, (CvFunc2D_1A2P)(rng_tab[1].fn_2d[depth]));
|