Searched refs:code_table_ (Results 1 – 6 of 6) sorted by relevance
/external/pdfium/core/fxcodec/gif/ |
D | cfx_lzwdecompressor.cpp | 144 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()
|
D | cfx_lzwdecompressor.h | 61 CodeEntry code_table_[GIF_MAX_LZW_CODE]; variable
|
/external/v8/src/wasm/ |
D | wasm-serialization.cc | 291 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()
|
D | wasm-serialization.h | 45 std::vector<WasmCode*> code_table_; variable
|
D | wasm-code-manager.cc | 821 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 …]
|
D | wasm-code-manager.h | 777 std::unique_ptr<WasmCode*[]> code_table_; variable
|