Home
last modified time | relevance | path

Searched refs:prefix_hash (Results 1 - 2 of 2) sorted by relevance

/third_party/node/deps/v8/src/wasm/
H A Dwasm-engine.h72 size_t prefix_hash; member
77 DCHECK_IMPLIES(eq, prefix_hash == other.prefix_hash); in operator ==()
82 if (prefix_hash != other.prefix_hash) { in operator <()
85 return prefix_hash < other.prefix_hash; in operator <()
93 DCHECK_EQ(prefix_hash, other.prefix_hash); in operator <()
104 bool GetStreamingCompilationOwnership(size_t prefix_hash);
[all...]
H A Dwasm-engine.cc188 size_t prefix_hash = PrefixHash(wire_bytes); in MaybeGetNativeModule() local
189 NativeModuleCache::Key key{prefix_hash, wire_bytes}; in MaybeGetNativeModule()
219 bool NativeModuleCache::GetStreamingCompilationOwnership(size_t prefix_hash) { in GetStreamingCompilationOwnership() argument
221 auto it = map_.lower_bound(Key{prefix_hash, {}}); in GetStreamingCompilationOwnership()
222 if (it != map_.end() && it->first.prefix_hash == prefix_hash) { in GetStreamingCompilationOwnership()
224 PrefixHash(it->first.bytes) == prefix_hash); in GetStreamingCompilationOwnership()
227 Key key{prefix_hash, {}}; in GetStreamingCompilationOwnership()
233 void NativeModuleCache::StreamingCompilationFailed(size_t prefix_hash) { in StreamingCompilationFailed() argument
235 Key key{prefix_hash, {}}; in StreamingCompilationFailed()
247 size_t prefix_hash = PrefixHash(native_module->wire_bytes()); Update() local
280 size_t prefix_hash = PrefixHash(native_module->wire_bytes()); Erase() local
1251 GetStreamingCompilationOwnership(size_t prefix_hash) GetStreamingCompilationOwnership() argument
1263 StreamingCompilationFailed(size_t prefix_hash) StreamingCompilationFailed() argument
[all...]

Completed in 3 milliseconds