Searched defs:is_complex (Results 1 - 6 of 6) sorted by relevance

/external/lldb/source/Plugins/ABI/MacOSX-arm/
H A DABIMacOSX_arm.cpp527 bool is_complex; local
566 else if (clang_type.IsFloatingPointType (count, is_complex))
568 if (is_complex)
/external/chromium_org/third_party/cython/src/Cython/Utility/
H A DBuffer.c91 int is_complex; member in struct:__anon11733
238 ctx->is_complex = 0;
279 static const char* __Pyx_BufFmt_DescribeTypeChar(char ch, int is_complex) { argument
292 case 'f': return (is_complex ? "'complex float'" : "'float'");
293 case 'd': return (is_complex ? "'complex double'" : "'double'");
294 case 'g': return (is_complex ? "'complex long double'" : "'long double'");
304 static size_t __Pyx_BufFmt_TypeCharToStandardSize(char ch, int is_complex) { argument
310 case 'f': return (is_complex ? 8 : 4);
311 case 'd': return (is_complex ? 16 : 8);
323 static size_t __Pyx_BufFmt_TypeCharToNativeSize(char ch, int is_complex) { argument
354 __Pyx_BufFmt_TypeCharToAlignment(char ch, CYTHON_UNUSED int is_complex) argument
388 __Pyx_BufFmt_TypeCharToPadding(char ch, CYTHON_UNUSED int is_complex) argument
407 __Pyx_BufFmt_TypeCharToGroup(char ch, int is_complex) argument
[all...]
/external/lldb/source/Plugins/ABI/MacOSX-i386/
H A DABIMacOSX_i386.cpp689 bool is_complex; local
728 else if (clang_type.IsFloatingPointType (count, is_complex))
730 if (is_complex)
/external/lldb/source/Plugins/ABI/SysV-x86_64/
H A DABISysV_x86_64.cpp580 bool is_complex; local
605 else if (clang_type.IsFloatingPointType (count, is_complex))
607 if (is_complex)
880 bool is_complex; local
933 else if (field_clang_type.IsFloatingPointType (count, is_complex))
/external/chromium_org/third_party/cython/src/Cython/Compiler/
H A DPyrexTypes.py147 # is_complex boolean Is a C complex type
203 is_complex = 0 variable in class:PyrexType
270 return (self.is_int or self.is_float or self.is_complex or self.is_pyobject or
295 if base_type.is_complex or is_fused:
331 assert not base_type.is_complex
391 elif base_type.is_complex:
413 elif base_type.is_complex:
1656 return (src_type.is_numeric and not src_type.is_complex) or src_type is error_type
1663 is_complex = 1 variable in class:CComplexType
1726 if (not src_type.is_complex an
[all...]
/external/lldb/source/Symbol/
H A DClangASTType.cpp591 ClangASTType::IsFloatingPointType (uint32_t &count, bool &is_complex) const
603 is_complex = false;
609 if (ClangASTType (m_ast, CT->getElementType()).IsFloatingPointType (count, is_complex))
612 is_complex = true;
618 if (ClangASTType (m_ast, VT->getElementType()).IsFloatingPointType (count, is_complex))
621 is_complex = false;
627 is_complex = false;
5468 bool is_complex = false; local
5469 if (IsFloatingPointType (count, is_complex))

Completed in 125 milliseconds