Home | History | Annotate | Download | only in src

Lines Matching refs:key_index

901   // Loads the details for the entry with the given key_index.
904 Node* LoadDetailsByKeyIndex(Node* container, Node* key_index) {
908 return LoadAndUntagToWord32FixedArrayElement(container, key_index,
912 // Loads the value for the entry with the given key_index.
915 Node* LoadValueByKeyIndex(Node* container, Node* key_index) {
919 return LoadFixedArrayElement(container, key_index, kKeyToValueOffset);
922 // Stores the details for the entry with the given key_index.
925 void StoreDetailsByKeyIndex(Node* container, Node* key_index, Node* details) {
929 StoreFixedArrayElement(container, key_index, details, SKIP_WRITE_BARRIER,
933 // Stores the value for the entry with the given key_index.
935 void StoreValueByKeyIndex(Node* container, Node* key_index, Node* value) {
939 StoreFixedArrayElement(container, key_index, value, UPDATE_WRITE_BARRIER,