HomeSort by relevance Sort by last modified time
    Searched defs:storageSize (Results 1 - 4 of 4) sorted by null

  /dalvik/vm/
BitVector.h 31 u4 storageSize; /* current size, in 32-bit words */
  /external/webkit/Source/JavaScriptCore/runtime/
JSArray.cpp 68 // The definition of MAX_STORAGE_VECTOR_LENGTH is dependant on the definition storageSize
102 static inline size_t storageSize(unsigned vectorLength)
141 m_storage = static_cast<ArrayStorage*>(fastZeroedMalloc(storageSize(initialCapacity)));
148 Heap::heap(this)->reportExtraMemoryCost(storageSize(0));
162 m_storage = static_cast<ArrayStorage*>(fastMalloc(storageSize(initialCapacity)));
190 Heap::heap(this)->reportExtraMemoryCost(storageSize(initialCapacity));
208 m_storage = static_cast<ArrayStorage*>(fastMalloc(storageSize(initialStorage)));
231 Heap::heap(this)->reportExtraMemoryCost(storageSize(initialStorage));
444 if (!tryFastRealloc(baseStorage, storageSize(newVectorLength + m_indexBias)).getValue(baseStorage)) {
478 Heap::heap(this)->reportExtraMemoryCost(storageSize(newVectorLength) - storageSize(vectorLength))
    [all...]
JSObject.h     [all...]
  /frameworks/base/core/jni/android/graphics/
Canvas.cpp 578 ssize_t storageSize = ptCount * sizeof(SkPoint); // texs[]
580 storageSize += ptCount * sizeof(SkPoint); // storage for verts
582 storageSize += indexCount * sizeof(uint16_t); // indices[]
584 SkAutoMalloc storage(storageSize);
651 SkASSERT((char*)indexPtr - (char*)storage.get() == storageSize);
    [all...]

Completed in 635 milliseconds