/external/chromium_org/third_party/WebKit/Source/devtools/scripts/ |
CodeGeneratorFrontend.py | 154 def fill_recursive(path_part, depth): 155 if depth <= 0 or path_part == '/': 157 fill_recursive(os.path.dirname(path_part), depth - 1)
|
/external/chromium_org/third_party/libjingle/source/talk/xmllite/ |
xmlelement.h | 221 void AddText(const std::string& text, int depth); 223 void AddElement(XmlElement* child, int depth); 225 void AddAttr(const QName& name, const std::string& value, int depth);
|
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/i915/ |
i915_context.h | 167 /* static state (dst/depth buffer state) */ 395 double depth, unsigned stencil); 398 double depth, unsigned stencil); 401 double depth, unsigned stencil,
|
i915_state_sampler.c | 262 debug_printf("i915: unsupported depth swizzle %d %d %d %d\n", 303 const uint width = pt->width0, height = pt->height0, depth = pt->depth0; local 310 assert(depth); 341 | ((depth - 1) << MS4_VOLUME_DEPTH_SHIFT));
|
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r600/ |
r600_blit.c | 143 float depth; local 150 /* XXX Decompressing MSAA depth textures is broken on R6xx. 160 depth = 0.0f; 162 depth = 1.0f; 208 rctx->custom_dsa_flush, depth); 501 double depth, unsigned stencil) 509 color, depth, stencil); 530 double depth, 538 util_blitter_clear_depth_stencil(rctx->blitter, dst, clear_flags, depth, stencil, 701 src_box->z, src_box->z + src_box->depth - 1 [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/ |
svga_format.c | 70 return bind & PIPE_BIND_SAMPLER_VIEW ? ss->depth.z16 : SVGA3D_Z_D16; 72 return bind & PIPE_BIND_SAMPLER_VIEW ? ss->depth.s8z24 : SVGA3D_Z_D24S8; 74 return bind & PIPE_BIND_SAMPLER_VIEW ? ss->depth.x8z24 : SVGA3D_Z_D24X8;
|
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/xorg/ |
xorg_exa.c | 134 exa_get_pipe_format(int depth, enum pipe_format *format, int *bbp, int *picture_format) 136 switch (depth) { 496 pDstPixmap->drawable.depth, 813 int depth, int bitsPerPixel, int devKind, 836 if (depth <= 0) 837 depth = pPixmap->drawable.depth; 848 if (width <= 0 || height <= 0 || depth <= 0) 851 miModifyPixmapHeader(pPixmap, width, height, depth, 868 exa_get_pipe_format(depth, &template.format, &bitsPerPixel, &priv->picture_format) [all...] |
/external/chromium_org/third_party/sqlite/src/src/ |
test_rtree.c | 165 double depth; member in struct:Cube 184 ** cube(x, y, z, width, height, depth) 186 ** The width, height and depth parameters must all be greater than zero. 213 pCube->depth = p->aParam[5]; 225 && aCoord[4]<=(pCube->z+pCube->depth)
|
/external/chromium_org/third_party/tcmalloc/chromium/src/ |
profiler.cc | 281 int depth = GetStackTraceWithContext(stack + 1, arraysize(stack) - 1, local 283 depth++; // To account for pc value in stack[0]; 285 instance->collector_.Add(depth, stack);
|
/external/chromium_org/third_party/tcmalloc/vendor/src/ |
heap-profile-table.h | 78 int stack_depth; // depth of call_stack 87 int stack_depth; // Depth of stack trace 103 // The stack trace is stored in 'stack'. The stack depth is returned. 208 int depth; // Depth of stack trace member in struct:HeapProfileTable::Bucket 283 // Get the bucket for the caller stack trace 'key' of depth 'depth' from a 287 Bucket* GetBucket(int depth, const void* const key[], Bucket** table, 297 info.stack_depth = v->bucket()->depth;
|
/external/chromium_org/ui/base/x/ |
x11_util.h | 153 // Return the number of bits-per-pixel for a pixmap of the given depth 154 UI_EXPORT int BitsPerPixelForPixmapDepth(Display* display, int depth); 239 // windows up to a depth of |max_depth|. 267 // server side visual depth as needed. Destination is assumed to be the same 271 void* visual, int depth, 281 void* visual, int depth,
|
/external/chromium_org/ui/gl/ |
gl_surface_x11.cc | 167 attributes.depth); 199 attributes.depth, 241 attributes.depth,
|
/external/elfutils/libdw/ |
libdwP.h | 405 extern int __libdw_visit_scopes (unsigned int depth, 407 int (*previsit) (unsigned int depth, 410 int (*postvisit) (unsigned int depth,
|
/external/iproute2/tc/ |
q_sfq.c | 31 fprintf(stderr, " [ divisor NUMBER ] [ flows NUMBER] [ depth NUMBER ]\n"); 89 } else if (strcmp(*argv, "depth") == 0) { 91 if (get_u32(&opt.depth, *argv, 0)) { 223 if (qopt_ext && qopt_ext->depth) 224 fprintf(f, "depth %u ", qopt_ext->depth);
|
/external/jmonkeyengine/engine/src/core/com/jme3/texture/ |
FrameBuffer.java | 57 * depth testing (which requires a depth buffer). 65 * several <em>color</em> attachment points and a single <em>depth</em> 69 * The depth attachment point requires a depth image format. 197 * Enables the use of a depth buffer for this <code>FrameBuffer</code>. 199 * @param format The format to use for the depth buffer. 200 * @throws IllegalArgumentException If <code>format</code> is not a depth format. 207 throw new IllegalArgumentException("Depth buffer format must be depth.") [all...] |
/external/mesa3d/src/gallium/drivers/i915/ |
i915_context.h | 167 /* static state (dst/depth buffer state) */ 395 double depth, unsigned stencil); 398 double depth, unsigned stencil); 401 double depth, unsigned stencil,
|
i915_state_sampler.c | 262 debug_printf("i915: unsupported depth swizzle %d %d %d %d\n", 303 const uint width = pt->width0, height = pt->height0, depth = pt->depth0; local 310 assert(depth); 341 | ((depth - 1) << MS4_VOLUME_DEPTH_SHIFT));
|
/external/mesa3d/src/gallium/drivers/r600/ |
r600_blit.c | 143 float depth; local 150 /* XXX Decompressing MSAA depth textures is broken on R6xx. 160 depth = 0.0f; 162 depth = 1.0f; 208 rctx->custom_dsa_flush, depth); 501 double depth, unsigned stencil) 509 color, depth, stencil); 530 double depth, 538 util_blitter_clear_depth_stencil(rctx->blitter, dst, clear_flags, depth, stencil, 701 src_box->z, src_box->z + src_box->depth - 1 [all...] |
/external/mesa3d/src/gallium/drivers/svga/ |
svga_format.c | 70 return bind & PIPE_BIND_SAMPLER_VIEW ? ss->depth.z16 : SVGA3D_Z_D16; 72 return bind & PIPE_BIND_SAMPLER_VIEW ? ss->depth.s8z24 : SVGA3D_Z_D24S8; 74 return bind & PIPE_BIND_SAMPLER_VIEW ? ss->depth.x8z24 : SVGA3D_Z_D24X8;
|
/external/mesa3d/src/gallium/state_trackers/xorg/ |
xorg_exa.c | 134 exa_get_pipe_format(int depth, enum pipe_format *format, int *bbp, int *picture_format) 136 switch (depth) { 496 pDstPixmap->drawable.depth, 813 int depth, int bitsPerPixel, int devKind, 836 if (depth <= 0) 837 depth = pPixmap->drawable.depth; 848 if (width <= 0 || height <= 0 || depth <= 0) 851 miModifyPixmapHeader(pPixmap, width, height, depth, 868 exa_get_pipe_format(depth, &template.format, &bitsPerPixel, &priv->picture_format) [all...] |
/external/qemu/distrib/zlib-1.2.3/ |
trees.c | 442 * Compares to subtrees, using the tree depth as tie breaker when 445 #define smaller(tree, n, m, depth) \ 447 (tree[n].Freq == tree[m].Freq && depth[n] <= depth[m])) 465 smaller(tree, s->heap[j+1], s->heap[j], s->depth)) { 469 if (smaller(tree, v, s->heap[j], s->depth)) break; 639 s->depth[n] = 0; 653 s->depth[node] = 0; 677 s->depth[node] = (uch)((s->depth[n] >= s->depth[m] [all...] |
/external/zlib/src/ |
trees.c | 440 * Compares to subtrees, using the tree depth as tie breaker when 443 #define smaller(tree, n, m, depth) \ 445 (tree[n].Freq == tree[m].Freq && depth[n] <= depth[m])) 463 smaller(tree, s->heap[j+1], s->heap[j], s->depth)) { 467 if (smaller(tree, v, s->heap[j], s->depth)) break; 637 s->depth[n] = 0; 651 s->depth[node] = 0; 675 s->depth[node] = (uch)((s->depth[n] >= s->depth[m] [all...] |
/frameworks/av/services/camera/libcameraservice/device3/ |
Camera3ZslStream.cpp | 112 int depth) : 116 mDepth(depth) { 119 mProducer = new RingBufferConsumer(bq, GRALLOC_USAGE_HW_CAMERA_ZSL, 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/graphics/java/android/graphics/drawable/ |
AnimationDrawable.java | 256 int depth; local 258 ((depth = parser.getDepth()) >= innerDepth || type != XmlPullParser.END_TAG)) { 263 if (depth > innerDepth || !parser.getName().equals("item")) {
|