HomeSort by relevance Sort by last modified time
    Searched refs:m_depth (Results 1 - 25 of 27) sorted by null

1 2

  /external/chromium_org/third_party/WebKit/Source/core/html/canvas/
WebGLContextAttributes.cpp 43 , m_depth(true)
56 , m_depth(attrs.m_depth)
87 return m_depth;
92 m_depth = depth;
151 attrs.depth = m_depth;
WebGLContextAttributes.h 92 bool m_depth; member in class:WebCore::FINAL
  /external/chromium_org/third_party/WebKit/Source/platform/geometry/
FloatBox.h 46 , m_depth(0)
56 , m_depth(depth)
66 , m_depth(box.depth())
85 m_depth = origin.z();
98 m_depth = 0;
121 m_depth = maxZ - minZ;
147 bool isEmpty() const { return (m_width <= 0 && m_height <= 0) || (m_width <= 0 && m_depth <= 0) || (m_height <= 0 && m_depth <= 0); }
151 float front() const { return m_z + m_depth; }
157 float depth() const { return m_depth; }
164 float m_depth; member in class:WebCore::FloatBox
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/text/
SuffixTree.h 50 : m_depth(depth)
59 int limit = std::min(m_depth, query.length());
100 unsigned limit = std::min(base + m_depth, text.length());
112 unsigned m_depth; member in class:WebCore::SuffixTree
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderQuote.h 56 int m_depth; member in class:WebCore::FINAL
RenderQuote.cpp 37 , m_depth(0)
281 return quotesData()->getCloseQuote(m_depth - 1).impl();
283 return quotesData()->getOpenQuote(m_depth).impl();
362 m_depth = 0;
368 int oldDepth = m_depth;
369 m_depth = 0;
371 m_depth = m_previous->m_depth;
375 m_depth++;
379 if (m_depth)
    [all...]
  /external/lldb/tools/debugserver/source/MacOSX/
MachVMRegion.cpp 25 m_depth(-1),
47 m_depth = -1;
134 m_depth = 1024;
137 m_err = ::mach_vm_region_recurse (m_task, &m_start, &m_size, &m_depth, (vm_region_recurse_info_t)&m_data, &info_size);
143 m_err.LogThreaded("::mach_vm_region_recurse ( task = 0x%4.4x, address => 0x%8.8llx, size => %llu, nesting_depth => %d, info => %p, infoCnt => %d) addr = 0x%8.8llx ", m_task, (uint64_t)m_start, (uint64_t)m_size, m_depth, &m_data, info_size, (uint64_t)addr);
MachVMRegion.h 69 natural_t m_depth; member in class:MachVMRegion
  /external/deqp/modules/gles31/functional/
es31fTextureSpecificationTests.cpp 219 int m_depth; member in class:deqp::gles31::Functional::TextureCubeArraySpecCase
228 , m_depth (depth)
265 for (int layerFaceNdx = 0; layerFaceNdx < m_depth; layerFaceNdx++)
343 levelData.setSize(levelW, levelW, m_depth);
346 glTexImage3D(GL_TEXTURE_CUBE_MAP_ARRAY, ndx, m_internalFormat, levelW, levelW, m_depth, 0, transferFmt.format, transferFmt.dataType, levelData.getAccess().getDataPtr());
373 glTexStorage3D (GL_TEXTURE_CUBE_MAP_ARRAY, m_numLevels, m_internalFormat, m_size, m_size, m_depth);
383 levelData.setSize(levelW, levelW, m_depth);
386 glTexSubImage3D(GL_TEXTURE_CUBE_MAP_ARRAY, ndx, 0, 0, 0, levelW, levelW, m_depth, transferFmt.format, transferFmt.dataType, levelData.getAccess().getDataPtr());
440 data.resize(slicePitch*(m_depth+m_skipImages) + m_offset);
447 tcu::fillWithGrid(tcu::PixelBufferAccess(m_texFormat, m_size, m_size, m_depth, rowPitch, slicePitch, &data[0] + m_skipImages*slicePitch + m_skipRows*rowPitch + m_skipPixels*pix (…)
    [all...]
es31fTextureFilteringTests.cpp 131 const int m_depth; member in class:deqp::gles31::Functional::TextureCubeArrayFilteringCase
183 , m_depth (depth)
209 const int numLayers = m_depth / 6;
212 m_gradientTex = new glu::TextureCubeArray(m_context.getRenderContext(), m_internalFormat, m_size, m_depth);
213 m_gridTex = new glu::TextureCubeArray(m_context.getRenderContext(), m_internalFormat, m_size, m_depth);
230 for (int layerFaceNdx = 0; layerFaceNdx < m_depth; layerFaceNdx++)
247 for (int layerFaceNdx = 0; layerFaceNdx < m_depth; layerFaceNdx++)
249 const deUint32 step = 0x00ffffff / (numLevels*m_depth - 1);
es31fTextureFormatTests.cpp 94 const int m_depth; member in class:deqp::gles31::Functional::TextureCubeArrayFormatCase
109 , m_depth (depth)
123 , m_depth (depth)
140 ? new glu::TextureCubeArray(m_renderCtx, m_format, m_dataType, m_size, m_depth) // Implicit internal format.
141 : new glu::TextureCubeArray(m_renderCtx, m_format, m_size, m_depth); // Explicit internal format.
  /external/deqp/framework/common/
tcuCompressedTexture.hpp 117 int m_depth; member in class:tcu::CompressedTexture
tcuTexture.hpp 254 int getDepth (void) const { return m_depth; }
259 int getDataSize (void) const { return m_depth*m_slicePitch; }
286 int m_depth; member in class:tcu::ConstPixelBufferAccess
337 int getDepth (void) const { return m_depth; }
338 bool isEmpty (void) const { return m_width == 0 || m_height == 0 || m_depth == 0; }
344 PixelBufferAccess getAccess (void) { return PixelBufferAccess(m_format, m_width, m_height, m_depth, getPtr()); }
345 ConstPixelBufferAccess getAccess (void) const { return ConstPixelBufferAccess(m_format, m_width, m_height, m_depth, getPtr()); }
354 int m_depth; member in class:tcu::TextureLevel
1004 int m_depth; member in class:tcu::Texture3D
1077 int m_depth; member in class:tcu::TextureCubeArray
    [all...]
tcuTexture.cpp 526 , m_depth (0)
537 , m_depth (depth)
548 , m_depth (depth)
559 , m_depth (level.getDepth())
591 DE_ASSERT(de::inBounds(z, 0, m_depth));
676 DE_ASSERT(de::inBounds(z, 0, m_depth));
    [all...]
tcuCompressedTexture.cpp 45 , m_depth (0)
53 , m_depth (0)
215 m_depth = depth;
219 DE_ASSERT(m_depth == 1);
246 if (m_depth > 1)
250 m_data.resize(ASTC_BLOCK_SIZE_BYTES * divRoundUp(m_width, blockSize.x()) * divRoundUp(m_height, blockSize.y()) * divRoundUp(m_depth, blockSize.z()));
255 DE_ASSERT(m_width == 0 && m_height == 0 && m_depth == 0);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/compositing/
CompositingRequirementsUpdater.cpp 132 , m_depth(0)
143 , m_depth(other.m_depth + 1)
153 int m_depth; member in class:WebCore::CompositingRequirementsUpdater::RecursionData
  /external/emma/core/java12/com/vladium/emma/report/
ReportProperties.java 105 m_depth = depth;
110 return m_depth;
182 private int m_depth; field in class:ReportProperties.ParsedProperties
  /external/deqp/modules/gles3/functional/
es3fFboTestUtil.hpp 176 float m_depth; member in class:deqp::gles3::Functional::FboTestUtil::Texture3DShader
es3fTextureSpecificationTests.cpp 532 int m_depth; member in class:deqp::gles3::Functional::Texture3DSpecCase
542 , m_depth (depth)
578 int levelD = de::max(1, m_depth >> levelNdx);
799 int levelD = de::max(1, m_depth >> ndx);
    [all...]
es3fTextureFormatTests.cpp 591 int m_depth; member in class:deqp::gles3::Functional::Texture3DFormatCase
606 , m_depth (depth)
620 , m_depth (depth)
635 ? new glu::Texture3D(m_renderCtx, m_format, m_dataType, m_width, m_height, m_depth) // Implicit internal format.
636 : new glu::Texture3D(m_renderCtx, m_format, m_width, m_height, m_depth); // Explicit internal format.
668 float r = ((float)sliceNdx + 0.5f) / (float)m_depth;
    [all...]
es3fFboTestUtil.cpp 703 , m_depth (0.0f)
710 m_depth = depth;
724 gl.uniform1f (gl.getUniformLocation(program, "u_depth"), m_depth);
    [all...]
es3fTextureFilteringTests.cpp 943 const int m_depth; member in class:deqp::gles3::Functional::Texture3DFilteringCase
    [all...]
es3fTextureMipmapTests.cpp 1116 int m_depth; member in class:deqp::gles3::Functional::Texture3DMipmapCase
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
SerializedScriptValue.cpp 1489 int m_depth; member in class:WebCore::__anon14903::Serializer
    [all...]
  /prebuilts/tools/common/m2/repository/org/apache/felix/org.apache.felix.bundlerepository/1.6.6/
org.apache.felix.bundlerepository-1.6.6.jar 

Completed in 941 milliseconds

1 2