Home
last modified time | relevance | path

Searched defs:VectorType (Results 1 – 8 of 8) sorted by relevance

/arkcompiler/runtime_core/taihe/compiler/taihe/codegen/abi/
Danalyses.py278 def __init__(self, am: AnalysisManager, t: VectorType) -> None:
345 def visit_vector_type(self, t: VectorType) -> AbstractTypeABIInfo:
/arkcompiler/runtime_core/taihe/compiler/taihe/codegen/cpp/
Danalyses.py258 def __init__(self, am: AnalysisManager, t: VectorType) -> None:
392 def visit_vector_type(self, t: VectorType) -> AbstractTypeCppInfo:
/arkcompiler/runtime_core/libpandabase/utils/
Dsmall_vector.h87 … using VectorType = std::vector<T, typename AllocatorConfig<Allocator, T, use_allocator>::Adapter>; variable
Dbit_vector.h255 using VectorType = std::conditional_t<FixedSize, Span<WordType>, variable
/arkcompiler/runtime_core/static_core/libpandabase/utils/
Dsmall_vector.h80 … using VectorType = std::vector<T, typename AllocatorConfig<Allocator, T, USE_ALLOCATOR>::Adapter>; variable
Dbit_vector.h265 using VectorType = std::conditional_t<FIXED_SIZE, Span<WordType>, variable
/arkcompiler/runtime_core/taihe/compiler/taihe/semantics/
Dtypes.py215 class VectorType(GenericType): class
Dvisitor.py167 def visit_vector_type(self, t: "VectorType") -> T: