Searched defs:depth (Results 226 - 250 of 958) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DJSONParser.cpp341 PassRefPtr<JSONValue> buildValue(const CharType* start, const CharType* end, const CharType** valueTokenEnd, int depth) argument
343 if (depth > stackLimit)
383 RefPtr<JSONValue> arrayNode = buildValue(start, end, &tokenEnd, depth + 1);
423 RefPtr<JSONValue> value = buildValue(start, end, &tokenEnd, depth + 1);
/external/chromium_org/third_party/WebKit/Source/core/xml/
H A DXPathNodeSet.cpp53 static inline Node* parentWithDepth(unsigned depth, const NodeSetVector& parents) argument
55 ASSERT(parents.size() >= depth + 1);
56 return parents[parents.size() - 1 - depth];
65 unsigned depth = parentMatrix[i].size() - 1; local
66 if (minDepth > depth)
67 minDepth = depth;
/external/chromium_org/third_party/WebKit/Source/platform/
H A DJSONValues.cpp83 void writeIndent(int depth, StringBuilder* output) argument
85 for (int i = 0; i < depth; ++i)
180 void JSONValue::prettyWriteJSONInternal(StringBuilder* output, int depth) const
396 void JSONObjectBase::prettyWriteJSONInternal(StringBuilder* output, int depth) const
404 writeIndent(depth + 1, output);
407 it->value->prettyWriteJSONInternal(output, depth + 1);
410 writeIndent(depth, output);
449 void JSONArrayBase::prettyWriteJSONInternal(StringBuilder* output, int depth) const
458 writeIndent(depth + 1, output);
464 writeIndent(depth
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/geometry/
H A DFloatBox.h50 FloatBox(float x, float y, float z, float width, float height, float depth) argument
56 , m_depth(depth)
66 , m_depth(box.depth())
157 float depth() const { return m_depth; } function in class:blink::FloatBox
170 && a.height() == b.height() && a.depth() == b.depth();
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/
H A DTextureD3D.cpp123 bool TextureD3D::subImage(GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, argument
144 image->loadData(xoffset, yoffset, zoffset, width, height, depth, unpack.alignment, type, pixelData);
160 bool TextureD3D::subImageCompressed(GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, argument
165 image->loadCompressedData(xoffset, yoffset, zoffset, width, height, depth, pixels);
180 if (destArea.width <= 0 && destArea.height <= 0 && destArea.depth <= 0)
194 GLint TextureD3D::creationLevels(GLsizei width, GLsizei height, GLsizei depth) const
196 if ((gl::isPow2(width) && gl::isPow2(height) && gl::isPow2(depth)) || mRenderer->getRendererExtensions().textureNPOT)
199 return gl::log2(std::max(std::max(width, height), depth)) + 1;
295 void TextureD3D_2D::setImage(GLenum target, GLint level, GLsizei width, GLsizei height, GLsizei depth, GLenum internalFormat, GLenum format, GLenum type, const gl::PixelUnpackState &unpack, const void *pixels)
297 ASSERT(target == GL_TEXTURE_2D && depth
[all...]
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/d3d11/
H A DRenderTarget11.cpp180 ID3D11ShaderResourceView *srv, GLsizei width, GLsizei height, GLsizei depth)
217 mDepth = depth;
227 ID3D11ShaderResourceView *srv, GLsizei width, GLsizei height, GLsizei depth)
264 mDepth = depth;
310 // Multisample targets flagged for binding as depth stencil cannot also be
179 RenderTarget11(Renderer *renderer, ID3D11RenderTargetView *rtv, ID3D11Resource *resource, ID3D11ShaderResourceView *srv, GLsizei width, GLsizei height, GLsizei depth) argument
226 RenderTarget11(Renderer *renderer, ID3D11DepthStencilView *dsv, ID3D11Resource *resource, ID3D11ShaderResourceView *srv, GLsizei width, GLsizei height, GLsizei depth) argument
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/
H A Dloadimage.cpp14 void LoadA8ToRGBA8(size_t width, size_t height, size_t depth, argument
18 for (size_t z = 0; z < depth; z++)
32 void LoadA8ToBGRA8(size_t width, size_t height, size_t depth, argument
37 LoadA8ToRGBA8(width, height, depth, input, inputRowPitch, inputDepthPitch, output, outputRowPitch, outputDepthPitch);
40 void LoadA32FToRGBA32F(size_t width, size_t height, size_t depth, argument
44 for (size_t z = 0; z < depth; z++)
61 void LoadA16FToRGBA16F(size_t width, size_t height, size_t depth, argument
65 for (size_t z = 0; z < depth; z++)
82 void LoadL8ToRGBA8(size_t width, size_t height, size_t depth, argument
86 for (size_t z = 0; z < depth;
103 LoadL8ToBGRA8(size_t width, size_t height, size_t depth, const uint8_t *input, size_t inputRowPitch, size_t inputDepthPitch, uint8_t *output, size_t outputRowPitch, size_t outputDepthPitch) argument
111 LoadL32FToRGBA32F(size_t width, size_t height, size_t depth, const uint8_t *input, size_t inputRowPitch, size_t inputDepthPitch, uint8_t *output, size_t outputRowPitch, size_t outputDepthPitch) argument
132 LoadL16FToRGBA16F(size_t width, size_t height, size_t depth, const uint8_t *input, size_t inputRowPitch, size_t inputDepthPitch, uint8_t *output, size_t outputRowPitch, size_t outputDepthPitch) argument
153 LoadLA8ToRGBA8(size_t width, size_t height, size_t depth, const uint8_t *input, size_t inputRowPitch, size_t inputDepthPitch, uint8_t *output, size_t outputRowPitch, size_t outputDepthPitch) argument
174 LoadLA8ToBGRA8(size_t width, size_t height, size_t depth, const uint8_t *input, size_t inputRowPitch, size_t inputDepthPitch, uint8_t *output, size_t outputRowPitch, size_t outputDepthPitch) argument
182 LoadLA32FToRGBA32F(size_t width, size_t height, size_t depth, const uint8_t *input, size_t inputRowPitch, size_t inputDepthPitch, uint8_t *output, size_t outputRowPitch, size_t outputDepthPitch) argument
203 LoadLA16FToRGBA16F(size_t width, size_t height, size_t depth, const uint8_t *input, size_t inputRowPitch, size_t inputDepthPitch, uint8_t *output, size_t outputRowPitch, size_t outputDepthPitch) argument
224 LoadRGB8ToBGRX8(size_t width, size_t height, size_t depth, const uint8_t *input, size_t inputRowPitch, size_t inputDepthPitch, uint8_t *output, size_t outputRowPitch, size_t outputDepthPitch) argument
245 LoadRG8ToBGRX8(size_t width, size_t height, size_t depth, const uint8_t *input, size_t inputRowPitch, size_t inputDepthPitch, uint8_t *output, size_t outputRowPitch, size_t outputDepthPitch) argument
266 LoadR8ToBGRX8(size_t width, size_t height, size_t depth, const uint8_t *input, size_t inputRowPitch, size_t inputDepthPitch, uint8_t *output, size_t outputRowPitch, size_t outputDepthPitch) argument
287 LoadR5G6B5ToBGRA8(size_t width, size_t height, size_t depth, const uint8_t *input, size_t inputRowPitch, size_t inputDepthPitch, uint8_t *output, size_t outputRowPitch, size_t outputDepthPitch) argument
309 LoadR5G6B5ToRGBA8(size_t width, size_t height, size_t depth, const uint8_t *input, size_t inputRowPitch, size_t inputDepthPitch, uint8_t *output, size_t outputRowPitch, size_t outputDepthPitch) argument
331 LoadRGBA8ToBGRA8(size_t width, size_t height, size_t depth, const uint8_t *input, size_t inputRowPitch, size_t inputDepthPitch, uint8_t *output, size_t outputRowPitch, size_t outputDepthPitch) argument
350 LoadRGBA4ToBGRA8(size_t width, size_t height, size_t depth, const uint8_t *input, size_t inputRowPitch, size_t inputDepthPitch, uint8_t *output, size_t outputRowPitch, size_t outputDepthPitch) argument
372 LoadRGBA4ToRGBA8(size_t width, size_t height, size_t depth, const uint8_t *input, size_t inputRowPitch, size_t inputDepthPitch, uint8_t *output, size_t outputRowPitch, size_t outputDepthPitch) argument
394 LoadBGRA4ToBGRA8(size_t width, size_t height, size_t depth, const uint8_t *input, size_t inputRowPitch, size_t inputDepthPitch, uint8_t *output, size_t outputRowPitch, size_t outputDepthPitch) argument
416 LoadRGB5A1ToBGRA8(size_t width, size_t height, size_t depth, const uint8_t *input, size_t inputRowPitch, size_t inputDepthPitch, uint8_t *output, size_t outputRowPitch, size_t outputDepthPitch) argument
438 LoadRGB5A1ToRGBA8(size_t width, size_t height, size_t depth, const uint8_t *input, size_t inputRowPitch, size_t inputDepthPitch, uint8_t *output, size_t outputRowPitch, size_t outputDepthPitch) argument
461 LoadBGR5A1ToBGRA8(size_t width, size_t height, size_t depth, const uint8_t *input, size_t inputRowPitch, size_t inputDepthPitch, uint8_t *output, size_t outputRowPitch, size_t outputDepthPitch) argument
483 LoadRGB10A2ToRGBA8(size_t width, size_t height, size_t depth, const uint8_t *input, size_t inputRowPitch, size_t inputDepthPitch, uint8_t *output, size_t outputRowPitch, size_t outputDepthPitch) argument
505 LoadRGB16FToRGB9E5(size_t width, size_t height, size_t depth, const uint8_t *input, size_t inputRowPitch, size_t inputDepthPitch, uint8_t *output, size_t outputRowPitch, size_t outputDepthPitch) argument
525 LoadRGB32FToRGB9E5(size_t width, size_t height, size_t depth, const uint8_t *input, size_t inputRowPitch, size_t inputDepthPitch, uint8_t *output, size_t outputRowPitch, size_t outputDepthPitch) argument
543 LoadRGB16FToRG11B10F(size_t width, size_t height, size_t depth, const uint8_t *input, size_t inputRowPitch, size_t inputDepthPitch, uint8_t *output, size_t outputRowPitch, size_t outputDepthPitch) argument
563 LoadRGB32FToRG11B10F(size_t width, size_t height, size_t depth, const uint8_t *input, size_t inputRowPitch, size_t inputDepthPitch, uint8_t *output, size_t outputRowPitch, size_t outputDepthPitch) argument
583 LoadG8R24ToR24G8(size_t width, size_t height, size_t depth, const uint8_t *input, size_t inputRowPitch, size_t inputDepthPitch, uint8_t *output, size_t outputRowPitch, size_t outputDepthPitch) argument
603 LoadRGB32FToRGBA16F(size_t width, size_t height, size_t depth, const uint8_t *input, size_t inputRowPitch, size_t inputDepthPitch, uint8_t *output, size_t outputRowPitch, size_t outputDepthPitch) argument
624 LoadR32ToR16(size_t width, size_t height, size_t depth, const uint8_t *input, size_t inputRowPitch, size_t inputDepthPitch, uint8_t *output, size_t outputRowPitch, size_t outputDepthPitch) argument
642 LoadR32ToR24G8(size_t width, size_t height, size_t depth, const uint8_t *input, size_t inputRowPitch, size_t inputDepthPitch, uint8_t *output, size_t outputRowPitch, size_t outputDepthPitch) argument
[all...]
/external/chromium_org/third_party/boringssl/src/crypto/bn/
H A Dctx.c78 /* Stack depth and allocation size */
96 unsigned int depth, size; member in struct:bignum_ctx_stack
202 st->depth = st->size = 0;
211 if (st->depth == st->size)
220 if (st->depth) {
221 memcpy(newitems, st->indexes, st->depth * sizeof(unsigned int));
230 st->indexes[(st->depth)++] = idx;
235 return st->indexes[--(st->depth)];
/external/chromium_org/third_party/libaddressinput/src/cpp/src/
H A Dpreload_supplier.cc138 size_t depth = std::count(id.begin(), id.end(), '/') - 1; local
139 assert(depth < arraysize(LookupKey::kHierarchy));
140 AddressField field = LookupKey::kHierarchy[depth];
151 if (depth > 0) {
269 return lookup_key.ToKeyString(0); // Zero depth = COUNTRY level.
351 for (size_t depth = 0; depth <= max_depth; ++depth) {
352 const std::string& key = lookup_key.ToKeyString(depth);
355 return depth >
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/vpx_mem/memory_manager/include/
H A Dcavl_if.h147 ** node depth. The definition depends on whether the maximum depth is more
153 /* Maximum depth may be more than number of bits in a long. */
160 /* Maximum depth is definitely less than number of bits in a long. */
177 /* Zero-based depth of path into tree. */
178 unsigned depth; member in struct:__anon13225
H A Dcavl_impl.h106 /* The maximum depth may be greater than the number of bits in a long,
108 ** depth. */
325 /* Zero-based depth in tree. */
326 unsigned depth = 0, unbal_depth = 0; variable
342 unbal_depth = depth;
355 L_BIT_ARR_1(branch, depth)
358 L_BIT_ARR_0(branch, depth)
362 depth++;
371 depth = unbal_depth;
376 cmp = L_BIT_ARR_VAL(branch, depth)
516 unsigned depth = 0, rm_depth; variable
780 unsigned depth = 0; variable
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/
H A Dlp_bld_format_soa.c55 * Return zzz1 for depth-stencil formats.
57 * XXX: Allow to control the depth swizzle with an additional parameter,
58 * as the caller may wish another depth swizzle, or retain the stencil
62 LLVMValueRef depth = lp_build_swizzle_soa_channel(bld, unswizzled, swizzle); local
63 swizzled_out[2] = swizzled_out[1] = swizzled_out[0] = depth;
91 * channels. The common case is when converting pixel with a depth of 32 bit or
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/rbug/
H A Drbug_texture.c288 uint32_t *depth,
309 LEN_ARRAY(4, depth); /* depth */
331 WRITE_ARRAY(4, uint32_t, depth); /* depth */
582 READ_ARRAY(4, uint32_t, depth); /* depth */
280 rbug_send_texture_info_reply(struct rbug_connection *__con, uint32_t serial, uint32_t target, uint32_t format, uint32_t *width, uint32_t width_len, uint32_t *height, uint32_t height_len, uint32_t *depth, uint32_t depth_len, uint32_t blockw, uint32_t blockh, uint32_t blocksize, uint32_t last_level, uint32_t nr_samples, uint32_t tex_usage, uint32_t *__serial) argument
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
H A Du_simple_shaders.c174 * a texture and writes it as depth.
184 struct ureg_dst out, depth; local
201 depth = ureg_DECL_output( ureg,
210 ureg_writemask(depth, TGSI_WRITEMASK_Z),
220 * and writes it as depth and stencil, respectively.
230 struct ureg_dst out, depth, stencil; local
248 depth = ureg_DECL_output( ureg,
261 ureg_writemask(depth, TGSI_WRITEMASK_Z),
418 * Make a fragment shader that sets the output depth to a depth valu
[all...]
H A Du_surface.c280 double depth,
311 unsigned zstencil = util_pack_z_stencil(dst->texture->format, depth, stencil);
368 depth, stencil);
277 util_clear_depth_stencil(struct pipe_context *pipe, struct pipe_surface *dst, unsigned clear_flags, double depth, unsigned stencil, unsigned dstx, unsigned dsty, unsigned width, unsigned height) argument
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/vl/
H A Dvl_video_buffer.c219 unsigned depth, unsigned usage, unsigned plane)
222 templ->target = depth > 1 ? PIPE_TEXTURE_3D : PIPE_TEXTURE_2D;
226 templ->depth0 = depth;
352 unsigned i, j, depth, surf; local
358 depth = buffer->interlaced ? 2 : 1;
359 for (i = 0, surf = 0; i < depth; ++i ) {
437 unsigned depth, unsigned usage)
447 vl_vide_buffer_template(&res_tmpl, tmpl, resource_formats[0], depth, usage, 0);
457 vl_vide_buffer_template(&res_tmpl, tmpl, resource_formats[1], depth, usage, 1);
465 vl_vide_buffer_template(&res_tmpl, tmpl, resource_formats[2], depth, usag
216 vl_vide_buffer_template(struct pipe_resource *templ, const struct pipe_video_buffer *tmpl, enum pipe_format resource_format, unsigned depth, unsigned usage, unsigned plane) argument
434 vl_video_buffer_create_ex(struct pipe_context *pipe, const struct pipe_video_buffer *tmpl, const enum pipe_format resource_formats[VL_NUM_COMPONENTS], unsigned depth, unsigned usage) argument
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/i915/
H A Di915_surface.c127 double depth,
147 NULL, depth, stencil,
183 assert(src_box->depth == 1);
238 double depth,
252 packedds = util_pack_z_stencil(dst->format, depth, stencil);
124 i915_clear_depth_stencil_render(struct pipe_context *pipe, struct pipe_surface *dst, unsigned clear_flags, double depth, unsigned stencil, unsigned dstx, unsigned dsty, unsigned width, unsigned height) argument
235 i915_clear_depth_stencil_blitter(struct pipe_context *pipe, struct pipe_surface *dst, unsigned clear_flags, double depth, unsigned stencil, unsigned dstx, unsigned dsty, unsigned width, unsigned height) argument
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
H A Dlp_jit.h53 uint32_t depth; member in struct:lp_jit_texture
155 void *depth,
H A Dlp_rast_priv.h142 * Get the pointer to a 4x4 depth/stencil block.
153 void *depth; local
169 depth = (scene->zsbuf.map +
173 assert(lp_check_alignment(depth, 16));
174 return depth;
261 void *depth; local
268 depth = lp_rast_get_depth_block_pointer(task, x, y);
279 depth,
H A Dlp_state_fs.h52 struct pipe_depth_state depth; member in struct:lp_fragment_shader_variant_key
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/softpipe/
H A Dsp_texture.c61 unsigned depth = pt->depth0; local
70 slices = depth;
83 depth = u_minify(depth, 1);
332 assert(box->z + box->depth <= resource->array_size);
338 assert(box->z + box->depth <= (u_minify(resource->depth0, level)));
350 level, box->depth > 1 ? -1 : box->z,
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/
H A Dsvga_surface.c52 unsigned width, unsigned height, unsigned depth)
75 box.d = depth;
128 key->size.depth = zslice_pick < 0 ? u_minify(tex->b.b.depth0, start_mip) : 1;
130 assert(key->size.depth == 1);
162 unsigned depth = (zslice_pick < 0 ? local
174 depth);
45 svga_texture_copy_handle(struct svga_context *svga, struct svga_winsys_surface *src_handle, unsigned src_x, unsigned src_y, unsigned src_z, unsigned src_level, unsigned src_face, struct svga_winsys_surface *dst_handle, unsigned dst_x, unsigned dst_y, unsigned dst_z, unsigned dst_level, unsigned dst_face, unsigned width, unsigned height, unsigned depth) argument
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/wgl/
H A Dstw_pixelformat.c63 unsigned char depth; member in struct:stw_pf_depth_info::__anon14232
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
121 stw_pixelformat_add( struct stw_device *stw_dev, boolean extended, const struct stw_pf_color_info *color, const struct stw_pf_depth_info *depth, unsigned accum, boolean doublebuffer, unsigned samples ) argument
245 const struct stw_pf_depth_info *depth = &stw_pf_depth_stencil[ds]; local
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/xa/
H A Dxa_tracker.c236 enum xa_surface_type stype, unsigned int depth)
245 xa_format_depth(fdesc.xa_format) == depth) {
286 int depth,
295 fdesc = xa_get_format_stype_depth(xa, stype, depth);
341 int depth,
358 fdesc = xa_get_format_stype_depth(xa, stype, depth);
235 xa_get_format_stype_depth(struct xa_tracker *xa, enum xa_surface_type stype, unsigned int depth) argument
283 xa_surface_create(struct xa_tracker *xa, int width, int height, int depth, enum xa_surface_type stype, enum xa_formats xa_format, unsigned int flags) argument
338 xa_surface_redefine(struct xa_surface *srf, int width, int height, int depth, enum xa_surface_type stype, enum xa_formats xa_format, unsigned int new_flags, int copy_contents) argument
/external/chromium_org/third_party/mesa/src/src/glx/apple/
H A Dapple_glx_drawable.c367 unsigned int width, height, bd, depth; local
405 &depth);

Completed in 1285 milliseconds

1234567891011>>