Home
last modified time | relevance | path

Searched refs:numNewElements (Results 1 – 14 of 14) sorted by relevance

/dports/audio/carla/Carla-2.4.1/source/modules/water/containers/
H A DArrayAllocationBase.h110 setAllocatedSize (const size_t numNewElements) noexcept in setAllocatedSize() argument
112 if (numAllocated != numNewElements) in setAllocatedSize()
114 if (numNewElements > 0) in setAllocatedSize()
116 if (! elements.realloc ((size_t) numNewElements)) in setAllocatedSize()
124 numAllocated = numNewElements; in setAllocatedSize()
134 if (numAllocated == numNewElements) in setAllocatedSize()
137 if (numNewElements > 0) in setAllocatedSize()
141 if (! newElements.malloc (numNewElements)) in setAllocatedSize()
146 for (; i < numAllocated && i < numNewElements; ++i) in setAllocatedSize()
152 for (; i < numNewElements; ++i) in setAllocatedSize()
[all …]
/dports/math/osi/Osi-0.108.6/CoinUtils/src/
H A DCoinSimpFactorization.hpp215 void enlargeUrow(const int numNewElements);
217 void enlargeUcol(const int numNewElements, const bool b);
247 void newEta(int row, int numNewElements);
H A DCoinSimpFactorization.cpp1675 void CoinSimpFactorization::enlargeUcol(const int numNewElements, const bool ifElements) in enlargeUcol() argument
1677 int *iaux = new int[UcolMaxCap_ + numNewElements]; in enlargeUcol()
1683 double *aux = new double[UcolMaxCap_ + numNewElements]; in enlargeUcol()
1689 UcolMaxCap_ += numNewElements; in enlargeUcol()
1691 void CoinSimpFactorization::enlargeUrow(const int numNewElements) in enlargeUrow() argument
1693 int *iaux = new int[UrowMaxCap_ + numNewElements]; in enlargeUrow()
1698 double *aux = new double[UrowMaxCap_ + numNewElements]; in enlargeUrow()
1703 UrowMaxCap_ += numNewElements; in enlargeUrow()
2519 void CoinSimpFactorization::newEta(int row, int numNewElements) in newEta() argument
2539 if (EtaSize_ + numNewElements > EtaMaxCap_) { in newEta()
[all …]
/dports/math/coinutils/CoinUtils-2.11.4/CoinUtils/src/
H A DCoinSimpFactorization.hpp215 void enlargeUrow(const int numNewElements);
217 void enlargeUcol(const int numNewElements, const bool b);
247 void newEta(int row, int numNewElements);
H A DCoinSimpFactorization.cpp1675 void CoinSimpFactorization::enlargeUcol(const int numNewElements, const bool ifElements) in enlargeUcol() argument
1677 int *iaux = new int[UcolMaxCap_ + numNewElements]; in enlargeUcol()
1683 double *aux = new double[UcolMaxCap_ + numNewElements]; in enlargeUcol()
1689 UcolMaxCap_ += numNewElements; in enlargeUcol()
1691 void CoinSimpFactorization::enlargeUrow(const int numNewElements) in enlargeUrow() argument
1693 int *iaux = new int[UrowMaxCap_ + numNewElements]; in enlargeUrow()
1698 double *aux = new double[UrowMaxCap_ + numNewElements]; in enlargeUrow()
1703 UrowMaxCap_ += numNewElements; in enlargeUrow()
2519 void CoinSimpFactorization::newEta(int row, int numNewElements) in newEta() argument
2539 if (EtaSize_ + numNewElements > EtaMaxCap_) { in newEta()
[all …]
/dports/math/ogdf/OGDF/include/coin/
H A DCoinSimpFactorization.hpp211 void enlargeUrow(const int numNewElements);
213 void enlargeUcol(const int numNewElements, const bool b);
243 void newEta(int row, int numNewElements);
/dports/math/clp/Clp-1.17.3/CoinUtils/src/
H A DCoinSimpFactorization.hpp215 void enlargeUrow(const int numNewElements);
217 void enlargeUcol(const int numNewElements, const bool b);
247 void newEta(int row, int numNewElements);
H A DCoinSimpFactorization.cpp1675 void CoinSimpFactorization::enlargeUcol(const int numNewElements, const bool ifElements) in enlargeUcol() argument
1677 int *iaux = new int[UcolMaxCap_ + numNewElements]; in enlargeUcol()
1683 double *aux = new double[UcolMaxCap_ + numNewElements]; in enlargeUcol()
1689 UcolMaxCap_ += numNewElements; in enlargeUcol()
1691 void CoinSimpFactorization::enlargeUrow(const int numNewElements) in enlargeUrow() argument
1693 int *iaux = new int[UrowMaxCap_ + numNewElements]; in enlargeUrow()
1698 double *aux = new double[UrowMaxCap_ + numNewElements]; in enlargeUrow()
1703 UrowMaxCap_ += numNewElements; in enlargeUrow()
2519 void CoinSimpFactorization::newEta(int row, int numNewElements) in newEta() argument
2539 if (EtaSize_ + numNewElements > EtaMaxCap_) { in newEta()
[all …]
/dports/games/openrct2/OpenRCT2-0.3.5.1/src/openrct2/world/
H A DMap.cpp241 static bool map_check_free_elements_and_reorganise(size_t numElementsOnTile, size_t numNewElements) in map_check_free_elements_and_reorganise() argument
244 if (_tileElementsInUse + numNewElements > MAX_TILE_ELEMENTS) in map_check_free_elements_and_reorganise()
249 auto totalElementsRequired = numElementsOnTile + numNewElements; in map_check_free_elements_and_reorganise()
1218 static TileElement* AllocateTileElements(size_t numElementsOnTile, size_t numNewElements) in AllocateTileElements() argument
1220 if (!map_check_free_elements_and_reorganise(numElementsOnTile, numNewElements)) in AllocateTileElements()
1227 _tileElements.resize(_tileElements.size() + numElementsOnTile + numNewElements); in AllocateTileElements()
1228 _tileElementsInUse += numNewElements; in AllocateTileElements()
/dports/math/ogdf/OGDF/src/coin/CoinUtils/
H A DCoinSimpFactorization.cpp1702 void CoinSimpFactorization::enlargeUcol(const int numNewElements, const bool ifElements) in enlargeUcol() argument
1704 int *iaux=new int[UcolMaxCap_+numNewElements]; in enlargeUcol()
1710 double *aux=new double[UcolMaxCap_+numNewElements]; in enlargeUcol()
1716 UcolMaxCap_+=numNewElements; in enlargeUcol()
1718 void CoinSimpFactorization::enlargeUrow(const int numNewElements) in enlargeUrow() argument
1720 int *iaux=new int[UrowMaxCap_+numNewElements]; in enlargeUrow()
1725 double *aux=new double[UrowMaxCap_+numNewElements]; in enlargeUrow()
1730 UrowMaxCap_+=numNewElements; in enlargeUrow()
2506 void CoinSimpFactorization::newEta(int row, int numNewElements){ in newEta() argument
2525 if ( EtaSize_ + numNewElements > EtaMaxCap_ ){ in newEta()
[all …]
/dports/net/libfixbuf/libfixbuf-2.3.1/include/fixbuf/
H A Dpublic.h2130 uint16_t numNewElements);
2379 uint16_t numNewElements);
2674 uint16_t numNewElements);
/dports/graphics/opensubdiv/OpenSubdiv-3_4_4/opensubdiv/far/
H A DpatchTableFactory.cpp1591 int numNewElements = conversionMatrix.GetNumElements(); in appendLocalPointStencils() local
1605 stencilTable->_indices.resize(numOldElements + numNewElements); in appendLocalPointStencils()
1610 for (int i = 0; i < numNewElements; ++i) { in appendLocalPointStencils()
1615 stencilTable->_weights.resize(numOldElements + numNewElements); in appendLocalPointStencils()
1620 std::memcpy(newWeights, mtxWeights, numNewElements * sizeof(REAL)); in appendLocalPointStencils()
/dports/audio/faust/faust-2.37.3/tools/physicalModeling/mesh2faust/vega/libraries/volumetricMesh/
H A DcubicMesh.cpp667 int numNewElements = 8 * numElements; in subdivide() local
668 int ** newElements = (int**) malloc (sizeof(int*) * numNewElements); in subdivide()
744 numElements = numNewElements; in subdivide()
/dports/net/libfixbuf/libfixbuf-2.3.1/src/
H A Dfbuf.c4539 uint16_t numNewElements) in fbBasicListAddNewElements() argument
4543 uint16_t numElements = basicList->numElements + numNewElements; in fbBasicListAddNewElements()
4790 uint16_t numNewElements) in fbSubTemplateListAddNewElements() argument
4793 uint16_t numElements = sTL->numElements + numNewElements; in fbSubTemplateListAddNewElements()
5019 uint16_t numNewElements) in fbSubTemplateMultiListEntryAddNewElements() argument
5022 uint16_t numElements = entry->numElements + numNewElements; in fbSubTemplateMultiListEntryAddNewElements()