Lines Matching refs:current_value
960 Object current_value = holder->RawFastPropertyAt(isolate_, field_index);
961 DCHECK(current_value.IsHeapNumber(isolate_));
962 bits = HeapNumber::cast(current_value).value_as_bits(kRelaxedLoad);
974 Object current_value = holder->RawFastPropertyAt(isolate_, field_index);
975 if (current_value.IsUninitialized(isolate()) || current_value == value) {
978 return current_value.IsNumber(isolate_) && value.IsNumber(isolate_) &&
979 Object::SameNumberValue(current_value.Number(), value.Number());
999 Object current_value;
1002 current_value = dict.ValueAt(dictionary_entry());
1005 current_value = dict.ValueAt(dictionary_entry());
1008 if (current_value.IsUninitialized(isolate()) || current_value == value) {
1011 return current_value.IsNumber(isolate_) && value.IsNumber(isolate_) &&
1012 Object::SameNumberValue(current_value.Number(), value.Number());