Home | History | Annotate | Download | only in ic

Lines Matching refs:primary

61   // Compute the primary entry.
63 Entry* primary = entry(primary_, primary_offset);
64 Object* old_handler = primary->value;
66 // If the primary entry has useful data in it, we retire it to the
69 Map* old_map = primary->map;
70 int seed = PrimaryOffset(primary->key, old_map);
71 int secondary_offset = SecondaryOffset(primary->key, seed);
73 *secondary = *primary;
76 // Update primary cache.
77 primary->key = name;
78 primary->value = handler;
79 primary->map = map;
87 Entry* primary = entry(primary_, primary_offset);
88 if (primary->key == name && primary->map == map) {
89 return primary->value;
140 // Lookup in primary table and skip duplicates.