Lines Matching defs:key
1624 JSToWasmWrapperKey key(function.imported, *function.sig);
1625 if (keys.insert(key).second) {
1650 WasmImportWrapperCache::CacheKey key(
1653 auto it = keys.insert(key);
1657 (*native_module->import_wrapper_cache())[key] = nullptr;
1912 // cache key. When we eventually install the module in the cache, the wire
1913 // bytes of the temporary key and the new key have the same base pointer and
3704 WasmImportWrapperCache::CacheKey key(
3707 // If two imported functions have the same key, only one of them should
3709 // we compile a wrapper for this key here.
3710 DCHECK_NULL((*cache)[key]);
3711 (*cache)[key] = code.get();
3862 while (base::Optional<JSToWasmWrapperKey> key = queue_->pop()) {
3863 JSToWasmWrapperCompilationUnit* unit = (*compilation_units_)[*key].get();
3900 JSToWasmWrapperKey key(function.imported, *function.sig);
3901 if (queue.insert(key)) {
3905 compilation_units.emplace(key, std::move(unit));
3934 JSToWasmWrapperKey key = pair.first;
3938 int wrapper_index = GetExportWrapperIndex(module, &key.second, key.first);
3952 WasmImportWrapperCache::CacheKey key(kind, sig, expected_arity, suspend);
3953 DCHECK_NULL((*cache_scope)[key]);
3971 (*cache_scope)[key] = published_code;