Home
last modified time | relevance | path

Searched refs:usedSize (Results 1 – 2 of 2) sorted by relevance

/external/svox/pico/lib/
Dpicoos.c268 picoos_ptrdiff_t usedSize; member
384 this->usedSize = 0; in picoos_newMemoryManager()
483 *usedBytes = (picoos_int32) this->usedSize; in picoos_getMemUsage()
484 *incrUsedBytes = (picoos_int32) (this->usedSize - this->prevUsedSize); in picoos_getMemUsage()
487 this->prevUsedSize = this->usedSize; in picoos_getMemUsage()
550 this->usedSize += cellSize; in picoos_allocate()
551 if (this->usedSize > this->maxUsedSize) { in picoos_allocate()
552 this->maxUsedSize = this->usedSize; in picoos_allocate()
574 this->usedSize -= c->size; in picoos_deallocate()
/external/webkit/Source/WebCore/platform/graphics/ca/
DGraphicsLayerCA.cpp956 FloatSize usedSize = m_usingTiledLayer ? constrainedSize() : m_size; in updateLayerPosition() local
959 FloatPoint posPoint(m_position.x() + m_anchorPoint.x() * usedSize.width(), in updateLayerPosition()
960 m_position.y() + m_anchorPoint.y() * usedSize.height()); in updateLayerPosition()