HomeSort by: relevance | last modified time | path
    Searched refs:Family (Results 1 - 10 of 10) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
MallocChecker.cpp 112 /// Print expected name of an allocator based on the deallocator's family
114 static void printExpectedAllocName(raw_ostream &os, AllocationFamily Family);
117 /// family.
118 static void printExpectedDeallocName(raw_ostream &os, AllocationFamily Family);
146 AllocationFamily Family;
148 RefState(Kind k, const Stmt *s, AllocationFamily family)
149 : S(s), K(k), Family(family) {
150 assert(family != AF_None);
159 AllocationFamily getAllocationFamily() const { return Family; }
    [all...]
NullabilityChecker.cpp 597 ObjCMethodFamily Family = MD->getMethodFamily();
598 if (OMF_init == Family || OMF_copy == Family || OMF_mutableCopy == Family)
  /src/external/apache2/llvm/dist/llvm/lib/Support/
Host.cpp 589 static void detectX86FamilyModel(unsigned EAX, unsigned *Family,
591 *Family = (EAX >> 8) & 0xf; // Bits 8 - 11
593 if (*Family == 6 || *Family == 0xf) {
594 if (*Family == 0xf)
595 // Examine extended family ID if family ID is F.
596 *Family += (EAX >> 20) & 0xff; // Bits 20 - 27
597 // Examine extended model ID if family ID is 6 or F.
603 getIntelProcessorTypeAndSubtype(unsigned Family, unsigned Model
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Driver/ToolChains/
AVR.cpp 34 StringRef Family;
289 return Optional<StringRef>(MCU.Family);
327 // We do not have an entry for this CPU in the family
394 // If the family name is known, we can link with the device-specific libgcc.
411 // Specify the family name as the emulation mode to use.
  /src/external/bsd/libfido2/dist/src/
webauthn.h 12 #pragma region Desktop Family or OneCore Family
  /src/external/apache2/llvm/dist/clang/lib/AST/
DeclObjC.cpp 791 ObjCMethodDeclBits.Family =
1003 auto family = static_cast<ObjCMethodFamily>(ObjCMethodDeclBits.Family); local
1004 if (family != static_cast<unsigned>(InvalidObjCMethodFamily))
1005 return family;
1012 case ObjCMethodFamilyAttr::OMF_None: family = OMF_None; break;
1013 case ObjCMethodFamilyAttr::OMF_alloc: family = OMF_alloc; break;
1014 case ObjCMethodFamilyAttr::OMF_copy: family = OMF_copy; break;
1015 case ObjCMethodFamilyAttr::OMF_init: family = OMF_init; break;
1016 case ObjCMethodFamilyAttr::OMF_mutableCopy: family = OMF_mutableCopy; break
    [all...]
  /src/external/bsd/ntp/dist/libntp/lib/isc/win32/
interfaceiter.c 74 ULONG Family,
416 af = (u_short)target.family;
419 iter->current.netmask.family = af;
508 * If the interface has an unsupported address family, or if
623 iter->current.address.family = AF_INET6;
653 iter->current.netmask.family = AF_INET6;
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaDeclObjC.cpp 34 /// family, is a valid member of that family.
174 if (ObjCMethodFamily Family = Overridden->getMethodFamily())
178 << Family;
226 ObjCMethodFamily family = method->getMethodFamily(); local
227 switch (family) {
478 ObjCMethodFamily Family = MDecl->getMethodFamily();
479 if (Family == OMF_dealloc) {
484 } else if (Family == OMF_finalize) {
2495 // to fall out of the family
2502 ObjCMethodFamily family = declFamily; local
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/BinaryFormat/
MachO.h 1471 inline int CPU_SUBTYPE_INTEL(int Family, int Model) {
1472 return Family | (Model << 4);
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
DeclBase.h 1662 mutable uint64_t Family : ObjCMethodFamilyBitWidth;

Completed in 56 milliseconds