Home
last modified time | relevance | path

Searched refs:complex_type (Results 1 – 6 of 6) sorted by relevance

/NextBSD/contrib/gcc/
HDcalls.c3181 tree complex_type; in split_complex_values() local
3183 complex_type = TREE_TYPE (complex_value); in split_complex_values()
3184 if (!complex_type) in split_complex_values()
3187 if (TREE_CODE (complex_type) == COMPLEX_TYPE in split_complex_values()
3188 && targetm.calls.split_complex_arg (complex_type)) in split_complex_values()
3193 subtype = TREE_TYPE (complex_type); in split_complex_values()
3234 tree complex_type = TREE_VALUE (p); in split_complex_types() local
3236 if (TREE_CODE (complex_type) == COMPLEX_TYPE in split_complex_types()
3237 && targetm.calls.split_complex_arg (complex_type)) in split_complex_types()
3242 TREE_VALUE (p) = TREE_TYPE (complex_type); in split_complex_types()
HDtree.def191 DEFTREECODE (COMPLEX_TYPE, "complex_type", tcc_type, 0)
/NextBSD/contrib/binutils/binutils/
HDdebug.h196 bfd_boolean (*complex_type) (void *, unsigned int); member
HDdebug.c2496 return (*fns->complex_type) (fhandle, type->size); in debug_write_type()
/NextBSD/contrib/gdb/gdb/
HDstabsread.c3884 struct type *complex_type = in read_range_type() local
3886 TYPE_TARGET_TYPE (complex_type) = float_type; in read_range_type()
3887 return complex_type; in read_range_type()
/NextBSD/contrib/llvm/tools/lldb/source/Symbol/
HDClangASTType.cpp1379 …const clang::ComplexType *complex_type = llvm::dyn_cast<clang::ComplexType>(qual_type->getCanonica… in GetTypeInfo() local
1380 if (complex_type) in GetTypeInfo()
1382 clang::QualType complex_element_type (complex_type->getElementType()); in GetTypeInfo()
2285 const clang::ComplexType *complex_type = qual_type->getAsComplexIntegerType(); in GetEncoding() local
2286 if (complex_type) in GetEncoding()
2287 … encoding = ClangASTType(m_ast, complex_type->getElementType()).GetEncoding(count); in GetEncoding()