HomeSort by relevance Sort by last modified time
    Searched refs:m_size (Results 176 - 200 of 398) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/webkit/Source/WebCore/platform/graphics/
ImageBuffer.h 77 const IntSize& size() const { return m_size; }
78 int width() const { return m_size.width(); }
79 int height() const { return m_size.height(); }
101 AffineTransform baseTransform() const { return AffineTransform(1, 0, 0, -1, 0, m_size.height()); }
118 IntSize m_size; member in class:WebCore::ImageBuffer
GeneratedImage.cpp 46 context->fillRect(FloatRect(FloatPoint(), m_size), *m_generator.get());
54 IntSize adjustedSize = m_size;
  /external/webkit/Source/WebCore/platform/graphics/android/
Layer.h 49 const SkSize& getSize() const { return m_size; }
55 SkScalar getWidth() const { return m_size.width(); }
56 SkScalar getHeight() const { return m_size.height(); }
60 void setSize(SkScalar w, SkScalar h) { m_size.set(w, h); }
186 SkSize m_size; member in class:Layer
BaseTileTexture.h 98 const SkSize& getSize() const { return m_size; }
120 SkSize m_size; member in class:WebCore::BaseTileTexture
  /external/webkit/Source/WebCore/platform/graphics/wx/
FontPlatformData.h 86 , m_size(0)
99 , m_size(size)
109 , m_size(0)
133 float size() const { return m_size; }
171 float m_size; member in class:WebCore::FontPlatformData
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/pb_ds/detail/ov_tree_map_/
constructors_destructor_fn_imps.hpp 55 m_size(0)
65 m_size(0)
76 m_size(0)
93 m_size(0)
155 m_size = len;
156 m_end_it = m_a_values + m_size;
208 m_size = len;
209 m_end_it = m_a_values + m_size;
241 std::swap(m_size, other.m_size);
    [all...]
  /prebuilt/ndk/android-ndk-r5/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/ov_tree_map_/
constructors_destructor_fn_imps.hpp 55 m_size(0)
65 m_size(0)
76 m_size(0)
93 m_size(0)
155 m_size = len;
156 m_end_it = m_a_values + m_size;
208 m_size = len;
209 m_end_it = m_a_values + m_size;
241 std::swap(m_size, other.m_size);
    [all...]
  /prebuilt/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/ov_tree_map_/
constructors_destructor_fn_imps.hpp 55 m_size(0)
65 m_size(0)
76 m_size(0)
93 m_size(0)
155 m_size = len;
156 m_end_it = m_a_values + m_size;
208 m_size = len;
209 m_end_it = m_a_values + m_size;
241 std::swap(m_size, other.m_size);
    [all...]
  /external/emma/core/java12/com/vladium/util/
IntObjectMap.java 81 return m_size;
127 if (m_size == 0)
131 final int [] result = new int [m_size];
187 if (m_size >= m_sizeThreshold) rehash ();
195 ++ m_size;
211 out.append ("size = " + m_size + ", bucket table size = " + m_buckets.length + ", load factor = " + m_loadFactor + EOL);
281 private int m_size; // number of keys in the table, not cleared as of last check field in class:IntObjectMap
  /external/qemu/slirp/
mbuf.c 72 m->m_size = SLIRP_MSIZE - sizeof(struct m_hdr);
123 m_inc(m,m->m_size+MINCSIZE);
139 if(m->m_size>size) return;
155 memcpy(dat, m->m_dat, m->m_size);
162 m->m_size = size;
216 if( (char *)dat>=m->m_ext && (char *)dat<(m->m_ext + m->m_size) )
219 if( (char *)dat >= m->m_dat && (char *)dat<(m->m_dat + m->m_size) )
mbuf.h 47 /* #define dtom(x) ((struct mbuf *)((int)(x) & ~(M_SIZE-1))) */
77 (((m)->m_ext + (m)->m_size) - (m)->m_data) \
79 (((m)->m_dat + (m)->m_size) - (m)->m_data))
102 #define m_size m_hdr.mh_size macro
  /external/qemu/slirp-android/
mbuf.c 72 m->m_size = SLIRP_MSIZE - sizeof(struct m_hdr);
123 m_inc(m,m->m_size+MINCSIZE);
139 if(m->m_size>size) return;
155 memcpy(dat, m->m_dat, m->m_size);
162 m->m_size = size;
216 if( (char *)dat>=m->m_ext && (char *)dat<(m->m_ext + m->m_size) )
219 if( (char *)dat >= m->m_dat && (char *)dat<(m->m_dat + m->m_size) )
mbuf.h 47 /* #define dtom(x) ((struct mbuf *)((int)(x) & ~(M_SIZE-1))) */
77 (((m)->m_ext + (m)->m_size) - (m)->m_data) \
79 (((m)->m_dat + (m)->m_size) - (m)->m_data))
102 #define m_size m_hdr.mh_size macro
  /external/webkit/Source/WebCore/platform/graphics/openvg/
ImageOpenVG.cpp 55 , m_size(tiledImage->size())
75 ASSERT(m_size.width() > 0);
76 ASSERT(m_size.height() > 0);
78 m_decodedSize = m_size.width() * m_size.height() * 4;
91 if (m_frameCount == 1 && m_size.width() == 1 && m_size.height() == 1)
  /external/webkit/Source/WebCore/platform/image-decoders/ico/
ICOImageDecoder.cpp 88 return (index && (index < m_dirEntries.size())) ? m_dirEntries[index].m_size : size();
135 const int aEntryArea = a.m_size.width() * a.m_size.height();
136 const int bEntryArea = b.m_size.width() * b.m_size.height();
198 m_frameSize = dirEntry.m_size;
212 if (m_pngDecoders[index]->isSizeAvailable() && (m_pngDecoders[index]->size() != dirEntry.m_size))
267 return setSize(dirEntry.m_size.width(), dirEntry.m_size.height());
284 entry.m_size = IntSize(width, height)
    [all...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/pb_ds/detail/binomial_heap_base_/
split_join_fn_imps.hpp 66 _GLIBCXX_DEBUG_ASSERT(base_type::m_size > 0);
67 --base_type::m_size;
69 ++other.m_size;
143 base_type::m_size += other.m_size; member in class:base_type
147 other.m_size = 0;
  /prebuilt/ndk/android-ndk-r5/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/binomial_heap_base_/
split_join_fn_imps.hpp 66 _GLIBCXX_DEBUG_ASSERT(base_type::m_size > 0);
67 --base_type::m_size;
69 ++other.m_size;
143 base_type::m_size += other.m_size; member in class:base_type
147 other.m_size = 0;
  /prebuilt/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/binomial_heap_base_/
split_join_fn_imps.hpp 66 _GLIBCXX_DEBUG_ASSERT(base_type::m_size > 0);
67 --base_type::m_size;
69 ++other.m_size;
143 base_type::m_size += other.m_size; member in class:base_type
147 other.m_size = 0;
  /external/webkit/Source/WebCore/fileapi/
WebKitBlobBuilder.h 64 long long m_size; member in class:WebCore::WebKitBlobBuilder
  /external/webkit/Source/WebCore/platform/graphics/qt/
FloatRectQt.cpp 37 , m_size(r.width()
  /external/webkit/Source/WebKit2/Shared/mac/
UpdateChunk.h 61 size_t m_size; member in class:WebKit::UpdateChunk
  /external/webkit/Source/WebCore/platform/graphics/chromium/
PlatformCanvas.h 98 IntSize size() const { return m_size; }
106 IntSize m_size; member in class:WebCore::PlatformCanvas
  /external/webkit/Source/WebCore/platform/graphics/texmap/
TextureMapperNode.cpp 147 rect.intersect(IntRect(0, 0, m_size.width(), m_size.height()));
316 const float originX = m_state.anchorPoint.x() * m_size.width();
317 const float originY = m_state.anchorPoint.y() * m_size.height();
343 return m_surface && !m_surface->size().isEmpty() ? m_surface->size() : m_size;
374 if ((m_size.isEmpty() && m_state.masksToBounds))
399 m_transforms.centerZ = m_transforms.target.mapPoint(FloatPoint3D(m_size.width() / 2, m_size.height() / 2, 0)).z();
407 const FloatPoint centerPoint = FloatPoint(m_size.width() / 2, m_size.height() / 2)
    [all...]
  /external/webkit/Source/WebCore/platform/image-decoders/wx/
ImageDecoderWx.cpp 56 for (size_t i = 0; i < m_size.width() * m_size.height() * sizeof(PixelData); i += sizeof(PixelData)) {
  /external/webkit/Source/WebKit2/Platform/CoreIPC/
Attachment.h 70 size_t size() const { return m_size; }
99 size_t m_size; member in class:CoreIPC::Attachment

Completed in 521 milliseconds

1 2 3 4 5 6 78 91011>>