HomeSort by relevance Sort by last modified time
    Searched refs:currentCapacity (Results 1 - 2 of 2) sorted by null

  /external/webkit/JavaScriptCore/runtime/
JSObject.h 449 size_t currentCapacity = m_structure->propertyStorageCapacity();
451 if (currentCapacity != m_structure->propertyStorageCapacity())
452 allocatePropertyStorage(currentCapacity, m_structure->propertyStorageCapacity());
463 size_t currentCapacity = m_structure->propertyStorageCapacity();
465 if (currentCapacity != structure->propertyStorageCapacity())
466 allocatePropertyStorage(currentCapacity, structure->propertyStorageCapacity());
507 if (currentCapacity != structure->propertyStorageCapacity())
508 allocatePropertyStorage(currentCapacity, structure->propertyStorageCapacity());
559 size_t currentCapacity = m_structure->propertyStorageCapacity();
561 if (currentCapacity != m_structure->propertyStorageCapacity()
    [all...]
  /dalvik/libcore/luni/src/main/java/java/util/
ArrayList.java 178 private static int newCapacity(int currentCapacity) {
179 int increment = (currentCapacity < (MIN_CAPACITY_INCREMENT / 2) ?
180 MIN_CAPACITY_INCREMENT : currentCapacity >> 1);
181 return currentCapacity + increment;

Completed in 339 milliseconds