/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 | 21 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 …]
|
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 …]
|
/external/pdfium/fxbarcode/qrcode/ |
D | BC_QRCoderBitVector.cpp | 37 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()
|
D | BC_QRCoderBitVector.h | 34 std::vector<uint8_t> m_array; variable
|
/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/tensorflow/tensorflow/core/kernels/ |
D | mkl_batch_matmul_op.cc | 109 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/ |
D | es3fShaderCommonFunctionTests.cpp | 58 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/ |
D | es31fShaderCommonFunctionTests.cpp | 62 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/ |
D | vktShaderCommonFunctionTests.cpp | 67 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
|