Home
last modified time | relevance | path

Searched defs:ValType (Results 1 – 25 of 254) sorted by relevance

1234567891011

/dports/devel/sentry-cli/sentry-cli-1.71.0/cargo-crates/walrus-0.19.0/src/
H A Dty.rs81 pub(crate) fn new(id: TypeId, params: Box<[ValType]>, results: Box<[ValType]>) -> Type { in new()
112 pub fn params(&self) -> &[ValType] { in params()
118 pub fn results(&self) -> &[ValType] { in results()
138 pub enum ValType { enum
155 impl ValType { implementation
156 pub(crate) fn from_wasmparser_type(ty: wasmparser::Type) -> Result<Box<[ValType]>> { in from_wasmparser_type()
164 pub(crate) fn parse(input: &wasmparser::Type) -> Result<ValType> { in parse()
190 impl fmt::Display for ValType { implementation
208 impl Emit for ValType { implementation
/dports/devel/sentry-cli/sentry-cli-1.71.0/cargo-crates/walrus-0.19.0/src/module/
H A Dtypes.rs28 pub fn params_results(&self, id: TypeId) -> (&[ValType], &[ValType]) { in params_results()
34 pub fn params(&self, id: TypeId) -> &[ValType] { in params()
39 pub fn results(&self, id: TypeId) -> &[ValType] { in results()
74 pub fn add(&mut self, params: &[ValType], results: &[ValType]) -> TypeId { in add()
92 pub fn find(&self, params: &[ValType], results: &[ValType]) -> Option<TypeId> { in find()
H A Dglobals.rs61 pub fn add_import(&mut self, ty: ValType, mutable: bool, import_id: ImportId) -> GlobalId { in add_import()
72 pub fn add_local(&mut self, ty: ValType, mutable: bool, init: InitExpr) -> GlobalId { in add_local()
/dports/net/wangle/wangle-2021.12.27.00/wangle/client/persistence/test/
H A DFilePersistentCacheTest.cpp37 using ValType = string; in TYPED_TEST() typedef
45 using ValType = double; in TYPED_TEST() typedef
53 using ValType = list<string>; in TYPED_TEST() typedef
62 using ValType = map<string, list<string>>; in TYPED_TEST() typedef
73 using ValType = map<string, list<string>>; in TYPED_TEST() typedef
105 using ValType = string; in TYPED_TEST() typedef
111 using ValType = map<string, list<string>>; in TYPED_TEST() typedef
139 using ValType = string; in TYPED_TEST() typedef
145 using ValType = map<string, list<string>>; in TYPED_TEST() typedef
179 using ValType = string; in TYPED_TEST() typedef
[all …]
/dports/sysutils/vector/lucet-d4fc14a03bdb99ac83173d27fddf1aca48412a86/wasmtime/crates/wasmtime/src/
H A Dtypes.rs53 pub enum ValType { enum
70 impl fmt::Display for ValType { implementation
84 impl ValType { impl
113 pub(crate) fn from_wasmtime_type(ty: ir::Type) -> Option<ValType> { in from_wasmtime_type()
240 pub fn new(params: Box<[ValType]>, results: Box<[ValType]>) -> FuncType { in new()
245 pub fn params(&self) -> &[ValType] { in params()
250 pub fn results(&self) -> &[ValType] { in results()
328 pub fn new(content: ValType, mutability: Mutability) -> GlobalType { in new()
336 pub fn content(&self) -> &ValType { in content()
374 pub fn new(element: ValType, limits: Limits) -> TableType { in new()
[all …]
H A Dfunc.rs760 fn push(dst: &mut Vec<ValType>); in push()
770 fn push(_dst: &mut Vec<ValType>) {} in push()
781 fn push(dst: &mut Vec<ValType>) { in push()
806 fn push(dst: &mut Vec<ValType>) { in push()
823 fn push(dst: &mut Vec<ValType>) { in push()
848 fn push(dst: &mut Vec<ValType>) { in push()
865 fn push(dst: &mut Vec<ValType>) { in push()
890 fn push(dst: &mut Vec<ValType>) { in push()
926 fn push(dst: &mut Vec<ValType>); in push()
937 fn push(dst: &mut Vec<ValType>) { in push()
[all …]
/dports/math/gecode/gecode-0916a1a/gecode/int/branch/
H A Dtraits.hpp47 typedef int ValType; typedef in Gecode::BranchTraits
63 typedef int ValType; typedef in Gecode::BranchTraits
/dports/lang/rust/rustc-1.58.1-src/src/tools/clippy/tests/ui/
H A Dneedless_arbitrary_self_type.rs6 pub enum ValType { enum
11 impl ValType { impl
/dports/devel/sentry-cli/sentry-cli-1.71.0/cargo-crates/walrus-0.19.0/src/module/functions/local_function/
H A Dcontext.rs83 start_types: Box<[ValType]>, in push_control()
84 end_types: Box<[ValType]>, in push_control()
164 start_types: Box<[ValType]>, in impl_push_control()
165 end_types: Box<[ValType]>, in impl_push_control()
192 start_types: Box<[ValType]>, in impl_push_control_with_ty()
193 end_types: Box<[ValType]>, in impl_push_control_with_ty()
/dports/www/firefox/firefox-99.0/third_party/rust/wasm-encoder/src/
H A Delements.rs186 element_type: ValType, in active()
202 pub fn passive<'a>(&mut self, element_type: ValType, elements: Elements<'a>) -> &mut Self { in passive()
213 pub fn declared<'a>(&mut self, element_type: ValType, elements: Elements<'a>) -> &mut Self { in declared()
/dports/math/gecode/gecode-0916a1a/gecode/set/branch/
H A Dtraits.hpp47 typedef int ValType; typedef in Gecode::BranchTraits
/dports/math/gecode/gecode-0916a1a/gecode/float/branch/
H A Dtraits.hpp47 typedef FloatNumBranch ValType; typedef in Gecode::BranchTraits
/dports/science/PETSc/petsc-3.14.1/include/petsc/private/
H A Dhashmap.h434 #define PETSC_HASH_MAP(HashT, KeyType, ValType, HashFunc, EqualFunc, DefaultValue) … argument
/dports/cad/gmsh/gmsh-4.9.2-source/Solver/
H A DfunctionSpace.h23 typedef T ValType; typedef
/dports/astro/gpstk/GPSTk-8.0.0/core/lib/Utilities/
H A DEnumIterator.hpp71 typedef typename std::underlying_type<C>::type ValType; typedef in gpstk::EnumIterator
/dports/sysutils/vector/lucet-d4fc14a03bdb99ac83173d27fddf1aca48412a86/wasmtime/crates/c-api/src/types/
H A Dval.rs31 pub(crate) fn into_valtype(kind: wasm_valkind_t) -> ValType { in into_valtype()
/dports/devel/tinygo/tinygo-0.14.1/llvm-project/llvm/lib/Target/WebAssembly/
H A DWebAssemblyMCInstLower.cpp167 SmallVector<wasm::ValType, 1> &&Returns, in lowerTypeIndexOperand()
/dports/devel/llvm-cheri/llvm-project-37c49ff00e3eadce5d8703fdc4497f28458c64a8/llvm/lib/Target/WebAssembly/
H A DWebAssemblyMCInstLower.cpp165 SmallVector<wasm::ValType, 1> &&Returns, in lowerTypeIndexOperand()
/dports/devel/llvm10/llvm-10.0.1.src/lib/Target/WebAssembly/
H A DWebAssemblyMCInstLower.cpp167 SmallVector<wasm::ValType, 1> &&Returns, in lowerTypeIndexOperand()
/dports/devel/llvm11/llvm-11.0.1.src/lib/Target/WebAssembly/
H A DWebAssemblyMCInstLower.cpp165 SmallVector<wasm::ValType, 1> &&Returns, in lowerTypeIndexOperand()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/swiftshader/third_party/llvm-10.0/llvm/lib/Target/WebAssembly/
H A DWebAssemblyMCInstLower.cpp167 SmallVector<wasm::ValType, 1> &&Returns, in lowerTypeIndexOperand()
/dports/audio/muse-sequencer/muse-4.0.0/src/muse/components/
H A Dnoteinfo.h63 enum ValType {VAL_TIME, VAL_LEN, VAL_VELON, VAL_VELOFF, VAL_PITCH }; enum
/dports/devel/intel-graphics-compiler/intel-graphics-compiler-igc-1.0.9636/IGC/Compiler/
H A DHandleFRemInstructions.cpp43 auto ValType = Val1->getType(); in visitFRem() local
/dports/security/clamav-lts/clamav-0.103.5/libclamav/c++/llvm/include/llvm/Support/
H A DPassNameParser.h90 typedef PassNameParser::OptionInfo ValType; in ValLessThan() typedef
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/llvm/llvm/lib/Target/WebAssembly/
H A DWebAssemblyMCInstLower.cpp170 SmallVector<wasm::ValType, 1> &&Returns, in lowerTypeIndexOperand()

1234567891011