/external/apache-xml/src/main/java/org/apache/xml/utils/ |
D | FastStringBuffer.java | 142 char[][] m_array; field in FastStringBuffer 210 m_array = new char[16][]; in FastStringBuffer() 221 m_array[0] = new char[m_chunkSize]; in FastStringBuffer() 308 m_array = new char[16][0]; in reset() 309 m_array[0] = new char[m_chunkSize]; in reset() 376 rootFSB.m_array = m_array; in setLength() 425 chunk = m_array[m_lastChunk]; in append() 430 int i = m_array.length; in append() 436 System.arraycopy(m_array, 0, newarray, 0, i); in append() 438 m_array = newarray; in append() [all …]
|
/external/pdfium/xfa/fxfa/parser/ |
D | cxfa_arraynodelist.cpp | 19 m_array = std::move(srcArray); in SetArrayNodeList() 23 return m_array.size(); in GetLength() 27 m_array.push_back(pNode); in Append() 32 m_array.push_back(pNewNode); in Insert() 36 auto it = std::find(m_array.begin(), m_array.end(), pBeforeNode); in Insert() 37 if (it == m_array.end()) in Insert() 40 m_array.insert(it, pNewNode); in Insert() 45 auto it = std::find(m_array.begin(), m_array.end(), pNode); in Remove() 46 if (it != m_array.end()) in Remove() 47 m_array.erase(it); in Remove() [all …]
|
D | cxfa_arraynodelist.h | 32 std::vector<CXFA_Node*> m_array;
|
/external/pdfium/third_party/agg23/ |
D | agg_array.h | 30 FX_Free(m_array); in ~pod_array() 32 pod_array() : m_size(0), m_capacity(0), m_array(0) {} in pod_array() 43 void zero() { memset(m_array, 0, sizeof(T) * m_size); } in zero() 46 m_array[m_size++] = v; in add() 62 return m_array[i]; 66 return m_array[i]; 70 return m_array[i]; in at() 74 return m_array[i]; in at() 78 return m_array[i]; in value_at() 82 return m_array; in data() [all …]
|
D | 0005-assignment-return-values.patch | 6 pod_array() : m_size(0), m_capacity(0), m_array(0) {} 16 memcpy(m_array, v.m_array, sizeof(T) * v.m_size);
|
/external/pdfium/fxbarcode/qrcode/ |
D | BC_QRCoderBitVector.cpp | 34 int32_t value = m_array[index >> 3] & 0xff; in At() 53 m_array[m_sizeInBits >> 3] |= (bit << (7 - numBitsInLastByte)); in AppendBit() 84 m_array[i] ^= pOther[i]; in XOR() 89 return m_array.data(); in GetArray() 93 if ((m_sizeInBits >> 3) == m_array.size()) in AppendByte() 94 m_array.push_back(0); in AppendByte() 95 m_array[m_sizeInBits >> 3] = value; in AppendByte()
|
D | BC_QRCoderBitVector.h | 34 std::vector<uint8_t> m_array; variable
|
/external/mesa3d/src/gallium/drivers/r600/sfn/ |
D | sfn_value_gpr.cpp | 207 m_array(array) in GPRArrayValue() 214 m_array(array) in GPRArrayValue() 222 assert(m_array); in do_print() 229 os << "(" << *m_array << ")"; in do_print() 237 *m_array == *v.m_array; in is_equal_to() 245 assert(m_array); in record_read() 246 m_array->record_read(ev, chan); in record_read() 256 assert(m_array); in record_write() 257 m_array->record_write(ev, chan); in record_write()
|
D | sfn_value_gpr.h | 179 GPRArray *m_array; variable 184 return m_array->size(); in array_size()
|
/external/deqp/framework/delibs/decpp/ |
D | dePoolArray.hpp | 138 const PoolArray<T, Alignment>* getArray (void) const throw() { return m_array; } in getArray() 141 const T* operator-> (void) const throw() { return &(*m_array)[this->m_ndx]; } in operator ->() 142 const T& operator* (void) const throw() { return (*m_array)[this->m_ndx]; } in operator *() 143 const T& operator[] (deUintptr offs) const throw() { return (*m_array)[this->m_ndx+offs]; } in operator []() 161 const PoolArray<T, Alignment>* m_array; member in de::PoolArrayConstIterator 174 PoolArray<T, Alignment>* getArray (void) const throw() { return m_array; } in getArray() 177 T* operator-> (void) const throw() { return &(*m_array)[this->m_ndx]; } in operator ->() 178 T& operator* (void) const throw() { return (*m_array)[this->m_ndx]; } in operator *() 179 T& operator[] (deUintptr offs) const throw() { return (*m_array)[this->m_ndx+offs]; } in operator []() 194 PoolArray<T, Alignment>* m_array; member in de::PoolArrayIterator [all …]
|
/external/deqp/external/openglcts/modules/gl/ |
D | gl4cVertexAttrib64BitTest.cpp | 629 m_array[i] = RandomDouble(min, max); in vertexAttribute() 633 GLdouble m_array[SIZE]; member in VertexAttrib64Bit::GetVertexAttribTest::vertexAttribute 768 …if (false == verifyResults(vertex_attribute.m_array, SIZE, index, function_name.str().c_str(), __L… in checkVertexAttribLd() 797 …if (false == verifyResults(vertex_attribute.m_array, SIZE, index, function_name.str().c_str(), __L… in checkVertexAttribLdv() 888 gl.vertexAttribL1d(index, attribute.m_array[0]); in vertexAttribLd() 902 gl.vertexAttribL2d(index, attribute.m_array[0], attribute.m_array[1]); in vertexAttribLd() 916 gl.vertexAttribL3d(index, attribute.m_array[0], attribute.m_array[1], attribute.m_array[2]); in vertexAttribLd() 930 …gl.vertexAttribL4d(index, attribute.m_array[0], attribute.m_array[1], attribute.m_array[2], attrib… in vertexAttribLd() 944 gl.vertexAttribL1dv(index, attribute.m_array); in vertexAttribLdv() 958 gl.vertexAttribL2dv(index, attribute.m_array); in vertexAttribLdv() [all …]
|
/external/deqp/external/vulkancts/modules/vulkan/shaderexecutor/ |
D | vktShaderCommonFunctionTests.cpp | 70 VecArrayAccess (const void* ptr) : m_array((tcu::Vector<T, Size>*)ptr) {} in VecArrayAccess() 73 const tcu::Vector<T, Size>& operator[] (size_t offset) const { return m_array[offset]; } in operator []() 74 tcu::Vector<T, Size>& operator[] (size_t offset) { return m_array[offset]; } in operator []() 77 tcu::Vector<T, Size>* m_array; member
|
/external/deqp/modules/gles3/functional/ |
D | es3fShaderCommonFunctionTests.cpp | 59 VecArrayAccess (const void* ptr) : m_array((tcu::Vector<T, Size>*)ptr) {} in VecArrayAccess() 62 const tcu::Vector<T, Size>& operator[] (size_t offset) const { return m_array[offset]; } in operator []() 63 tcu::Vector<T, Size>& operator[] (size_t offset) { return m_array[offset]; } in operator []() 66 tcu::Vector<T, Size>* m_array; member
|
/external/deqp/modules/gles31/functional/ |
D | es31fShaderCommonFunctionTests.cpp | 63 VecArrayAccess (const void* ptr) : m_array((tcu::Vector<T, Size>*)ptr) {} in VecArrayAccess() 66 const tcu::Vector<T, Size>& operator[] (size_t offset) const { return m_array[offset]; } in operator []() 67 tcu::Vector<T, Size>& operator[] (size_t offset) { return m_array[offset]; } in operator []() 70 tcu::Vector<T, Size>* m_array; member
|