Home
last modified time | relevance | path

Searched refs:maybe_index (Results 1 – 6 of 6) sorted by relevance

/third_party/node/deps/v8/src/codegen/
Dexternal-reference-encoder.cc61 Maybe<uint32_t> maybe_index = map_->Get(address); in TryEncode() local
62 if (maybe_index.IsNothing()) return Nothing<Value>(); in TryEncode()
63 Value result(maybe_index.FromJust()); in TryEncode()
72 Maybe<uint32_t> maybe_index = map_->Get(address); in Encode() local
73 if (maybe_index.IsNothing()) { in Encode()
80 Value result(maybe_index.FromJust()); in Encode()
89 Maybe<uint32_t> maybe_index = map_->Get(address); in NameOfAddress() local
90 if (maybe_index.IsNothing()) return "<unknown>"; in NameOfAddress()
91 Value value(maybe_index.FromJust()); in NameOfAddress()
/third_party/node/deps/v8/src/utils/
Daddress-map.cc28 Maybe<uint32_t> maybe_index = map_->Get(heap_object); in RootIndexMap() local
30 if (maybe_index.IsJust()) { in RootIndexMap()
32 DCHECK_LT(maybe_index.FromJust(), index); in RootIndexMap()
Daddress-map.h63 Maybe<uint32_t> maybe_index = map_->Get(obj); in Lookup() local
64 if (maybe_index.IsJust()) { in Lookup()
65 *out_root_list = static_cast<RootIndex>(maybe_index.FromJust()); in Lookup()
/third_party/node/deps/v8/src/builtins/
Dbuiltins-sharedarraybuffer.cc138 Maybe<size_t> maybe_index = ValidateAtomicAccess(isolate, sta, index); in BUILTIN() local
139 if (maybe_index.IsNothing()) return ReadOnlyRoots(isolate).exception(); in BUILTIN()
140 size_t i = maybe_index.FromJust(); in BUILTIN()
197 Maybe<size_t> maybe_index = ValidateAtomicAccess(isolate, sta, index); in DoWait() local
198 if (maybe_index.IsNothing()) return ReadOnlyRoots(isolate).exception(); in DoWait()
199 size_t i = maybe_index.FromJust(); in DoWait()
/third_party/node/deps/v8/src/objects/
Djs-function.cc1022 Handle<Object> maybe_index = JSReceiver::GetDataProperty( in GetDerivedMap() local
1025 int index = maybe_index->IsSmi() ? Smi::ToInt(*maybe_index) in GetDerivedMap()
/third_party/node/deps/v8/src/ic/
Dic.cc1567 intptr_t maybe_index; in Load() local
1570 KeyType key_type = TryConvertKey(key, isolate(), &maybe_index, &maybe_name); in Load()
1576 IntPtrKeyToSize(maybe_index, Handle<HeapObject>::cast(object), in Load()
2510 intptr_t maybe_index; in Store() local
2512 KeyType key_type = TryConvertKey(key, isolate(), &maybe_index, &maybe_name); in Store()
2555 key_is_valid_index = IntPtrKeyToSize(maybe_index, receiver, &index); in Store()