Home
last modified time | relevance | path

Searched refs:IsScalarType (Results 1 – 11 of 11) sorted by relevance

/llvm-project-15.0.7/libc/src/string/memory_utils/
H A Dbackend_x86.h43 cpp::EnableIfType<Scalar64BitBackend::IsScalarType<T>, bool> = true>
50 cpp::EnableIfType<Scalar64BitBackend::IsScalarType<T>, bool> = true>
57 cpp::EnableIfType<Scalar64BitBackend::IsScalarType<T>, bool> = true>
64 cpp::EnableIfType<Scalar64BitBackend::IsScalarType<T>, bool> = true>
71 cpp::EnableIfType<Scalar64BitBackend::IsScalarType<T>, bool> = true>
79 cpp::EnableIfType<!Scalar64BitBackend::IsScalarType<T>, bool> = true>
85 cpp::EnableIfType<!Scalar64BitBackend::IsScalarType<T>, bool> = true>
89 template <typename T, cpp::EnableIfType<!Scalar64BitBackend::IsScalarType<T>,
94 template <typename T, cpp::EnableIfType<!Scalar64BitBackend::IsScalarType<T>,
98 template <typename T, cpp::EnableIfType<!Scalar64BitBackend::IsScalarType<T>,
H A Dbackend_scalar.h20 static constexpr bool IsScalarType = member
26 static_assert(IsScalarType<T>); in load()
34 static_assert(IsScalarType<T>); in store()
41 static_assert(IsScalarType<T>); in splat()
46 static_assert(IsScalarType<T>); in notEquals()
H A Dbackend_aarch64.h25 cpp::EnableIfType<Scalar64BitBackend::IsScalarType<T>, bool> = true>
/llvm-project-15.0.7/lldb/source/Symbol/
H A DCompilerType.cpp223 bool CompilerType::IsScalarType() const { in IsScalarType() function in CompilerType
227 return m_type_system->IsScalarType(m_type); in IsScalarType()
246 return IsPointerType() && GetPointeeType().IsScalarType(); in IsPointerToScalarType()
252 return element_type.IsScalarType(); in IsArrayOfScalarType()
/llvm-project-15.0.7/lldb/include/lldb/Symbol/
H A DCompilerType.h143 bool IsScalarType() const;
H A DTypeSystem.h186 virtual bool IsScalarType(lldb::opaque_compiler_type_t type) = 0;
/llvm-project-15.0.7/lldb/include/lldb/Core/
H A DValueObject.h386 virtual bool IsScalarType() { return GetCompilerType().IsScalarType(); } in IsScalarType() function
/llvm-project-15.0.7/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.h625 bool IsScalarType(lldb::opaque_compiler_type_t type) override;
H A DTypeSystemClang.cpp3664 bool TypeSystemClang::IsScalarType(lldb::opaque_compiler_type_t type) { in IsScalarType() function in TypeSystemClang
/llvm-project-15.0.7/lldb/source/Target/
H A DStackFrame.cpp901 } else if (valobj_sp->GetCompilerType().IsScalarType()) { in GetValueForVariableExpressionPath()
/llvm-project-15.0.7/lldb/source/Core/
H A DValueObject.cpp1648 if (IsScalarType()) { in GetSyntheticBitFieldChild()