Searched refs:depth (Results 26 - 50 of 574) sorted by relevance

1234567891011>>

/external/webkit/Source/WebCore/html/canvas/
H A DWebGLContextAttributes.h50 // Whether or not the drawing buffer has a depth buffer; default=true
51 bool depth() const;
52 void setDepth(bool depth);
/external/webkit/Source/ThirdParty/ANGLE/src/compiler/
H A DintermOut.cpp59 void OutputTreeText(TInfoSinkBase& sink, TIntermNode* node, const int depth) argument
65 for (i = 0; i < depth; ++i)
80 OutputTreeText(sink, node, depth);
90 OutputTreeText(out, node, depth);
142 OutputTreeText(out, node, depth);
211 OutputTreeText(out, node, depth);
279 OutputTreeText(out, node, depth);
284 ++depth;
286 OutputTreeText(sink, node, depth);
290 OutputTreeText(sink, node, depth);
[all...]
/external/webkit/Tools/android/flex-2.5.4a/MISC/Macintosh/
H A Dalloca.c109 (b) keep track of stack depth.
125 char *deep; /* for stack depth measure */
144 auto char probe; /* probes stack depth: */
145 register char *depth = &probe; local
159 if ((STACK_DIR > 0 && hp->h.deep > depth)
160 || (STACK_DIR < 0 && hp->h.deep < depth))
185 ((header *)new)->h.deep = depth;
/external/llvm/lib/Analysis/
H A DRegionPrinter.cpp102 unsigned depth = 0) {
104 O.indent(2 * depth) << "subgraph cluster_" << static_cast<const void*>(R)
106 O.indent(2 * (depth + 1)) << "label = \"\";\n";
109 O.indent(2 * (depth + 1)) << "style = filled;\n";
110 O.indent(2 * (depth + 1)) << "color = "
114 O.indent(2 * (depth + 1)) << "style = solid;\n";
115 O.indent(2 * (depth + 1)) << "color = "
120 printRegionCluster(*RI, GW, depth + 1);
127 O.indent(2 * (depth + 1)) << "Node"
131 O.indent(2 * depth) << "}\
[all...]
/external/elfutils/libdw/
H A Ddwarf_getscopes.c70 pc_match (unsigned int depth, struct Dwarf_Die_Chain *die, void *arg) argument
98 a->inlined = depth;
107 origin_match (unsigned int depth, struct Dwarf_Die_Chain *die, void *arg) argument
118 unsigned int nscopes = a->nscopes + depth;
140 pc_record (unsigned int depth, struct Dwarf_Die_Chain *die, void *arg) argument
151 a->nscopes = depth + 1 - a->inlined;
173 Dwarf_Die *const inlinedie = &a->scopes[depth - a->inlined];
191 if (depth >= a->inlined)
200 return __libdw_visit_scopes (depth, die, &origin_match, NULL, a);
/external/oprofile/libop/
H A Dop_alloc_counter.c102 * @param max_depth number of entry in array ctr_arc == depth of tree
103 * @param depth current level we are exploring
126 allocate_counter(counter_arc_head const * ctr_arc, int max_depth, int depth, argument
131 if (depth == max_depth)
135 if((&ctr_arc[depth].next)->next == &ctr_arc[depth].next) {
136 counter_map[depth] = -1;
137 if (allocate_counter(ctr_arc, max_depth, depth + 1,
142 list_for_each(pos, &ctr_arc[depth].next) {
148 counter_map[depth]
[all...]
/external/webkit/Source/WebCore/platform/graphics/win/
H A DQTDecompressionSession.cpp78 // The depth and cType fields of the ImageDescriptionHandle are filled
86 unsigned int depth = 24; // The default depth is 24. local
88 depth = 32; // Any pixel format with alpha gets a depth of 32.
92 // and 8-bit grayscale have the same pixel depth.
93 depth = 32 + std::min<unsigned int>(8, pixelFormatInfo.bitsPerPixel[0]);
95 // Indexed pixel formats get a depth of 1 through 8, depending on
97 depth = pixelFormatInfo.bitsPerPixel[0];
115 (**description).depth
[all...]
/external/libpng/contrib/gregbook/
H A Drpng-x.c141 static int depth; variable
449 depth = DisplayPlanes(display, screen);
458 if (/* depth != 8 && */ depth != 16 && depth != 24 && depth != 32) {
460 "screen depth %d not supported (only 16-, 24- or 32-bit TrueColor)\n",
461 depth);
465 XMatchVisualInfo(display, screen, depth,
466 (depth
[all...]
/external/expat/examples/
H A Delements.c49 int depth = 0; local
50 XML_SetUserData(parser, &depth);
/external/opencv/otherlibs/highgui/
H A Dgrfmt_png.h81 bool IsFormatSupported( int depth );
83 int width, int height, int depth, int channels );
H A Dgrfmt_pxm.h79 bool IsFormatSupported( int depth );
82 int width, int height, int depth, int channels );
/external/qemu/distrib/sdl-1.2.15/src/video/xbios/
H A DSDL_xbios_sb3.c79 modeinfo.depth = 1<<(SDL_XBIOS_scpn_planes_device[scrinfo->device]);
80 modeinfo.flags = (modeinfo.depth == 8 ? XBIOSMODE_C2P : 0);
/external/webkit/Source/WebKit/chromium/src/mac/
H A DWebScreenInfoFactory.mm76 NSString *colorSpace = NSColorSpaceFromDepth([[NSScreen deepestScreen] depth]);
79 results.depth =
80 NSBitsPerPixelFromDepth([[NSScreen deepestScreen] depth]);
82 NSBitsPerSampleFromDepth([[NSScreen deepestScreen] depth]);
/external/srec/portable/include/
H A DPStackTrace.h65 * Returns the depth of the current stack trace (0-based).
67 * @param depth [out] The depth
70 PORTABLE_API ESR_ReturnCode PStackTraceGetDepth(size_t* depth);
/external/webkit/Source/WebCore/xml/
H A DXSLTUnicodeSort.cpp87 int depth; local
210 depth = 1;
211 while (depth < nbsorts) {
212 if (sorts[depth] == NULL)
214 comp = static_cast<xsltStylePreComp*>(sorts[depth]->psvi);
224 if (resultsTab[depth] == NULL)
225 resultsTab[depth] = xsltComputeSortResult(ctxt,
226 sorts[depth]);
227 res = resultsTab[depth];
268 depth
[all...]
/external/chromium/chrome/browser/resources/net_internals/
H A Dloggrouper.js31 var depth = 0;
34 depth += 1;
37 return depth;
/external/clang/bindings/python/examples/cindex/
H A Dcindex-dump.py39 def get_info(node, depth=0):
40 if opts.maxDepth is not None and depth >= opts.maxDepth:
43 children = [get_info(c, depth+1)
68 parser.add_option("", "--max-depth", dest="maxDepth",
69 help="Limit cursor expansion to depth N",
/external/jmonkeyengine/engine/src/core/com/jme3/texture/
H A DImage.java185 * Arbitrary depth format. The precision is chosen by the video
191 * 16-bit depth.
196 * 24-bit depth.
201 * 32-bit depth.
206 * single-precision floating point depth.
288 * @return True if this format is a depth format, false otherwise.
314 protected int width, height, depth; field in class:Image
377 public Image(Format format, int width, int height, int depth, ArrayList<ByteBuffer> data, argument
390 this.depth = depth;
441 Image(Format format, int width, int height, int depth, ArrayList<ByteBuffer> data) argument
590 setDepth(int depth) argument
[all...]
/external/chromium/base/
H A Dlogging_win.cc67 DWORD depth = 0; local
72 depth = CaptureStackBackTrace(2, kMaxBacktraceDepth, backtrace, NULL);
79 event.SetField(0, sizeof(depth), &depth);
80 event.SetField(1, sizeof(backtrace[0]) * depth, &backtrace);
/external/mesa3d/src/glsl/
H A Dlower_if_to_cond_assign.cpp41 * maximum nesting depth N. Drivers for such hardware can call
45 * to attempt to flatten any if-statements appearing at depth > N.
57 this->depth = 0;
65 unsigned depth; member in class:ir_if_to_cond_assign_visitor
144 this->depth++;
151 /* Only flatten when beyond the GPU's maximum supported nesting depth. */
152 if (this->depth <= this->max_depth)
155 this->depth--;
/external/jmonkeyengine/engine/src/xml/com/jme3/export/xml/
H A DDOMSerializer.java143 private void write(Node node, Writer writer, int depth) throws IOException { argument
149 writeElement((Element) node, writer, depth);
160 for (int i = 0; i < depth; ++i) { writer.append(' '); }
166 for (int i = 0; i < depth; ++i) { writer.append(' '); }
173 writeDocumentType((DocumentType) node, writer, depth);
195 private void writeDocumentType(DocumentType docType, Writer writer, int depth) throws IOException { argument
199 for (int i = 0; i < depth; ++i) { writer.append(' '); }
213 private void writeElement(Element element, Writer writer, int depth) throws IOException { argument
214 for (int i = 0; i < depth; ++i) { writer.append(' '); }
231 write(n, writer, depth
[all...]
/external/chromium/base/json/
H A Djson_writer.cc53 int depth,
134 BuildJSONString(value, depth, escape);
165 IndentLine(depth + 1);
172 BuildJSONString(value, depth + 1, escape);
177 IndentLine(depth);
197 void JSONWriter::IndentLine(int depth) { argument
200 json_string_->append(std::string(depth * 3, ' '));
52 BuildJSONString(const Value* const node, int depth, bool escape) argument
/external/doclava/src/com/google/doclava/
H A DHierarchy.java57 int depth = depth(nodes, "java.lang.Object");
60 hdf.setValue("colspan", "" + depth);
62 recurse(nodes, "java.lang.Object", hdf.getChild("classes.0"), depth, depth);
76 private static int depth(HashMap<String, TreeSet<String>> nodes, String name) { method in class:Hierarchy
81 int n = depth(nodes, s);
/external/libpng/contrib/pngminus/
H A Dpnm2png.c54 png_uint_32 get_data (FILE *pnm_file, int depth);
55 png_uint_32 get_value (FILE *pnm_file, int depth);
332 /* row_bytes is the width x number of channels x (bit-depth / 8) */
472 * taking as much bits as defined by bit-depth and
473 * using the bit-depth to fill up a byte (0Ah -> AAh)
476 png_uint_32 get_data (FILE *pnm_file, int depth) argument
485 for (i = 0; i < depth; i++)
495 for (i = 1; i < (8 / depth); i++)
496 ret_value = ret_value || (ret_value >> depth);
498 old_value = (old_value << depth)
509 get_value(FILE *pnm_file, int depth) argument
[all...]
/external/mesa3d/src/mesa/program/
H A Dsymbol_table.c61 /** Scope depth where this symbol was defined. */
62 unsigned depth; member in struct:symbol
110 /** Current scope depth. */
111 unsigned depth; member in struct:_mesa_symbol_table
165 table->depth--;
193 table->depth++;
291 assert(sym->depth <= table->depth);
292 return sym->depth - table->depth;
[all...]

Completed in 785 milliseconds

1234567891011>>