HomeSort by relevance Sort by last modified time
    Searched defs:m_size (Results 76 - 100 of 212) sorted by null

1 2 34 5 6 7 8 9

  /prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/hash_fn/
mod_based_range_hashing.hpp 74 size_type m_size; member in class:__gnu_pbds::detail::mod_based_range_hashing
82 std::swap(m_size, other.m_size);
90 m_size = size;
98 return (hash % m_size);
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/ext/pb_ds/detail/hash_fn/
mod_based_range_hashing.hpp 74 size_type m_size; member in class:__gnu_pbds::detail::mod_based_range_hashing
82 std::swap(m_size, other.m_size);
90 m_size = size;
98 return (hash % m_size);
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/ext/pb_ds/detail/hash_fn/
mod_based_range_hashing.hpp 74 size_type m_size; member in class:__gnu_pbds::detail::mod_based_range_hashing
82 std::swap(m_size, other.m_size);
90 m_size = size;
98 return (hash % m_size);
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.6/include/ext/pb_ds/detail/hash_fn/
mod_based_range_hashing.hpp 74 size_type m_size; member in class:__gnu_pbds::detail::mod_based_range_hashing
82 std::swap(m_size, other.m_size);
90 m_size = size;
98 return (hash % m_size);
  /sdk/emulator/opengl/host/libs/Translator/include/GLcommon/
GLESbuffer.h 26 GLESbuffer():ObjectData(BUFFER_DATA),m_size(0),m_usage(GL_STATIC_DRAW),m_data(NULL),m_wasBound(false){}
27 GLuint getSize(){return m_size;};
39 GLuint m_size; member in class:GLESbuffer
GLESpointer.h 47 GLint m_size; member in class:GLESpointer
RangeManip.h 24 Range():m_start(0),m_end(0),m_size(0){};
25 Range(int start,int size):m_start(start),m_end(start+size),m_size(size){};
26 Range(const Range& r):m_start(r.m_start),m_end(r.m_end),m_size(r.m_size){};
27 void setRange(int start,int size){m_start = start; m_end = start+size; m_size = size;};
30 inline int getSize() const{return m_size;};
34 m_size = r.m_size;
38 return m_start == r.m_start && m_size == r.m_size && m_end == r.m_end
47 int m_size; member in class:Range
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/platform/audio/
AudioArray.h 41 AudioArray() : m_allocation(0), m_alignedData(0), m_size(0) { }
42 explicit AudioArray(size_t n) : m_allocation(0), m_alignedData(0), m_size(0)
91 m_size = n;
103 size_t size() const { return m_size; }
107 // Note that although it is a size_t, m_size is now guaranteed to be
129 // greater than m_size, which is safe due to the check in allocate().
141 // greater than m_size, which is safe due to the check in allocate().
154 size_t m_size; member in class:WebCore::AudioArray
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/
BitmapImage.h 168 mutable IntSize m_size; // The size to use for the overall image (will just be the size of the first image). member in class:WebCore::BitmapImage
192 mutable bool m_haveSize : 1; // Whether or not our |m_size| member variable has the final overall image size yet.
FontPlatformData.h 111 float size() const { return m_size; }
112 void setSize(float size) { m_size = size; }
143 && m_size == other.m_size
185 float m_size; member in class:WebCore::FontPlatformData
ImageBuffer.h 102 const IntSize& internalSize() const { return m_size; }
144 IntSize m_size; member in class:WebCore::ImageBuffer
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/chromium/
FontPlatformDataChromiumWin.h 89 float size() const { return m_size; }
103 return m_font == other.m_font && m_size == other.m_size && m_orientation == other.m_orientation;
155 float m_size; // Point size of the font in pixels. member in class:WebCore::FontPlatformData
  /external/chromium_org/third_party/WebKit/Source/core/platform/image-decoders/ico/
ICOImageDecoder.h 74 IntSize m_size; member in struct:WebCore::ICOImageDecoder::IconDirectoryEntry
  /external/chromium_org/third_party/skia/include/utils/
SkLayer.h 34 const SkSize& getSize() const { return m_size; }
40 SkScalar getWidth() const { return m_size.width(); }
41 SkScalar getHeight() const { return m_size.height(); }
45 void setSize(SkScalar w, SkScalar h) { m_size.set(w, h); }
118 SkSize m_size; member in class:SkLayer
  /external/emma/core/java12/com/vladium/util/
IntVector.java 34 if (index > m_size - 1)
35 throw new IndexOutOfBoundsException ("get[" + index + "] on vector of size " + m_size);
42 if (m_size == 0)
46 final int size = m_size;
64 return m_size;
79 if (m_size < COPY_THRESHOLD)
83 for (int i = 0; i < m_size; ++ i) _clone_values [i] = m_values [i];
100 final StringBuffer s = new StringBuffer (super.toString() + ", size " + m_size + ": ");
101 for (int i = 0; i < m_size; ++ i)
114 if (index > m_size - 1
152 private int m_size; field in class:IntVector
    [all...]
  /external/opencv/cv/src/
_cvlist.h 76 long m_size; /* The number of elements */ member in struct:_list
117 l->m_size++;\
133 if(l->m_buf_size < l->m_size && l->m_head_free.m_pos == NULL)\
142 element = (element_type*)((char*)l->m_buffer + sizeof(void*)) + l->m_size - 1;\
166 pl->m_size = 0;\
226 l->m_size = 0;\
274 l->m_size--;\
285 l->m_size--;\
343 l->m_size--;\
357 return list->m_size;\
    [all...]
  /external/skia/include/utils/
SkLayer.h 34 const SkSize& getSize() const { return m_size; }
40 SkScalar getWidth() const { return m_size.width(); }
41 SkScalar getHeight() const { return m_size.height(); }
45 void setSize(SkScalar w, SkScalar h) { m_size.set(w, h); }
118 SkSize m_size; member in class:SkLayer
  /device/generic/goldfish/opengl/shared/OpenglCodecCommon/
GLSharedGroup.h 43 GLsizeiptr m_size; member in struct:BufferData
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLCanvasElement.h 72 const IntSize& size() const { return m_size; }
158 IntSize m_size; member in class:WebCore::FINAL
HTMLInputElement.h 393 int m_size; member in class:WebCore::HTMLInputElement
HTMLSelectElement.h 58 int size() const { return m_size; }
200 int m_size; member in class:WebCore::FINAL
  /external/chromium_org/third_party/WebKit/Source/core/platform/
PODArena.h 157 , m_size(size)
178 if (m_currentOffset + size > m_size)
189 size_t m_size; member in class:WebCore::PODArena::Chunk
  /external/chromium_org/third_party/smhasher/src/
MurmurHash2.cpp 270 m_size = 0;
275 m_size += len;
295 mmix(m_hash,m_size);
330 uint32_t m_size; member in class:CMurmurHash2A
  /external/eigen/Eigen/src/SparseCore/
AmbiVector.h 31 : m_buffer(0), m_zero(0), m_size(0), m_allocatedSize(0), m_allocatedElements(0), m_mode(-1)
58 m_size = size;
61 Index size() const { return m_size; }
81 m_size = size;
83 m_end = m_size;
89 m_allocatedElements = (std::min)(Index(m_allocatedElements*1.5),m_size);
110 Index m_size; member in class:Eigen::internal::AmbiVector
CompressedStorage.h 36 : m_values(0), m_indices(0), m_size(0), m_allocatedSize(0)
40 : m_values(0), m_indices(0), m_size(0), m_allocatedSize(0)
46 : m_values(0), m_indices(0), m_size(0), m_allocatedSize(0)
54 memcpy(m_values, other.m_values, m_size * sizeof(Scalar));
55 memcpy(m_indices, other.m_indices, m_size * sizeof(Index));
63 std::swap(m_size, other.m_size);
75 size_t newAllocatedSize = m_size + size;
82 if (m_allocatedSize>m_size)
83 reallocate(m_size);
224 size_t m_size; member in class:Eigen::internal::CompressedStorage
    [all...]

Completed in 770 milliseconds

1 2 34 5 6 7 8 9