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

  /development/simulator/wrapsim/
BitVector.h 17 int storageSize; /* current size, in 32-bit words */
  /dalvik/vm/
Misc.h 140 int storageSize; /* current size, in 32-bit words */
  /external/webkit/JavaScriptCore/runtime/
JSObject.h 684 size_t storageSize = m_structure->propertyStorageSize();
685 markStack.appendValues(reinterpret_cast<JSValue*>(storage), storageSize);
JSArray.cpp 70 // The definition of MAX_STORAGE_VECTOR_LENGTH is dependant on the definition storageSize
91 static inline size_t storageSize(unsigned vectorLength)
138 m_storage = static_cast<ArrayStorage*>(fastZeroedMalloc(storageSize(initialCapacity)));
149 m_storage = static_cast<ArrayStorage*>(fastMalloc(storageSize(initialCapacity)));
171 m_storage = static_cast<ArrayStorage*>(fastMalloc(storageSize(initialCapacity)));
186 Heap::heap(this)->reportExtraMemoryCost(storageSize(initialCapacity));
391 if (!tryFastRealloc(storage, storageSize(newVectorLength)).getValue(storage)) {
419 Heap::heap(this)->reportExtraMemoryCost(storageSize(newVectorLength) - storageSize(vectorLength));
510 if (!tryFastRealloc(storage, storageSize(newVectorLength)).getValue(storage)
    [all...]
  /frameworks/base/core/jni/android/graphics/
Canvas.cpp 591 ssize_t storageSize = ptCount * sizeof(SkPoint); // texs[]
593 storageSize += ptCount * sizeof(SkPoint); // storage for verts
595 storageSize += indexCount * sizeof(uint16_t); // indices[]
597 SkAutoMalloc storage(storageSize);
664 SkASSERT((char*)indexPtr - (char*)storage.get() == storageSize);
    [all...]

Completed in 2854 milliseconds