コード例 #1
0
ファイル: Structure.cpp プロジェクト: dog-god/iptv
PropertyOffset Structure::addPropertyWithoutTransition(JSGlobalData& globalData, PropertyName propertyName, unsigned attributes, JSCell* specificValue)
{
    ASSERT(!m_enumerationCache);

    if (m_specificFunctionThrashCount == maxSpecificFunctionThrashCount)
        specificValue = 0;

    materializePropertyMapIfNecessaryForPinning(globalData);
    
    pin();

    PropertyOffset offset = putSpecificValue(globalData, propertyName, attributes, specificValue);
    if (outOfLineSize() > outOfLineCapacity())
        growOutOfLineCapacity();
    return offset;
}
コード例 #2
0
ファイル: Structure.cpp プロジェクト: jbat100/webkit
size_t Structure::suggestedNewOutOfLineStorageCapacity()
{
    return nextOutOfLineStorageCapacity(outOfLineCapacity());
}