]> SALOME platform Git repositories - modules/med.git/commitdiff
Salome HOME
Modification of the getHeapMemorySize computation.
authorageay <ageay>
Wed, 21 Aug 2013 14:07:06 +0000 (14:07 +0000)
committerageay <ageay>
Wed, 21 Aug 2013 14:07:06 +0000 (14:07 +0000)
src/MEDCoupling/MEDCouplingFieldDiscretization.cxx
src/MEDCoupling/MEDCouplingGaussLocalization.cxx
src/MEDCoupling/MEDCouplingGaussLocalization.hxx
src/MEDCoupling/MEDCouplingMemArrayChar.cxx

index 04dc709084582968cdcdc0acc67a4d18e314a0c1..9e493da4193914f18e2e07ed6f4de554cc7e0c4a 100644 (file)
@@ -1323,7 +1323,7 @@ std::size_t MEDCouplingFieldDiscretizationGauss::getHeapMemorySizeWithoutChildre
   std::size_t ret(MEDCouplingFieldDiscretizationPerCell::getHeapMemorySizeWithoutChildren());
   ret+=_loc.capacity()*sizeof(MEDCouplingGaussLocalization);
   for(std::vector<MEDCouplingGaussLocalization>::const_iterator it=_loc.begin();it!=_loc.end();it++)
-    ret+=(*it).getHeapMemorySize();
+    ret+=(*it).getMemorySize();
   return ret;
 }
 
index 5906ffc8b391b4c16de184378dfc59fba2208b1e..8a1b574c13e2fd67cab5f74e99fbbc729bd5d3d0 100644 (file)
@@ -104,7 +104,7 @@ std::string ParaMEDMEM::MEDCouplingGaussLocalization::getStringRepr() const
   return oss.str();
 }
 
-std::size_t ParaMEDMEM::MEDCouplingGaussLocalization::getHeapMemorySize() const
+std::size_t ParaMEDMEM::MEDCouplingGaussLocalization::getMemorySize() const
 {
   std::size_t ret=0;
   ret+=_ref_coord.capacity()*sizeof(double);
index d8559ebd9c24f140018c2f519753dbdebc5576be..865e92d008521cb743e6e116f075d2eb72ec3493 100644 (file)
@@ -43,7 +43,7 @@ namespace ParaMEDMEM
     int getDimension() const;
     int getNumberOfPtsInRefCell() const;
     std::string getStringRepr() const;
-    std::size_t getHeapMemorySize() const;
+    std::size_t getMemorySize() const;
     void checkCoherency() const throw(INTERP_KERNEL::Exception);
     bool isEqual(const MEDCouplingGaussLocalization& other, double eps) const;
     void pushTinySerializationIntInfo(std::vector<int>& tinyInfo) const;
index c9cb325c0e2960f54c254c790b94a974d89dfe2e..dd029ed862240a10b5c92fb014720c389dcc07d3 100644 (file)
@@ -204,7 +204,7 @@ char DataArrayChar::popBackSilent() throw(INTERP_KERNEL::Exception)
 /*!
  * This method \b do \b not modify content of \a this. It only modify its memory footprint if the allocated memory is to high regarding real data to store.
  *
- * \sa DataArrayChar::getHeapMemorySize, DataArrayChar::reserve
+ * \sa DataArrayChar::getHeapMemorySizeWithoutChildren, DataArrayChar::reserve
  */
 void DataArrayChar::pack() const throw(INTERP_KERNEL::Exception)
 {