Changeset 10634 in webkit for trunk/JavaScriptCore/kjs/property_map.cpp
- Timestamp:
- Sep 27, 2005, 3:37:33 PM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/property_map.cpp
r10563 r10634 22 22 #include "property_map.h" 23 23 24 #include "fast_malloc.h"24 #include <kxmlcore/FastMalloc.h> 25 25 #include "object.h" 26 26 #include "protect.h" … … 123 123 ++minimumKeysToProcess; 124 124 } 125 kjs_fast_free(_table);125 fastFree(_table); 126 126 } 127 127 … … 425 425 int oldTableKeyCount = oldTable ? oldTable->keyCount : 0; 426 426 427 _table = (Table *) kjs_fast_calloc(1, sizeof(Table) + (newTableSize - 1) * sizeof(Entry) );427 _table = (Table *)fastCalloc(1, sizeof(Table) + (newTableSize - 1) * sizeof(Entry) ); 428 428 _table->size = newTableSize; 429 429 _table->sizeMask = newTableSize - 1; … … 459 459 _table->lastIndexUsed = lastIndexUsed; 460 460 461 kjs_fast_free(oldTable);461 fastFree(oldTable); 462 462 463 463 checkConsistency();
Note:
See TracChangeset
for help on using the changeset viewer.