Home
last modified time | relevance | path

Searched refs:m_array (Results 1 – 12 of 12) sorted by relevance

/external/apache-xml/src/main/java/org/apache/xml/utils/
DFastStringBuffer.java142 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/
Dcxfa_arraynodelist.cpp21 m_array = srcArray; in SetArrayNodeList()
25 return m_array.size(); in GetLength()
29 m_array.push_back(pNode); in Append()
35 m_array.push_back(pNewNode); in Insert()
37 auto it = std::find(m_array.begin(), m_array.end(), pBeforeNode); in Insert()
38 if (it != m_array.end()) in Insert()
39 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 …]
Dcxfa_arraynodelist.h32 std::vector<CXFA_Node*> m_array;
/external/pdfium/third_party/agg23/
Dagg_array.h30 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 …]
/external/pdfium/fxbarcode/qrcode/
DBC_QRCoderBitVector.cpp37 int32_t value = m_array[index >> 3] & 0xff; in At()
56 m_array[m_sizeInBits >> 3] |= (bit << (7 - numBitsInLastByte)); in AppendBit()
92 m_array[i] ^= pOther[i]; in XOR()
97 return m_array.data(); in GetArray()
101 if ((m_sizeInBits >> 3) == m_array.size()) in AppendByte()
102 m_array.push_back(0); in AppendByte()
103 m_array[m_sizeInBits >> 3] = value; in AppendByte()
DBC_QRCoderBitVector.h34 std::vector<uint8_t> m_array; variable
/external/deqp/framework/delibs/decpp/
DdePoolArray.hpp138 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/
Dgl4cVertexAttrib64BitTest.cpp629 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/tensorflow/tensorflow/core/kernels/
Dmkl_batch_matmul_op.cc109 std::vector<MKL_INT> m_array(batch_size, M); in Compute() local
128 MklCblasGemmBatch(CblasRowMajor, adj_x_, adj_y_, &m_array[0], &n_array[0], in Compute()
/external/deqp/modules/gles3/functional/
Des3fShaderCommonFunctionTests.cpp58 VecArrayAccess (const void* ptr) : m_array((tcu::Vector<T, Size>*)ptr) {} in VecArrayAccess()
61 const tcu::Vector<T, Size>& operator[] (size_t offset) const { return m_array[offset]; } in operator []()
62 tcu::Vector<T, Size>& operator[] (size_t offset) { return m_array[offset]; } in operator []()
65 tcu::Vector<T, Size>* m_array; member
/external/deqp/modules/gles31/functional/
Des31fShaderCommonFunctionTests.cpp62 VecArrayAccess (const void* ptr) : m_array((tcu::Vector<T, Size>*)ptr) {} in VecArrayAccess()
65 const tcu::Vector<T, Size>& operator[] (size_t offset) const { return m_array[offset]; } in operator []()
66 tcu::Vector<T, Size>& operator[] (size_t offset) { return m_array[offset]; } in operator []()
69 tcu::Vector<T, Size>* m_array; member
/external/deqp/external/vulkancts/modules/vulkan/shaderexecutor/
DvktShaderCommonFunctionTests.cpp67 VecArrayAccess (const void* ptr) : m_array((tcu::Vector<T, Size>*)ptr) {} in VecArrayAccess()
70 const tcu::Vector<T, Size>& operator[] (size_t offset) const { return m_array[offset]; } in operator []()
71 tcu::Vector<T, Size>& operator[] (size_t offset) { return m_array[offset]; } in operator []()
74 tcu::Vector<T, Size>* m_array; member