HomeSort by relevance Sort by last modified time
    Searched defs:m_size (Results 1 - 25 of 116) sorted by null

1 2 3 4 5

  /external/pdfium/fxbarcode/common/
BC_CommonBitArray.h 33 size_t m_size; member in class:CBC_CommonBitArray
BC_CommonByteArray.h 33 int32_t m_size; member in class:CBC_CommonByteArray
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/pairing_heap_/
split_join_fn_imps.hpp 63 _GLIBCXX_DEBUG_ASSERT(base_type::m_size > 0);
64 --base_type::m_size;
65 ++other.m_size;
118 base_type::m_size += other.m_size; member in class:base_type
120 other.m_size = 0;
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/pb_ds/detail/pairing_heap_/
split_join_fn_imps.hpp 63 _GLIBCXX_DEBUG_ASSERT(base_type::m_size > 0);
64 --base_type::m_size;
65 ++other.m_size;
118 base_type::m_size += other.m_size; member in class:base_type
120 other.m_size = 0;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/binomial_heap_base_/
split_join_fn_imps.hpp 62 _GLIBCXX_DEBUG_ASSERT(base_type::m_size > 0);
63 --base_type::m_size;
64 ++other.m_size;
122 base_type::m_size += other.m_size; member in class:base_type
126 other.m_size = 0;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/hash_fn/
mod_based_range_hashing.hpp 57 { std::swap(m_size, other.m_size); }
61 { m_size = s; }
65 { return s % m_size; }
68 size_type m_size; member in class:__gnu_pbds::detail::mod_based_range_hashing
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/resize_policy/
hash_load_check_resize_trigger_size_base.hpp 59 hash_load_check_resize_trigger_size_base(): m_size(0)
64 { std::swap(m_size, other.m_size); }
68 { m_size = size; }
72 { return m_size; }
75 size_type m_size; member in class:__gnu_pbds::detail::hash_load_check_resize_trigger_size_base
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/thin_heap_/
split_join_fn_imps.hpp 63 _GLIBCXX_DEBUG_ASSERT(base_type::m_size > 0);
64 --base_type::m_size;
65 ++other.m_size;
101 base_type::m_size += other.m_size; member in class:base_type
103 other.m_size = 0;
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/pb_ds/detail/binomial_heap_base_/
split_join_fn_imps.hpp 62 _GLIBCXX_DEBUG_ASSERT(base_type::m_size > 0);
63 --base_type::m_size;
64 ++other.m_size;
122 base_type::m_size += other.m_size; member in class:base_type
126 other.m_size = 0;
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/pb_ds/detail/hash_fn/
mod_based_range_hashing.hpp 57 { std::swap(m_size, other.m_size); }
61 { m_size = s; }
65 { return s % m_size; }
68 size_type m_size; member in class:__gnu_pbds::detail::mod_based_range_hashing
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/pb_ds/detail/resize_policy/
hash_load_check_resize_trigger_size_base.hpp 59 hash_load_check_resize_trigger_size_base(): m_size(0)
64 { std::swap(m_size, other.m_size); }
68 { m_size = size; }
72 { return m_size; }
75 size_type m_size; member in class:__gnu_pbds::detail::hash_load_check_resize_trigger_size_base
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/pb_ds/detail/thin_heap_/
split_join_fn_imps.hpp 63 _GLIBCXX_DEBUG_ASSERT(base_type::m_size > 0);
64 --base_type::m_size;
65 ++other.m_size;
101 base_type::m_size += other.m_size; member in class:base_type
103 other.m_size = 0;
  /device/google/marlin/camera/QCamera2/util/
QCameraQueue.h 62 int getCurrentSize() {return m_size;}
70 int m_size; member in class:qcamera::QCameraQueue
  /hardware/qcom/camera/msm8998/QCamera2/util/
QCameraQueue.h 62 int getCurrentSize() {return m_size;}
70 int m_size; member in class:qcamera::QCameraQueue
  /external/deqp/framework/delibs/decpp/
deRingBuffer.hpp 44 int getSize (void) const { return m_size; }
46 int getNumFree (void) const { return m_size - m_numElements; }
64 int m_size; member in class:de::RingBuffer
74 , m_size (size)
77 m_buffer = new T[m_size];
104 buf[ndx] = m_buffer[(m_back + ndx) % m_size];
109 m_size = newSize;
126 m_front = (m_front + 1) % m_size;
135 m_buffer[(m_front + i) % m_size] = elemBuf[i];
136 m_front = (m_front + count) % m_size;
    [all...]
deThreadSafeRingBuffer.hpp 54 const size_t m_size; member in class:de::ThreadSafeRingBuffer
71 : m_size (size+1)
72 , m_elements (m_size)
86 m_front = (m_front + 1) % m_size;
93 m_back = (m_back + 1) % m_size;
  /external/deqp/external/vulkancts/modules/vulkan/ycbcr/
vktYCbCrUtil.hpp 63 const tcu::UVec2& getSize (void) const { return m_size; }
77 const tcu::UVec2 m_size; member in class:vkt::ycbcr::MultiPlaneImageData
141 const tcu::IVec3& getSize (void) const { return m_size; }
157 const tcu::IVec3 m_size; member in class:vkt::ycbcr::ChannelAccess
  /external/deqp/modules/glshared/
glsTextureBufferCase.hpp 89 const size_t m_size; member in class:deqp::gls::TextureBufferCase
  /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/python/cpython3/Include/
moduleobject.h 78 Py_ssize_t m_size; member in struct:PyModuleDef
  /external/deqp/external/openglcts/modules/glesext/texture_cube_map_array/
esextcTextureCubeMapArrayColorDepthAttachments.hpp 71 glw::GLuint m_size; member in struct:glcts::TextureCubeMapArrayColorDepthAttachmentsTest::_texture_size
  /external/deqp/framework/opengl/
gluTexture.hpp 300 size_t getSize (void) const { return m_size; }
318 size_t m_size; member in class:glu::TextureBuffer
  /external/deqp/modules/gles3/functional/
es3fFboStencilbufferTests.cpp 55 , m_size (size)
82 glRenderbufferStorage(GL_RENDERBUFFER, colorFormat, m_size.x(), m_size.y());
87 glRenderbufferStorage(GL_RENDERBUFFER, m_format, m_size.x(), m_size.y());
99 glViewport(0, 0, m_size.x(), m_size.y());
132 readPixels(dst, 0, 0, m_size.x(), m_size.y(), glu::mapGLInternalFormat(colorFormat), Vec4(1.0f), Vec4(0.0f));
137 IVec2 m_size; member in class:deqp::gles3::Functional::BasicFboStencilCase
    [all...]
  /external/eigen/Eigen/src/SparseCore/
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)
56 internal::smart_copy(other.m_values, other.m_values + m_size, m_values);
57 internal::smart_copy(other.m_indices, other.m_indices + m_size, m_indices);
66 std::swap(m_size, other.m_size);
78 Index newAllocatedSize = m_size + size;
85 if (m_allocatedSize>m_size)
86 reallocate(m_size);
249 Index m_size; member in class:Eigen::internal::CompressedStorage
    [all...]

Completed in 723 milliseconds

1 2 3 4 5