OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:m_tableSize
(Results
1 - 5
of
5
) sorted by null
/external/webkit/Source/WebKit2/Shared/
VisitedLinkTable.cpp
36
:
m_tableSize
(0)
60
m_tableSize
= m_sharedMemory->size() / sizeof(LinkHash);
61
ASSERT(isPowerOf2(
m_tableSize
));
63
m_tableSizeMask =
m_tableSize
- 1;
VisitedLinkTable.h
54
unsigned
m_tableSize
;
/external/webkit/Source/WebKit2/UIProcess/
VisitedLinkProvider.h
57
unsigned
m_tableSize
;
VisitedLinkProvider.cpp
45
,
m_tableSize
(0)
113
unsigned currentTableSize =
m_tableSize
;
132
m_tableSize
= newTableSize;
/external/webkit/Source/JavaScriptCore/wtf/
HashTable.h
300
deallocateTable(m_table,
m_tableSize
);
311
iterator end() { return makeKnownGoodIterator(m_table +
m_tableSize
); }
313
const_iterator end() const { return makeKnownGoodConstIterator(m_table +
m_tableSize
); }
316
int capacity() const { return
m_tableSize
; }
378
bool shouldExpand() const { return (m_keyCount + m_deletedCount) * m_maxLoad >=
m_tableSize
; }
379
bool mustRehashInPlace() const { return m_keyCount * m_minLoad <
m_tableSize
* 2; }
380
bool shouldShrink() const { return m_keyCount * m_minLoad <
m_tableSize
&&
m_tableSize
> m_minTableSize; }
382
void shrink() { rehash(
m_tableSize
/ 2); }
393
iterator makeIterator(ValueType* pos) { return iterator(this, pos, m_table +
m_tableSize
); }
[
all
...]
Completed in 116 milliseconds