HomeSort by relevance Sort by last modified time
    Searched refs:depth (Results 151 - 175 of 2204) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/
tracer.c 88 int depth; member in struct:__anon11005
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);
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/sampleentry/
VisualSampleEntry.java 42 * template unsigned int(16) depth = 0x0018;
70 private int depth = 24; field in class:VisualSampleEntry
103 return depth;
130 public void setDepth(int depth) {
131 this.depth = depth;
164 depth = IsoTypeReader.readUInt16(content);
  /packages/apps/Gallery2/src/com/android/gallery3d/util/
ProfileData.java 129 // second word: depth of the stack (N)
131 private void writeOneStack(Node node, int depth) throws IOException {
133 writeInt(depth);
134 while (depth-- > 0) {
140 private void writeAllStacks(Node node, int depth) throws IOException {
142 writeOneStack(node, depth);
148 writeAllStacks(children.get(i), depth + 1); local
  /art/runtime/mirror/
throwable.cc 62 // Decode the internal stack trace into the depth and method trace
64 int32_t depth = method_trace->GetLength() - 1; local
65 IntArray* pc_trace = down_cast<IntArray*>(method_trace->Get(depth));
67 for (int32_t i = 0; i < depth; ++i) {
  /external/chromium_org/chrome/utility/media_galleries/
iapps_xml_utils.cc 25 int depth = reader->Depth(); local
27 if (!SkipToNextElement(reader) || reader->Depth() < depth)
29 DCHECK_EQ(depth, reader->Depth());
40 int dict_content_depth = reader->Depth() + 1;
45 while (reader->Depth() >= dict_content_depth) {
51 DCHECK_EQ(dict_content_depth, reader->Depth());
  /external/chromium_org/third_party/sqlite/src/tool/
fragck.tcl 120 # Find the depth of this page
122 set depth 1
126 incr depth
132 puts [format {LEVEL %d: %6d} $depth $pg]
  /external/chromium_org/v8/test/webkit/fast/js/
deep-recursion-test.js 26 function simpleRecursion(depth) {
27 if (depth)
28 simpleRecursion(depth - 1);
68 function tooManyArgsRecursion(depth) {
69 if (depth)
70 tooManyArgsRecursion(depth - 1, 1);
  /external/clang/bindings/python/examples/cindex/
cindex-dump.py 39 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/doclava/src/com/google/doclava/
TagInfo.java 73 int j, int depth) {
77 j = makeHDF(data, base, inherited.tags(), inherited.inherited(), j, depth + 1);
82 j = makeHDF(data, base, inherited.tags(), inherited.inherited(), j, depth + 1);
  /external/opencv/otherlibs/highgui/
grfmt_pxm.cpp 369 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 > 8) ? buffer : (char*)data, fileStep )
    [all...]
  /external/valgrind/main/none/tests/
thread-exits.c 47 static void grow(int depth)
53 if (depth > 1)
54 grow(depth-1);
  /external/bouncycastle/bcprov/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/base/debug/
trace_event_win.cc 84 DWORD depth = CaptureStackBackTrace(0, local
88 event.SetField(3, sizeof(depth), &depth);
89 event.SetField(4, sizeof(backtrace[0]) * depth, backtrace);
  /external/chromium_org/extensions/common/
extension_resource.cc 67 int depth = 0; local
72 depth--;
74 depth++;
76 if (depth < 0) {
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
lp_state_blend.c 118 state->depth.enabled = 0;
119 state->depth.writemask = 0;
150 llvmpipe_delete_depth_stencil_state(struct pipe_context *pipe, void *depth)
152 FREE( depth );
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/softpipe/
sp_quad.h 81 * Quad stage outputs (color & depth).
87 float depth[TGSI_QUAD_SIZE]; member in struct:quad_header_output
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/
svga_screen.h 67 /* which formats to translate depth formats into */
73 } depth; member in struct:svga_screen
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/radeon/server/
radeon_dri.h 69 int depth; /**< \brief depth of display (8, 15, 16, 24) */ member in struct:__anon13340
70 int bpp; /**< \brief bit depth of display (8, 16, 24, 32) */
79 int depthOffset; /**< \brief shared depth buffer offset */
80 int depthPitch; /**< \brief shared depth buffer pitch */
  /external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/
st_cb_fbo.h 80 st_is_depth_stencil_combined(const struct gl_renderbuffer_attachment *depth,
  /external/chromium_org/third_party/mesa/src/src/mesa/swrast/
s_renderbuffer.h 59 GLboolean depth,
  /external/chromium_org/tools/telemetry/third_party/davclient/
davclient.py 143 def copy(self, source, destination, body=None, depth='infinity', overwrite=True, headers=None):
152 headers['Depth'] = depth
157 def copy_collection(self, source, destination, depth='infinity', overwrite=True, headers=None):
166 self.copy(source, destination, body=unicode(body, 'utf-8'), depth=depth, overwrite=overwrite, headers=headers)
169 def move(self, source, destination, body=None, depth='infinity', overwrite=True, headers=None):
178 headers['Depth'] = depth
183 def move_collection(self, source, destination, depth='infinity', overwrite=True, headers=None)
    [all...]
  /external/chromium_org/webkit/renderer/compositor_bindings/
web_transform_operations_impl.h 28 virtual void appendPerspective(double depth);

Completed in 6690 milliseconds

1 2 3 4 5 67 8 91011>>