/external/emma/core/java12/com/vladium/util/ |
D | IntVector.java | 27 m_values = new int [initCapacity]; in IntVector() 37 return m_values [index]; in get() 51 for (int i = 0; i < size; ++ i) result [i] = m_values [i]; in values() 55 System.arraycopy (m_values, 0, result, 0, size); in values() 81 _clone.m_values = new int [m_values.length]; in clone() 82 final int [] _clone_values = _clone.m_values; in clone() 83 for (int i = 0; i < m_size; ++ i) _clone_values [i] = m_values [i]; in clone() 87 _clone.m_values = (int []) m_values.clone (); in clone() 104 s.append (m_values [i]); in toString() 117 final int current_value = m_values [index]; in set() [all …]
|
/external/eigen/Eigen/src/SparseCore/ |
D | CompressedStorage.h | 36 : m_values(0), m_indices(0), m_size(0), m_allocatedSize(0) in CompressedStorage() 40 : m_values(0), m_indices(0), m_size(0), m_allocatedSize(0) in CompressedStorage() 46 : m_values(0), m_indices(0), m_size(0), m_allocatedSize(0) in CompressedStorage() 54 internal::smart_copy(other.m_values, other.m_values + m_size, m_values); 61 std::swap(m_values, other.m_values); in swap() 69 delete[] m_values; in ~CompressedStorage() 97 m_values[id] = v; in append() 105 inline Scalar& value(size_t i) { return m_values[i]; } in value() 106 inline const Scalar& value(size_t i) const { return m_values[i]; } in value() 115 res.m_values = values; in Map() [all …]
|
D | MappedSparseMatrix.h | 45 Scalar* m_values; 58 inline const Scalar* valuePtr() const { return m_values; } 59 inline Scalar* valuePtr() { return m_values; } 78 return m_values[end-1]; 84 return ((*r==inner) && (id<end)) ? m_values[id] : Scalar(0); 99 return m_values[id]; 110 m_innerIndices(innerIndexPtr), m_values(valuePtr)
|
D | SparseMatrix.h | 873 …: m_values(mat.valuePtr()), m_indices(mat.innerIndexPtr()), m_outer(outer), m_id(mat.m_outerIndex[… 883 inline const Scalar& value() const { return m_values[m_id]; } 884 inline Scalar& valueRef() { return const_cast<Scalar&>(m_values[m_id]); } 894 const Scalar* m_values; 906 …: m_values(mat.valuePtr()), m_indices(mat.innerIndexPtr()), m_outer(outer), m_start(mat.m_outerInd… 916 inline const Scalar& value() const { return m_values[m_id-1]; } 917 inline Scalar& valueRef() { return const_cast<Scalar&>(m_values[m_id-1]); } 927 const Scalar* m_values;
|
/external/apache-xml/src/main/java/org/apache/xml/utils/ |
D | BoolStack.java | 32 private boolean m_values[]; field in BoolStack 58 m_values = new boolean[size]; in BoolStack() 94 return (m_values[++m_index] = val); in push() 106 return m_values[m_index--]; in pop() 121 return (m_index >= 0) ? m_values[m_index] : false; in popAndTop() 132 m_values[m_index] = b; in setTop() 144 return m_values[m_index]; in peek() 155 return (m_index > -1) ? m_values[m_index] : false; in peekOrFalse() 166 return (m_index > -1) ? m_values[m_index] : true; in peekOrTrue() 191 System.arraycopy(m_values, 0, newVector, 0, m_index + 1); in grow() [all …]
|
D | StringToIntTable.java | 42 private int m_values[]; field in StringToIntTable 60 m_values = new int[m_blocksize]; in StringToIntTable() 74 m_values = new int[m_blocksize]; in StringToIntTable() 108 System.arraycopy(m_values, 0, newValues, 0, m_firstFree + 1); in put() 110 m_values = newValues; in put() 114 m_values[m_firstFree] = value; in put() 133 return m_values[i]; in get() 155 return m_values[i]; in getIgnoreCase()
|
/external/eigen/unsupported/Eigen/src/AutoDiff/ |
D | AutoDiffVector.h | 46 : m_values(values) in AutoDiffVector() 52 CoeffType operator[] (Index i) { return CoeffType(m_values[i], m_jacobian.col(i)); } 53 const CoeffType operator[] (Index i) const { return CoeffType(m_values[i], m_jacobian.col(i)); } 55 CoeffType operator() (Index i) { return CoeffType(m_values[i], m_jacobian.col(i)); } in operator() 56 const CoeffType operator() (Index i) const { return CoeffType(m_values[i], m_jacobian.col(i)); } in operator() 58 CoeffType coeffRef(Index i) { return CoeffType(m_values[i], m_jacobian.col(i)); } in coeffRef() 59 const CoeffType coeffRef(Index i) const { return CoeffType(m_values[i], m_jacobian.col(i)); } in coeffRef() 61 Index size() const { return m_values.size(); } in size() 64 …*/ /*std::cerr << m_jacobian.rowwise().sum() << "\n\n";*/ return Scalar(m_values.sum(), m_jacobian… in sum() 68 : m_values(values), m_jacobian(jac) in AutoDiffVector() [all …]
|
/external/apache-xml/src/main/java/org/apache/xml/serializer/utils/ |
D | StringToIntTable.java | 49 private int m_values[]; field in StringToIntTable 67 m_values = new int[m_blocksize]; in StringToIntTable() 81 m_values = new int[m_blocksize]; in StringToIntTable() 115 System.arraycopy(m_values, 0, newValues, 0, m_firstFree + 1); in put() 117 m_values = newValues; in put() 121 m_values[m_firstFree] = value; in put() 140 return m_values[i]; in get() 162 return m_values[i]; in getIgnoreCase()
|
/external/pdfium/xfa/src/fxbarcode/pdf417/ |
D | BC_PDF417BarcodeValue.cpp | 32 confidence = m_values.GetAt(i); in setValue() 33 m_values.SetAt(i, confidence + 1); in setValue() 39 m_values.Add(confidence); in setValue() 45 if (m_values.GetAt(i) > maxConfidence) { in getValue() 46 maxConfidence = m_values.GetAt(i); in getValue() 49 } else if (m_values.GetAt(i) == maxConfidence) { in getValue() 58 return m_values.GetAt(i); in getConfidence()
|
D | BC_PDF417BarcodeValue.h | 19 CFX_Int32Array m_values; variable
|
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/ |
D | EnumerationValuesPropertyEditor.java | 32 private final Object[] m_values; field in EnumerationValuesPropertyEditor 44 m_values = new Object[items]; in EnumerationValuesPropertyEditor() 48 m_values[i] = enumElements[3 * i + 1]; in EnumerationValuesPropertyEditor() 63 for (int i = 0; i < m_values.length; i++) { in getText() 64 if (Objects.equal(m_values[i], value)) { in getText() 81 for (int i = 0; i < m_values.length; i++) { in getValueSource() 82 if (Objects.equal(m_values[i], value)) { in getValueSource() 120 Object value = m_values[index]; in toPropertyEx()
|
/external/eigen/unsupported/test/ |
D | NumericalDiff.cpp | 24 int m_inputs, m_values; member 26 Functor() : m_inputs(InputsAtCompileTime), m_values(ValuesAtCompileTime) {} in Functor() 27 Functor(int inputs, int values) : m_inputs(inputs), m_values(values) {} in Functor() 30 int values() const { return m_values; } in values()
|
D | forward_adolc.cpp | 37 int m_inputs, m_values; member 39 TestFunc1() : m_inputs(InputsAtCompileTime), m_values(ValuesAtCompileTime) {} in TestFunc1() 40 TestFunc1(int inputs, int values) : m_inputs(inputs), m_values(values) {} in TestFunc1() 43 int values() const { return m_values; } in values()
|
D | autodiff.cpp | 43 int m_inputs, m_values; member 45 TestFunc1() : m_inputs(InputsAtCompileTime), m_values(ValuesAtCompileTime) {} in TestFunc1() 46 TestFunc1(int inputs, int values) : m_inputs(inputs), m_values(values) {} in TestFunc1() 49 int values() const { return m_values; } in values()
|
D | NonLinearOptimization.cpp | 118 const int m_inputs, m_values; member 120 Functor() : m_inputs(InputsAtCompileTime), m_values(ValuesAtCompileTime) {} in Functor() 121 Functor(int inputs, int values) : m_inputs(inputs), m_values(values) {} in Functor() 124 int values() const { return m_values; } in values()
|
/external/eigen/unsupported/Eigen/src/LevenbergMarquardt/ |
D | LevenbergMarquardt.h | 53 const int m_inputs, m_values; member 55 DenseFunctor() : m_inputs(InputsAtCompileTime), m_values(ValuesAtCompileTime) {} in DenseFunctor() 56 DenseFunctor(int inputs, int values) : m_inputs(inputs), m_values(values) {} in DenseFunctor() 59 int values() const { return m_values; } in values() 82 SparseFunctor(int inputs, int values) : m_inputs(inputs), m_values(values) {} in SparseFunctor() 85 int values() const { return m_values; } in values() 87 const int m_inputs, m_values; member
|
/external/emma/core/java12/com/vladium/util/args/ |
D | OptsParser.java | 520 if (m_values == null) return 0; in getValueCount() 522 return m_values.size (); in getValueCount() 527 if (m_values == null) return null; in getFirstValue() 529 return (String) m_values.get (0); in getFirstValue() 534 if (m_values == null) return IConstants.EMPTY_STRING_ARRAY; in getValues() 536 final String [] result = new String [m_values.size ()]; in getValues() 537 m_values.toArray (result); in getValues() 552 if (m_values != null) in toString() 555 s.append (m_values); in toString() 572 if (m_values == null) m_values = new ArrayList (); in addValue() [all …]
|
/external/deqp/framework/randomshaders/ |
D | rsgProgramExecutor.cpp | 82 std::map<std::string, VaryingStorage*> m_values; member in rsg::VaryingStore 92 for (map<string, VaryingStorage*>::iterator i = m_values.begin(); i != m_values.end(); i++) in ~VaryingStore() 94 m_values.clear(); in ~VaryingStore() 99 VaryingStorage* storage = m_values[name]; in getStorage() 104 m_values[name] = storage; in getStorage()
|
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/sax2dtm/ |
D | SAX2DTM2.java | 1802 protected Vector m_values; field in SAX2DTM2 1884 m_values = new Vector(32, 512); in SAX2DTM2() 2049 int index = m_values.indexOf(uri); in getIdForNamespace() 2052 m_values.addElement(uri); in getIdForNamespace() 2111 m_values.addElement(declURL); in startElement() 2129 m_values.addElement(declURL); in startElement() 2170 m_values.addElement(valString); in startElement() 2268 m_values.addElement(new String(ch, start, length)); in comment() 2468 m_values.addElement(data); in processingInstruction() 2866 return m_xstrf.newstr((String)m_values.elementAt(dataIndex)); in getStringValue() [all …]
|
/external/deqp/framework/common/ |
D | tcuTestLog.hpp | 207 SampleBuilder& operator<< (int v) { m_values.push_back(Value((deInt64)v)); return *this; } in operator <<() 208 SampleBuilder& operator<< (deInt64 v) { m_values.push_back(Value(v)); return *this; } in operator <<() 209 SampleBuilder& operator<< (float v) { m_values.push_back(Value((double)v)); return *this; } in operator <<() 210 SampleBuilder& operator<< (double v) { m_values.push_back(Value(v)); return *this; } in operator <<() 232 std::vector<Value> m_values; member in tcu::SampleBuilder
|
D | tcuTestLog.cpp | 166 for (std::vector<Value>::const_iterator val = m_values.begin(); val != m_values.end(); ++val) in operator <<()
|
/external/apache-xml/src/main/java/org/apache/xml/serializer/ |
D | ToStream.java | 3317 private boolean m_values[]; field in ToStream.BoolStack 3343 m_values = new boolean[size]; in BoolStack() 3379 return (m_values[++m_index] = val); in push() 3391 return m_values[m_index--]; in pop() 3406 return (m_index >= 0) ? m_values[m_index] : false; in popAndTop() 3417 m_values[m_index] = b; in setTop() 3429 return m_values[m_index]; in peek() 3440 return (m_index > -1) ? m_values[m_index] : false; in peekOrFalse() 3451 return (m_index > -1) ? m_values[m_index] : true; in peekOrTrue() 3476 System.arraycopy(m_values, 0, newVector, 0, m_index + 1); in grow() [all …]
|
/external/ceres-solver/internal/ceres/ |
D | compressed_row_sparse_matrix.cc | 518 const double* m_values = m.values(); in ComputeOuterProduct() local 530 const double v1 = m_values[idx1]; in ComputeOuterProduct() 532 values[program[cursor]] += v1 * m_values[idx2]; in ComputeOuterProduct()
|