OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:NodeCache
(Results
1 - 2
of
2
) sorted by null
/external/v8/src/compiler/
node-cache.h
30
class
NodeCache
final {
32
explicit
NodeCache
(unsigned max = 256)
34
~
NodeCache
() {}
60
DISALLOW_COPY_AND_ASSIGN(
NodeCache
);
64
typedef
NodeCache
<int32_t> Int32NodeCache;
65
typedef
NodeCache
<int64_t> Int64NodeCache;
72
typedef
NodeCache
<RelocInt32Key> RelocInt32NodeCache;
73
typedef
NodeCache
<RelocInt64Key> RelocInt64NodeCache;
node-cache.cc
25
struct
NodeCache
<Key, Hash, Pred>::Entry {
32
bool
NodeCache
<Key, Hash, Pred>::Resize(Zone* zone) {
65
Node**
NodeCache
<Key, Hash, Pred>::Find(Zone* zone, Key key) {
103
void
NodeCache
<Key, Hash, Pred>::GetCachedNodes(ZoneVector<Node*>* nodes) {
115
template class V8_EXPORT_PRIVATE
NodeCache
<int32_t>;
116
template class V8_EXPORT_PRIVATE
NodeCache
<int64_t>;
118
template class V8_EXPORT_PRIVATE
NodeCache
<RelocInt32Key>;
119
template class V8_EXPORT_PRIVATE
NodeCache
<RelocInt64Key>;
Completed in 719 milliseconds