Home
last modified time | relevance | path

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

/external/pdfium/core/fxcodec/gif/
Dcfx_lzwdecompressor.cpp144 memset(code_table_, 0, sizeof(code_table_)); in ClearTable()
146 code_table_[i].suffix = static_cast<uint8_t>(i); in ClearTable()
155 code_table_[code_next_].prefix = prefix_code; in AddCode()
156 code_table_[code_next_].suffix = append_char; in AddCode()
168 if (code == code_table_[code].prefix || in DecodeString()
172 decompressed_[decompressed_next_++] = code_table_[code].suffix; in DecodeString()
173 code = code_table_[code].prefix; in DecodeString()
Dcfx_lzwdecompressor.h61 CodeEntry code_table_[GIF_MAX_LZW_CODE]; variable
/external/v8/src/wasm/
Dwasm-serialization.cc291 Vector<WasmCode* const> code_table_; member in v8::internal::wasm::NativeModuleSerializer
297 : native_module_(module), code_table_(code_table), write_called_(false) { in NativeModuleSerializer()
316 for (WasmCode* code : code_table_) { in Measure()
442 for (WasmCode* code : code_table_) { in Write()
450 code_table_(native_module->SnapshotCodeTable()) {} in WasmSerializer()
453 NativeModuleSerializer serializer(native_module_, VectorOf(code_table_)); in GetSerializedNativeModuleSize()
458 NativeModuleSerializer serializer(native_module_, VectorOf(code_table_)); in SerializeNativeModule()
Dwasm-serialization.h45 std::vector<WasmCode*> code_table_; variable
Dwasm-code-manager.cc821 code_table_ = in NativeModule()
839 memcpy(new_table.get(), code_table_.get(), in ReserveCodeTableForTesting()
842 code_table_ = std::move(new_table); in ReserveCodeTableForTesting()
998 DCHECK_NULL(code_table_[slot_index]); in UseLazyStub()
1138 WasmCode* prior_code = code_table_[slot_idx]; in PublishCodeLocked()
1156 code_table_[slot_idx] = code.get(); in PublishCodeLocked()
1205 WasmCode** start = code_table_.get(); in SnapshotCodeTable()
1212 WasmCode* code = code_table_[declared_function_index(module(), index)]; in GetCode()
1219 return code_table_[declared_function_index(module(), index)] != nullptr; in HasCode()
1224 return code_table_[declared_function_index(module(), index)] != nullptr && in HasCodeWithTier()
[all …]
Dwasm-code-manager.h777 std::unique_ptr<WasmCode*[]> code_table_; variable