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

  /external/webkit/Source/JavaScriptCore/runtime/
JSObject.h 593 size_t currentCapacity = m_structure->propertyStorageCapacity();
595 if (currentCapacity != m_structure->propertyStorageCapacity())
596 allocatePropertyStorage(currentCapacity, m_structure->propertyStorageCapacity());
607 size_t currentCapacity = m_structure->propertyStorageCapacity();
609 if (currentCapacity != structure->propertyStorageCapacity())
610 allocatePropertyStorage(currentCapacity, structure->propertyStorageCapacity());
659 if (currentCapacity != structure->propertyStorageCapacity())
660 allocatePropertyStorage(currentCapacity, structure->propertyStorageCapacity());
718 size_t currentCapacity = m_structure->propertyStorageCapacity();
720 if (currentCapacity != m_structure->propertyStorageCapacity()
    [all...]
  /libcore/luni/src/main/java/java/util/
ArrayList.java 169 private static int newCapacity(int currentCapacity) {
170 int increment = (currentCapacity < (MIN_CAPACITY_INCREMENT / 2) ?
171 MIN_CAPACITY_INCREMENT : currentCapacity >> 1);
172 return currentCapacity + increment;

Completed in 115 milliseconds