HomeSort by relevance Sort by last modified time
    Searched refs:depth (Results 126 - 150 of 2177) sorted by null

1 2 3 4 56 7 8 91011>>

  /packages/apps/LegacyCamera/src/com/android/camera/
PreferenceInflater.java 87 int depth = parser.getDepth(); local
88 if (depth > list.size()) {
91 list.set(depth - 1, pref);
93 if (depth > 1) {
94 ((PreferenceGroup) list.get(depth - 2)).addChild(pref);
  /external/jmonkeyengine/engine/src/xml/com/jme3/export/xml/
DOMSerializer.java 143 private void write(Node node, Writer writer, int depth) throws IOException {
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 {
199 for (int i = 0; i < depth; ++i) { writer.append(' '); }
213 private void writeElement(Element element, Writer writer, int depth) throws IOException {
214 for (int i = 0; i < depth; ++i) { writer.append(' '); }
231 write(n, writer, depth + indent)
    [all...]
  /system/core/libpixelflinger/
clear.cpp 30 static void ggl_clearDepthx(void* c, GGLclampx depth);
45 c->state.clear.depth = FIXED_ONE;
111 if (c->state.buffers.depth.format == 0)
136 uint32_t depth = fixedToZ(c->state.clear.depth); local
137 c->state.clear.depthPacked = (depth<<16)|depth;
140 memset2d(c, c->state.buffers.depth, packed, l, t, w, h);
157 static void ggl_clearDepthx(void* con, GGLclampx depth)
160 c->state.clear.depth = gglClampx(depth)
    [all...]
  /external/chromium/base/json/
json_writer.cc 53 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) {
200 json_string_->append(std::string(depth * 3, ' '));
  /external/chromium_org/base/json/
json_writer.cc 64 void JSONWriter::BuildJSONString(const Value* const node, int depth) {
156 BuildJSONString(value, depth);
188 IndentLine(depth + 1);
195 BuildJSONString(&itr.value(), depth + 1);
200 IndentLine(depth);
227 void JSONWriter::IndentLine(int depth) {
230 json_string_->append(std::string(depth * 3, ' '));
  /external/chromium_org/third_party/angle_dx11/src/compiler/
DetectCallDepth.cpp 31 int DetectCallDepth::FunctionNode::detectCallDepth(DetectCallDepth* detectCallDepth, int depth)
36 int maxDepth = depth;
46 // Check before we recurse so we don't go too depth
47 if (detectCallDepth->checkExceedsMaxDepth(depth))
48 return depth;
49 int callDepth = callees[i]->detectCallDepth(detectCallDepth, depth + 1);
127 bool DetectCallDepth::checkExceedsMaxDepth(int depth)
129 return depth >= maxDepth;
  /external/chromium_org/third_party/tcmalloc/chromium/src/
stack_trace_table.cc 46 const bool eq = (this->hash == h && this->trace.depth == t.depth);
47 for (int i = 0; eq && i < t.depth; ++i) {
74 for (int i = 0; i < t.depth; ++i) {
92 depth_total_ += t.depth;
131 out[idx++] = reinterpret_cast<void*>(b->trace.depth);
132 for (int d = 0; d < b->trace.depth; ++d) {
  /external/chromium_org/third_party/tcmalloc/vendor/src/
stack_trace_table.cc 46 const bool eq = (this->hash == h && this->trace.depth == t.depth);
47 for (int i = 0; eq && i < t.depth; ++i) {
74 for (int i = 0; i < t.depth; ++i) {
92 depth_total_ += t.depth;
131 out[idx++] = reinterpret_cast<void*>(b->trace.depth);
132 for (int d = 0; d < b->trace.depth; ++d) {
  /external/doclava/src/com/google/doclava/
Hierarchy.java 57 int depth = depth(nodes, "java.lang.Object"); local
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/eigen/Eigen/src/Core/products/
GeneralMatrixMatrixTriangular_MKL.h 52 static EIGEN_STRONG_INLINE void run(Index size, Index depth,const Scalar* lhs, Index lhsStride, \
57 ::run(size,depth,lhs,lhsStride,rhs,rhsStride,res,resStride,alpha); \
63 ::run(size,depth,lhs,lhsStride,rhs,rhsStride,res,resStride,alpha); \
82 static EIGEN_STRONG_INLINE void run(Index size, Index depth,const EIGTYPE* lhs, Index lhsStride, \
87 MKL_INT lda=lhsStride, ldc=resStride, n=size, k=depth; \
107 static EIGEN_STRONG_INLINE void run(Index size, Index depth,const EIGTYPE* lhs, Index lhsStride, \
112 MKL_INT lda=lhsStride, ldc=resStride, n=size, k=depth; \
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/wgl/
stw_pixelformat.c 63 unsigned char depth; member in struct:stw_pf_depth_info::__anon14957
95 /* pure depth */
100 /* combined depth-stencil */
125 const struct stw_pf_depth_info *depth,
140 assert(util_format_get_component_bits(depth->format, UTIL_FORMAT_COLORSPACE_ZS, 0) == depth->bits.depth);
141 assert(util_format_get_component_bits(depth->format, UTIL_FORMAT_COLORSPACE_ZS, 1) == depth->bits.stencil);
179 pfi->pfd.cDepthBits = depth->bits.depth
245 const struct stw_pf_depth_info *depth = &stw_pf_depth_stencil[ds]; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i915/
i915_tex_layout.c 161 GLuint depth = mt->depth0; local
171 width, height, depth);
177 depth = minify(depth);
180 /* Fixup depth image_offsets: */
181 depth = mt->depth0;
184 for (i = 0; i < depth; i++) {
189 depth = minify(depth);
192 /* Multiply slice size by texture depth for total size. It'
407 GLuint depth = mt->depth0; local
    [all...]
  /external/chromium_org/v8/test/mjsunit/regress/
regress-2055.js 31 function test1(depth) {
32 if (--depth < 0) {
35 return [ 0, test1(depth) ];
40 function test2(depth) {
41 if (--depth < 0) {
44 var o = [ 0, test2(depth) ];
45 return (depth == 0) ? 0.5 : o;
  /external/mesa3d/src/gallium/state_trackers/wgl/
stw_pixelformat.c 63 unsigned char depth; member in struct:stw_pf_depth_info::__anon25299
95 /* pure depth */
100 /* combined depth-stencil */
125 const struct stw_pf_depth_info *depth,
140 assert(util_format_get_component_bits(depth->format, UTIL_FORMAT_COLORSPACE_ZS, 0) == depth->bits.depth);
141 assert(util_format_get_component_bits(depth->format, UTIL_FORMAT_COLORSPACE_ZS, 1) == depth->bits.stencil);
179 pfi->pfd.cDepthBits = depth->bits.depth
245 const struct stw_pf_depth_info *depth = &stw_pf_depth_stencil[ds]; local
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i915/
i915_tex_layout.c 161 GLuint depth = mt->depth0; local
171 width, height, depth);
177 depth = minify(depth);
180 /* Fixup depth image_offsets: */
181 depth = mt->depth0;
184 for (i = 0; i < depth; i++) {
189 depth = minify(depth);
192 /* Multiply slice size by texture depth for total size. It'
407 GLuint depth = mt->depth0; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/program/
symbol_table.c 61 /** 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++;
292 assert(sym->depth <= table->depth);
293 return sym->depth - table->depth;
    [all...]
  /external/libpng/contrib/pngminus/
pnm2png.c 54 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)
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) & 0xFF
    [all...]
  /external/mesa3d/src/mesa/program/
symbol_table.c 61 /** 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++;
292 assert(sym->depth <= table->depth);
293 return sym->depth - table->depth;
    [all...]
  /external/chromium_org/net/http/
http_pipelined_host_impl.cc 60 it->first->depth() < available_pipeline->depth())) {
100 if (!pipeline->depth()) {
127 if (pipelines_[pipeline].num_successes > 0 || pipeline->depth() > 1) {
174 pipeline->depth() < GetPipelineCapacity();
196 pipeline_dict->SetInteger("depth", it->first->depth());
  /external/chromium_org/remoting/host/
desktop_resizer_mac.cc 69 // highest color depth.
78 int depth = 0; local
83 depth = 32;
87 depth = 16;
91 depth = 8;
93 if (depth > best_depth) {
94 best_depth = depth;
  /external/chromium_org/third_party/WebKit/PerformanceTests/DOM/resources/dom-perf/
domdivwalk.js 77 function walkSubtree(parent, depth) {
81 if (parent.nodeName == "SPAN" && depth > 0)
87 walkSubtree(child, depth + 1);
95 function walkSubtree(parent, depth) {
99 if (parent.nodeName == "SPAN" && depth > 0)
102 walkSubtree(child, depth + 1);
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/
tracer.c 88 int depth; member in struct:__anon12911
146 self->depth = -1;
199 showlog(int depth, int lineno, PyObject * filename, const char * msg)
202 printf("%s%3d ", indent(depth), depth);
287 if (self->depth >= 0) {
293 SHOWLOG(self->depth, frame->f_lineno, frame->f_code->co_filename, "missedreturn");
294 self->cur_file_data = self->data_stack[self->depth].file_data;
295 self->last_line = self->data_stack[self->depth].last_line;
296 self->depth--
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
brw_tex_layout.c 89 GLuint depth = mt->depth0; local
114 width, height, depth);
116 for (q = 0; q < depth; /* empty */) {
117 for (j = 0; j < pack_x_nr && q < depth; j++, q++) {
133 depth = minify(depth);
  /external/libvpx/libvpx/vp9/encoder/
vp9_lookahead.c 59 unsigned int depth) {
62 // Clamp the lookahead queue depth
63 depth = clamp(depth, 1, MAX_LAG_BUFFERS);
69 ctx->max_sz = depth;
70 ctx->buf = calloc(depth, sizeof(*ctx->buf));
73 for (i = 0; i < depth; i++)
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_tex_layout.c 89 GLuint depth = mt->depth0; local
114 width, height, depth);
116 for (q = 0; q < depth; /* empty */) {
117 for (j = 0; j < pack_x_nr && q < depth; j++, q++) {
133 depth = minify(depth);

Completed in 1616 milliseconds

1 2 3 4 56 7 8 91011>>