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

1 2 34 5 6 7 8 91011>>

  /external/opencv/otherlibs/highgui/
grfmt_jpeg2000.cpp 125 int depth = jas_image_cmptprec( m_image, i ); local
126 if( depth > m_bit_depth )
127 m_bit_depth = depth;
396 bool GrFmtJpeg2000Writer::IsFormatSupported( int depth )
398 return depth == IPL_DEPTH_8U || depth == IPL_DEPTH_16U;
403 int width, int height, int depth, int channels )
417 component_info[i].prec = depth;
434 if( depth == 8 )
  /external/openssl/crypto/bn/
bn_ctx.c 103 /* Stack depth and allocation size */
124 unsigned int depth, size; member in struct:bignum_ctx_stack
147 /* Depth of stack overflow */
171 while(fpidx < stack->depth)
315 st->depth = st->size = 0;
326 st->depth = 0;
332 if(st->depth == st->size)
340 if(st->depth)
341 memcpy(newitems, st->indexes, st->depth *
347 st->indexes[(st->depth)++] = idx
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/Xext/extensions/
Xvlib.h 82 char depth; member in struct:__anon9488
135 int depth; member in struct:__anon9493
  /external/qemu/distrib/sdl-1.2.12/src/video/cybergfx/
SDL_cgxvideo.h 88 int depth; /* number of significant bits/pixel */ member in struct:SDL_PrivateVideoData::__anon9595
94 int depth; /* current visual depth (not bpp) */ member in struct:SDL_PrivateVideoData
  /external/qemu/distrib/sdl-1.2.12/src/video/xbios/
SDL_xbios.h 45 Uint16 depth; /* bits per plane */ member in struct:__anon9650
129 Uint16 depth, SDL_bool flags);
  /external/srec/portable/src/
plog.c 425 size_t depth; local
438 rc = PStackTraceGetDepth(&depth);
451 /* Remove PLogMessage() from depth */
452 --depth;
453 if (GlogLevel < depth)
  /external/valgrind/main/coregrind/
m_debuglog.c 975 Int indent, depth, i; local
991 depth = RUNNING_ON_VALGRIND;
992 for (i = 0; i < depth; i++) {
  /external/webkit/Source/WebCore/platform/graphics/android/
TransferQueue.h 41 GLboolean depth[1]; member in struct:WebCore::GLState
  /external/webkit/Source/WebCore/rendering/
RenderQuote.cpp 36 static inline void adjustDepth(int &depth, QuoteType type)
41 ++depth;
45 if (depth)
46 --depth;
75 // (All quote renderers are linked and have the correct depth set)
79 // to "this", thus if "this" does not need to change its depth upon insertion, the other renderers in the list don't
98 tail = tail->m_next; // This marks the splicing point here there may be a depth discontinuity
113 if (head->m_depth == newDepth) { // All remaining depth should be correct except if splicing was done.
127 tail = 0; // Mark the possible depth discontinuity fixed.
299 int depth = removedQuote->m_depth local
    [all...]
  /external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/x11/
NetscapePluginX11.cpp 95 return QApplication::desktop()->x11Info().depth();
136 int depth = displayDepth(); local
138 callbackStruct->depth = depth;
142 visualTemplate.depth = depth;
246 ASSERT(qtDrawable.depth() == static_cast<NPSetWindowCallbackStruct*>(m_npWindow.ws_info)->depth);
  /frameworks/base/core/java/android/animation/
AnimatorInflater.java 105 int depth = parser.getDepth(); local
107 while (((type=parser.next()) != XmlPullParser.END_TAG || parser.getDepth() > depth)
  /frameworks/base/core/java/android/content/res/
ColorStateList.java 179 int depth; local
187 && ((depth=parser.getDepth()) >= innerDepth
193 if (depth > innerDepth || !parser.getName().equals("item")) {
  /frameworks/base/core/java/android/preference/
GenericInflater.java 462 final int depth = parser.getDepth(); local
466 parser.getDepth() > depth) && type != parser.END_DOCUMENT) {
  /frameworks/base/core/java/android/view/inputmethod/
InputMethodInfo.java 146 final int depth = parser.getDepth(); local
148 while (((type = parser.next()) != XmlPullParser.END_TAG || parser.getDepth() > depth)
  /frameworks/base/core/java/android/view/textservice/
SpellCheckerInfo.java 102 final int depth = parser.getDepth(); local
104 while (((type = parser.next()) != XmlPullParser.END_TAG || parser.getDepth() > depth)
  /frameworks/base/graphics/java/android/graphics/drawable/
AnimationDrawable.java 244 int depth; local
246 ((depth = parser.getDepth()) >= innerDepth || type != XmlPullParser.END_TAG)) {
251 if (depth > innerDepth || !parser.getName().equals("item")) {
LevelListDrawable.java 96 int depth; local
98 && ((depth = parser.getDepth()) >= innerDepth
104 if (depth > innerDepth || !parser.getName().equals("item")) {
MipmapDrawable.java 139 int depth; local
141 && ((depth = parser.getDepth()) >= innerDepth
147 if (depth > innerDepth || !parser.getName().equals("item")) {
  /frameworks/base/tools/aapt/
XMLNode.cpp 379 static String8 make_prefix(int depth)
383 for (i=0; i<depth; i++) {
415 int depth = 0; local
417 String8 prefix = make_prefix(depth);
431 depth++;
432 prefix = make_prefix(depth);
467 depth--;
481 depth++;
483 depth--;
494 prefix = make_prefix(depth);
    [all...]
  /libcore/dalvik/src/main/java/dalvik/system/profiler/
HprofData.java 250 * stack sampling depth
252 private int depth; field in class:HprofData
310 * Get the stack sampling depth
313 return depth;
317 * Set the stack sampling depth
319 public void setDepth(int depth) {
320 this.depth = depth;
  /libcore/xml/src/main/java/org/kxml2/io/
KXmlSerializer.java 44 private int depth; field in class:KXmlSerializer
59 depth++;
62 if (indent.length <= depth) {
63 boolean[] hlp = new boolean[depth + 4];
64 System.arraycopy(indent, 0, hlp, 0, depth);
67 indent[depth] = indent[depth - 1];
69 for (int i = nspCounts[depth - 1]; i < nspCounts[depth]; i++) {
83 if (nspCounts.length <= depth + 1)
    [all...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/X11/extensions/
shmstr.h 52 int /* depth */, \
68 int /* depth */, \
136 CARD8 depth; member in struct:_ShmPutImage
166 CARD8 depth; member in struct:_ShmGetImageReply
186 CARD8 depth; member in struct:_ShmCreatePixmap
  /prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/linux/
irq.h 86 unsigned int depth; member in struct:irq_desc
  /prebuilt/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/linux/
irq.h 86 unsigned int depth; member in struct:irq_desc
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/include/linux/
irq.h 86 unsigned int depth; member in struct:irq_desc

Completed in 1613 milliseconds

1 2 34 5 6 7 8 91011>>