OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:upperSize
(Results
1 - 4
of
4
) sorted by null
/external/eigen/unsupported/Eigen/src/Skyline/
SkylineStorage.h
57
resize(other.diagSize(), other.m_upperProfileSize, other.m_lowerProfileSize, other.
upperSize
(), other.lowerSize());
59
memcpy(m_upper, other.m_upper, other.
upperSize
() * sizeof (Scalar));
87
void reserve(Index size, Index upperProfileSize, Index lowerProfileSize, Index
upperSize
, Index lowerSize) {
88
Index newAllocatedSize = size +
upperSize
+ lowerSize;
90
reallocate(size, upperProfileSize, lowerProfileSize,
upperSize
, lowerSize);
98
void resize(Index diagSize, Index upperProfileSize, Index lowerProfileSize, Index
upperSize
, Index lowerSize, float reserveSizeFactor = 0) {
99
if (m_allocatedSize < diagSize +
upperSize
+ lowerSize)
100
reallocate(diagSize, upperProfileSize, lowerProfileSize,
upperSize
+ Index(reserveSizeFactor *
upperSize
), lowerSize + Index(reserveSizeFactor * lowerSize));
102
m_upperSize =
upperSize
;
[
all
...]
SkylineMatrix.h
91
return m_data.
upperSize
();
384
return m_data.diagSize() + m_data.
upperSize
() + m_data.lowerSize();
689
for (Index i = 0; i < m.m_data.
upperSize
(); i++)
/external/icu/icu4c/source/test/cintltst/
capitst.c
[
all
...]
/external/icu/icu4c/source/test/intltest/
apicoll.cpp
[
all
...]
Completed in 126 milliseconds