Searched refs:depth (Results 51 - 75 of 574) sorted by relevance

1234567891011>>

/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/sampleentry/
H A DVisualSampleEntry.java42 * template unsigned int(16) depth = 0x0018;
70 private int depth = 24; field in class:VisualSampleEntry
103 return depth;
130 public void setDepth(int depth) { argument
131 this.depth = depth;
164 depth = IsoTypeReader.readUInt16(content);
/external/webkit/Source/WebCore/xml/
H A DXPathNodeSet.cpp38 static inline Node* parentWithDepth(unsigned depth, const Vector<Node*>& parents) argument
40 ASSERT(parents.size() >= depth + 1);
41 return parents[parents.size() - 1 - depth];
49 unsigned depth = parentMatrix[i].size() - 1; local
50 if (minDepth > depth)
51 minDepth = depth;
/external/doclava/src/com/google/doclava/
H A DTagInfo.java69 int j, int depth) {
73 j = makeHDF(data, base, inherited.tags(), inherited.inherited(), j, depth + 1);
78 j = makeHDF(data, base, inherited.tags(), inherited.inherited(), j, depth + 1);
68 makeHDF(Data data, String base, TagInfo[] tags, InheritedTags inherited, int j, int depth) argument
/external/opencv/otherlibs/highgui/
H A Dgrfmt_pxm.cpp369 bool GrFmtPxMWriter::IsFormatSupported( int depth )
371 return depth == IPL_DEPTH_8U || depth == IPL_DEPTH_16U;
376 int width, int height, int depth, int _channels )
382 int fileStep = width*channels*(depth/8);
394 lineLength = channels * width * depth / 8;
411 width, height, (1 << depth) - 1 );
421 if( depth == 8 )
430 if( depth == 16 && !isBigEndian() )
441 m_strm.PutBytes( (channels > 1 || depth >
375 WriteImage( const uchar* data, int step, int width, int height, int depth, int _channels ) argument
[all...]
H A Dgrfmt_imageio.h41 int width, int height, int depth, int channels );
H A Dgrfmt_exr.h94 bool IsFormatSupported( int depth );
96 int width, int height, int depth, int channels );
H A Dgrfmt_jpeg2000.h90 bool IsFormatSupported( int depth );
92 int width, int height, int depth, int channels );
/external/valgrind/main/none/tests/
H A Dthread-exits.c47 static void grow(int depth) argument
53 if (depth > 1)
54 grow(depth-1);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
H A DPKIXPolicyNode.java14 protected int depth; field in class:PKIXPolicyNode
37 depth = _depth;
59 return depth;
151 depth,
/external/chromium/base/debug/
H A Dtrace_event_win.cc84 DWORD depth = CaptureStackBackTrace(0, local
88 event.SetField(3, sizeof(depth), &depth);
89 event.SetField(4, sizeof(backtrace[0]) * depth, backtrace);
/external/dbus/dbus/
H A Ddbus-message-factory.h47 int depth; member in struct:__anon5023
H A Ddbus-message-factory.c47 iter->depth += 1;
48 _dbus_assert (iter->depth < _DBUS_MESSAGE_DATA_MAX_NESTING);
49 _dbus_assert (iter->sequence_nos[iter->depth] >= 0);
55 _dbus_assert (iter->sequence_nos[iter->depth] >= 0);
56 return iter->sequence_nos[iter->depth];
64 iter->sequence_nos[iter->depth] = sequence;
70 iter->depth -= 1;
71 _dbus_assert (iter->depth >= 0);
77 iter->sequence_nos[iter->depth] += 1;
85 i = iter->depth;
[all...]
/external/grub/stage2/
H A Dmb_header.h50 unsigned depth; member in struct:multiboot_header
H A Dfsys_reiserfs.c324 /* The current depth of the reiser tree. */
652 printf ("root read_in: block=%d, depth=%d\n",
688 /* Read in the node at the current path and depth into the node cache.
689 * You must set INFO->blocks[depth] before.
692 read_tree_node (unsigned int blockNr, int depth) argument
694 char* cache = CACHE(depth);
696 if (depth < num_cached)
701 if (blockNr == INFO->blocks[depth])
708 printf (" next read_in: block=%d (depth=%d)\n",
709 blockNr, depth);
730 int depth; local
823 int depth; local
[all...]
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/textures/
H A DTextureGeneratorNoise.java61 protected Texture generate(Structure tex, int width, int height, int depth, BlenderContext blenderContext) { argument
65 int halfW = width >> 1, halfH = height >> 1, halfD = depth >> 1, index = 0;
71 byte[] data = new byte[width * height * depth * bytesPerPixel];
104 return new Texture3D(new Image(format, width, height, depth, dataArray));
/external/webkit/Source/WebCore/platform/graphics/gtk/
H A DGraphicsContext3DGtk.cpp85 if (!m_attrs.antialias && (m_attrs.stencil || m_attrs.depth))
94 if (m_attrs.stencil || m_attrs.depth)
129 if (m_attrs.stencil || m_attrs.depth)
133 if (m_attrs.stencil || m_attrs.depth)
/external/v8/test/mjsunit/
H A Darray-sort.js270 function TestInheritedElementSort(depth) {
271 var length = depth * 2 + 3;
273 obj[depth * 2 + 1] = 0;
274 for (var i = 0; i < depth; i++) {
278 obj[i + depth + 1] = depth - i;
281 // expected (inherited) object: [undef1,...undefdepth,hole,1,...,depth,0,hole]
284 // expected result: [0,1,...,depth,undef1,...,undefdepth,undef,hole]
285 var name = "SortInherit("+depth+")-";
288 for (var i = 0; i <= depth;
[all...]
/external/chromium/chrome/browser/ui/window_snapshot/
H A Dwindow_snapshot_x.cc43 if (image->depth != 24) {
44 LOG(ERROR)<< "Unsupported image depth " << image->depth;
/external/qemu/distrib/sdl-1.2.15/src/video/xbios/
H A DSDL_xbios_blowup.c70 modeinfo.depth = (num_mode == 3 ? 8 : 16);
71 modeinfo.flags = (modeinfo.depth == 8 ? XBIOSMODE_C2P : 0);
H A DSDL_xbios_milan.c70 modeinfo.depth = inf->scrPlanes;
94 modeinfo.depth = mode_bpp[j-1];
/external/webkit/Source/WebCore/inspector/front-end/
H A DShowMoreDataGridNode.js60 if (this.depth)
61 cell.style.setProperty("padding-left", (this.depth * this.dataGrid.indentWidth) + "px");
/external/webkit/Source/WebCore/platform/graphics/android/rendering/
H A DSurface.h101 , depth(0)
110 // records depth within non-mergeable parents (clipping, fixed, scrolling)
114 // counts layer tree depth for debugging
115 int depth; member in class:WebCore::LayerMergeState
/external/wpa_supplicant_8/wpa_supplicant/dbus/
H A Ddbus_old.h80 int depth, const char *subject,
117 int depth, const char *subject,
116 wpa_supplicant_dbus_notify_certification(struct wpa_supplicant *wpa_s, int depth, const char *subject, const char *cert_hash, const struct wpabuf *cert) argument
/external/libxml2/include/libxml/
H A DdebugXML.h34 int depth);
38 int depth);
42 int depth);
46 int depth);
50 int depth);
/external/tinyxml2/
H A Dtinyxml2.cpp1663 depth( 0 ),
1721 void XMLPrinter::PrintSpace( int depth )
1723 for( int i=0; i<depth; ++i ) {
1788 PrintSpace( depth );
1794 ++depth;
1841 --depth;
1850 PrintSpace( depth );
1855 if ( textDepth == depth )
1857 if ( depth == 0 && !compactMode)
1872 textDepth = depth
[all...]

Completed in 786 milliseconds

1234567891011>>