Lines Matching defs:value

505   // an entry with zero value. Otherwise it's impossible to tell if
507 // having the value of zero.
531 if (to_entry->value != nullptr) {
534 // value in addr field. It is bad because later at RemoveDeadEntries
538 static_cast<int>(reinterpret_cast<intptr_t>(to_entry->value));
553 to_entry->value = from_value;
568 int entry_index = static_cast<int>(reinterpret_cast<intptr_t>(entry->value));
581 if (entry->value != nullptr) {
583 static_cast<int>(reinterpret_cast<intptr_t>(entry->value));
593 entry->value = reinterpret_cast<void*>(entries_.size());
613 {addr, reinterpret_cast<size_t>(entry->value)});
615 result.first->second = reinterpret_cast<size_t>(entry->value);
723 entry->value = reinterpret_cast<void*>(first_free_entry);
1262 Object value = table.get(value_index);
1264 SetWeakReference(entry, value_index, value,
1267 HeapEntry* value_entry = GetEntry(value);
1271 "part of key (%s @%u) -> value (%s @%u) pair in WeakMap (table @%u)",
1541 SetInternalReference(entry, "value", cell.value(), Cell::kValueOffset);
1547 SetInternalReference(entry, "value", feedback_cell.value(),
1553 SetInternalReference(entry, "value", cell.value(),
1573 HeapEntry* entry, ArrayBoilerplateDescription value) {
1574 FixedArrayBase constant_elements = value.constant_elements();
1581 HeapEntry* entry, RegExpBoilerplateDescription value) {
1582 TagObject(value.data(), "(RegExp data)", HeapEntry::kCode);
1658 double double_value = HeapNumber::cast(number).value();
1667 entry->SetNamedReference(HeapGraphEdge::kInternal, "value", child_entry,
1758 Object value = js_obj.RawFastPropertyAt(field_index);
1762 SetDataOrAccessorPropertyReference(details.kind(), entry, k, value,
1781 Object value = cell.value();
1783 SetDataOrAccessorPropertyReference(details.kind(), entry, name, value);
1795 Object value = dictionary.ValueAt(i);
1798 value);
1806 Object value = dictionary.ValueAt(i);
1809 value);
2402 Node* V8Node(const v8::Local<v8::Value>& value) final {
2403 Handle<Object> object = v8::Utils::OpenHandle(*value);
2759 if (cache_entry->value == nullptr) {
2760 cache_entry->value = reinterpret_cast<void*>(next_string_id_++);
2762 return static_cast<int>(reinterpret_cast<intptr_t>(cache_entry->value));
2786 static int utoa_impl(T value, const base::Vector<char>& buffer,
2790 T t = value;
2798 int last_digit = static_cast<int>(value % 10);
2800 value /= 10;
2801 } while (value);
2806 static int utoa(T value, const base::Vector<char>& buffer, int buffer_pos) {
2807 typename ToUnsigned<sizeof(value)>::Type unsigned_value = value;
2808 STATIC_ASSERT(sizeof(value) == sizeof(unsigned_value));
3152 int index = static_cast<int>(reinterpret_cast<uintptr_t>(entry->value));