HomeSort by relevance Sort by last modified time
    Searched refs:NeonTypeFlags (Results 1 - 4 of 4) sorted by null

  /external/clang/include/clang/Basic/
TargetBuiltins.h 98 class NeonTypeFlags {
121 NeonTypeFlags(unsigned F) : Flags(F) {}
122 NeonTypeFlags(EltType ET, bool IsUnsigned, bool IsQuad) : Flags(ET) {
  /external/clang/lib/CodeGen/
CGBuiltin.cpp     [all...]
  /external/clang/lib/Sema/
SemaChecking.cpp 355 NeonTypeFlags Type(t);
358 case NeonTypeFlags::Int8:
359 case NeonTypeFlags::Poly8:
361 case NeonTypeFlags::Int16:
362 case NeonTypeFlags::Poly16:
364 case NeonTypeFlags::Int32:
366 case NeonTypeFlags::Int64:
367 case NeonTypeFlags::Poly64:
369 case NeonTypeFlags::Poly128:
371 case NeonTypeFlags::Float16
    [all...]
  /external/clang/utils/TableGen/
NeonEmitter.cpp 72 /// NeonTypeFlags - Flags to identify the types for overloaded Neon
75 namespace NeonTypeFlags {
221 /// Return the value in NeonTypeFlags for this type.
626 unsigned Base = (unsigned)NeonTypeFlags::Int8 + Addend;
631 Base = (unsigned)NeonTypeFlags::Poly8 + Addend;
635 Base = (unsigned)NeonTypeFlags::Float16 + (Addend - 1);
639 Base |= (unsigned)NeonTypeFlags::QuadFlag;
641 Base |= (unsigned)NeonTypeFlags::UnsignedFlag;
    [all...]

Completed in 677 milliseconds