Searched refs:HValueMapListElement (Results 1 - 2 of 2) sorted by relevance

/external/v8/src/
H A Dhydrogen.h965 struct HValueMapListElement { struct in class:v8::internal::HValueMap
985 HValueMapListElement* array_; // Primary store - contains the first value
987 HValueMapListElement* lists_; // The linked lists containing hash collisions.
H A Dhydrogen.cc1033 array_(ZONE->NewArray<HValueMapListElement>(other->array_size_)),
1034 lists_(ZONE->NewArray<HValueMapListElement>(other->lists_size_)),
1036 memcpy(array_, other->array_, array_size_ * sizeof(HValueMapListElement));
1037 memcpy(lists_, other->lists_, lists_size_ * sizeof(HValueMapListElement));
1112 HValueMapListElement* new_array =
1113 ZONE->NewArray<HValueMapListElement>(new_size);
1114 memset(new_array, 0, sizeof(HValueMapListElement) * new_size);
1116 HValueMapListElement* old_array = array_;
1150 HValueMapListElement* new_lists =
1151 ZONE->NewArray<HValueMapListElement>(new_siz
[all...]

Completed in 48 milliseconds