Home | History | Annotate | Download | only in src

Lines Matching refs:source

2 // Use of this source code is governed by a BSD-style license that can be
16 int DescriptorLookupCache::Hash(Object* source, Name* name) {
20 static_cast<uint32_t>(reinterpret_cast<uintptr_t>(source)) >>
26 int DescriptorLookupCache::Lookup(Map* source, Name* name) {
27 int index = Hash(source, name);
29 if ((key.source == source) && (key.name == name)) return results_[index];
33 void DescriptorLookupCache::Update(Map* source, Name* name, int result) {
35 int index = Hash(source, name);
37 key.source = source;