/external/pdfium/xfa/src/fxbarcode/qrcode/ |
BC_QRCoderBitVector.cpp | 30 m_array = FX_Alloc(uint8_t, m_size);
33 if (m_array != NULL) {
34 FX_Free(m_array);
40 if (m_array != NULL) {
41 FX_Free(m_array);
42 m_array = NULL;
46 m_array = FX_Alloc(uint8_t, m_size);
53 int32_t value = m_array[index >> 3] & 0xff;
72 m_array[m_sizeInBits >> 3] |= (bit << (7 - numBitsInLastByte));
113 m_array[i] ^= (other->GetArray())[i]; [all...] |
BC_QRCoderBitVector.h | 12 uint8_t* m_array;
member in class:CBC_QRCoderBitVector
|
/external/pdfium/third_party/agg23/ |
agg_array.h | 30 FX_Free(m_array); 32 pod_array() : m_size(0), m_capacity(0), m_array(0) {} 45 FXSYS_memset(m_array, 0, sizeof(T) * m_size); 49 m_array[m_size++] = v; 65 return m_array[i]; 69 return m_array[i]; 73 return m_array[i]; 77 return m_array[i]; 81 return m_array[i]; 85 return m_array; 104 T* m_array; member in class:agg::pod_array [all...] |
/external/libgdx/extensions/gdx-box2d/gdx-box2d/jni/Box2D/Common/ |
b2GrowableStack.h | 33 m_stack = m_array; 40 if (m_stack != m_array) 55 if (old != m_array) 79 T m_array[N]; member in class:b2GrowableStack
|
/external/apache-xml/src/main/java/org/apache/xml/utils/ |
FastStringBuffer.java | 135 * Field m_array holds the string buffer's text contents, using an 142 char[][] m_array; field in class:FastStringBuffer 145 * Field m_lastChunk is an index into m_array[], pointing to the last 156 * Field m_firstFree is an index into m_array[m_lastChunk][], pointing to 158 * FastStringBuffer's current content. Since m_array[][] is zero-based, 166 * length equals m_chunkSize, and which replaces m_array[0]. This allows 210 m_array = new char[16][]; 221 m_array[0] = new char[m_chunkSize]; 308 m_array = new char[16][0]; 309 m_array[0] = new char[m_chunkSize] [all...] |
/external/deqp/framework/delibs/decpp/ |
dePoolArray.hpp | 129 const PoolArray<T, Alignment>* getArray (void) const throw() { return m_array; } 132 const T* operator-> (void) const throw() { return (*m_array)[this->m_ndx]; } 133 const T& operator* (void) const throw() { return (*m_array)[this->m_ndx]; } 134 const T& operator[] (deUintptr offs) const throw() { return (*m_array)[this->m_ndx+offs]; } 152 const PoolArray<T, Alignment>* m_array; member in class:de::PoolArrayConstIterator 165 PoolArray<T, Alignment>* getArray (void) const throw() { return m_array; } 168 T* operator-> (void) const throw() { return (*m_array)[this->m_ndx]; } 169 T& operator* (void) const throw() { return (*m_array)[this->m_ndx]; } 170 T& operator[] (deUintptr offs) const throw() { return (*m_array)[this->m_ndx+offs]; } 185 PoolArray<T, Alignment>* m_array; member in class:de::PoolArrayIterator [all...] |
/external/pdfium/xfa/src/fxfa/src/parser/ |
xfa_object_imp.cpp | [all...] |
/external/apache-xml/src/main/java/org/apache/xalan/templates/ |
AVT.java | 51 * of the char m_array in FastStringBuffer if USE_OBJECT_POOL == false.
|
/external/deqp/modules/gles3/functional/ |
es3fShaderCommonFunctionTests.cpp | 58 VecArrayAccess (const void* ptr) : m_array((tcu::Vector<T, Size>*)ptr) {} 61 const tcu::Vector<T, Size>& operator[] (size_t offset) const { return m_array[offset]; } 62 tcu::Vector<T, Size>& operator[] (size_t offset) { return m_array[offset]; } 65 tcu::Vector<T, Size>* m_array; member in struct:deqp::gles3::Functional::VecArrayAccess [all...] |
/external/pdfium/xfa/src/fxfa/src/common/ |
xfa_object.h | 698 CXFA_NodeArray m_array; member in class:CXFA_ArrayNodeList [all...] |
/external/deqp/external/vulkancts/modules/vulkan/shaderexecutor/ |
vktShaderCommonFunctionTests.cpp | 67 VecArrayAccess (const void* ptr) : m_array((tcu::Vector<T, Size>*)ptr) {} 70 const tcu::Vector<T, Size>& operator[] (size_t offset) const { return m_array[offset]; } 71 tcu::Vector<T, Size>& operator[] (size_t offset) { return m_array[offset]; } 74 tcu::Vector<T, Size>* m_array; member in struct:vkt::shaderexecutor::__anon10429::VecArrayAccess [all...] |
/external/deqp/modules/gles31/functional/ |
es31fShaderCommonFunctionTests.cpp | 62 VecArrayAccess (const void* ptr) : m_array((tcu::Vector<T, Size>*)ptr) {} 65 const tcu::Vector<T, Size>& operator[] (size_t offset) const { return m_array[offset]; } 66 tcu::Vector<T, Size>& operator[] (size_t offset) { return m_array[offset]; } 69 tcu::Vector<T, Size>* m_array; member in struct:deqp::gles31::Functional::VecArrayAccess [all...] |