Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:import_table
(Results
1 - 7
of
7
) sorted by relevance
/third_party/node/deps/v8/src/wasm/
H
A
D
module-instantiate.cc
449
sanitized_imports_.reserve(module_->
import_table
.size());
in InstanceBuilder()
458
if (!module_->
import_table
.empty() && ffi_.is_null()) {
in Build()
651
if (!module_->
import_table
.empty()) {
in Build()
987
module_->
import_table
[index].kind == kExternalGlobal &&
in LookupImportAsm()
1056
for (size_t index = 0; index < module_->
import_table
.size(); ++index) {
in SanitizeImports()
1057
const WasmImport& import = module_->
import_table
[index];
in SanitizeImports()
1082
DCHECK_EQ(module_->
import_table
.size(), sanitized_imports_.size());
in FindImportedMemory()
1083
for (size_t index = 0; index < module_->
import_table
.size(); index++) {
in FindImportedMemory()
1084
WasmImport import = module_->
import_table
[index];
in FindImportedMemory()
1569
int num_imports = static_cast<int>(module_->
import_table
in CompileImportWrappers()
[all...]
H
A
D
wasm-module.cc
369
int num_imports = static_cast<int>(module->
import_table
.size());
in GetImports()
380
const WasmImport& import = module->
import_table
[index];
in GetImports()
630
VectorSize(module->tables) + VectorSize(module->
import_table
) +
in EstimateStoredSize()
H
A
D
wasm-module.h
510
std::vector<WasmImport>
import_table
;
H
A
D
module-decoder.cc
778
module_->
import_table
.reserve(import_table_count);
in DecodeImportSection()
783
module_->
import_table
.push_back({
in DecodeImportSection()
789
WasmImport* import = &module_->
import_table
.back();
in DecodeImportSection()
H
A
D
c-api.cc
1156
const std::vector<i::wasm::WasmImport>&
import_table
= module->
import_table
;
variable
1157
size_t size =
import_table
.size();
1160
const i::wasm::WasmImport& imp =
import_table
[i];
H
A
D
wasm-debug.cc
182
for (auto imp : native_module_->module()->
import_table
) {
in GetImportName()
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/
H
A
D
WasmTranslator.cpp
1099
const auto &Target = Module->
import_table
[Index];
in CallImport()
1505
LOG(out << " import table size: " << Module->
import_table
.size()
in translate()
1528
for (const auto Import : Module->
import_table
) {
in translate()
Completed in 22 milliseconds