Searched refs:Family (Results 1 - 9 of 9) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/builtins/
H A Dcpu_model.c258 static void detectX86FamilyModel(unsigned EAX, unsigned *Family, argument
260 *Family = (EAX >> 8) & 0xf; // Bits 8 - 11
262 if (*Family == 6 || *Family == 0xf) {
263 if (*Family == 0xf)
265 *Family += (EAX >> 20) & 0xff; // Bits 20 - 27
271 static void getIntelProcessorTypeAndSubtype(unsigned Family, unsigned Model, argument
278 switch (Family) {
426 static void getAMDProcessorTypeAndSubtype(unsigned Family, unsigned Model, argument
432 switch (Family) {
656 unsigned Model, Family, Brand_id; local
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DMallocChecker.cpp113 static void printExpectedDeallocName(raw_ostream &os, AllocationFamily Family);
141 AllocationFamily Family; member in class:__anon812::RefState
144 : S(s), K(k), Family(family) {
154 AllocationFamily getAllocationFamily() const { return Family; }
158 return K == X.K && S == X.S && Family == X.Family;
181 ID.AddInteger(Family);
210 AllocationFamily Family = AF_Malloc,
312 AllocationFamily Family,
452 AllocationFamily Family
875 isCMemFunction(const FunctionDecl *FD, ASTContext &C, AllocationFamily Family, MemoryOperationKind MemKind) const argument
1502 MallocMemAux(CheckerContext &C, const CallExpr *CE, const Expr *SizeEx, SVal Init, ProgramStateRef State, AllocationFamily Family) argument
1513 MallocMemAux(CheckerContext &C, const CallExpr *CE, SVal Size, SVal Init, ProgramStateRef State, AllocationFamily Family) argument
1557 MallocUpdateRefState(CheckerContext &C, const Expr *E, ProgramStateRef State, AllocationFamily Family, Optional<SVal> RetVal) argument
1725 AllocationFamily Family = getAllocationFamily(MemFunctionInfo, C, E); local
1738 printExpectedDeallocName(raw_ostream &os, AllocationFamily Family) argument
1894 AllocationFamily Family = local
1908 getCheckIfTracked(AllocationFamily Family, bool IsALeakCheck) const argument
2565 AllocationFamily Family = RS->getAllocationFamily(); local
3224 const auto Family = RSCurr->getAllocationFamily(); local
3367 AllocationFamily Family = RefS->getAllocationFamily(); local
3388 AllocationFamily Family = AF_InnerBuffer; local
[all...]
H A DNullabilityChecker.cpp550 ObjCMethodFamily Family = MD->getMethodFamily(); local
551 if (OMF_init == Family || OMF_copy == Family || OMF_mutableCopy == Family)
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
H A DHost.cpp542 static void detectX86FamilyModel(unsigned EAX, unsigned *Family, argument
544 *Family = (EAX >> 8) & 0xf; // Bits 8 - 11
546 if (*Family == 6 || *Family == 0xf) {
547 if (*Family == 0xf)
549 *Family += (EAX >> 20) & 0xff; // Bits 20 - 27
556 getIntelProcessorTypeAndSubtype(unsigned Family, unsigned Model, argument
562 switch (Family) {
881 static void getAMDProcessorTypeAndSubtype(unsigned Family, unsigned Model, argument
887 switch (Family) {
1142 unsigned Family = 0, Model = 0; local
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/
H A DDeclObjC.cpp789 ObjCMethodDeclBits.Family =
998 auto family = static_cast<ObjCMethodFamily>(ObjCMethodDeclBits.Family);
1014 ObjCMethodDeclBits.Family = family;
1085 ObjCMethodDeclBits.Family = family;
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/BinaryFormat/
H A DMachO.h1468 inline int CPU_SUBTYPE_INTEL(int Family, int Model) { argument
1469 return Family | (Model << 4);
/freebsd-11-stable/contrib/ntp/lib/isc/win32/
H A Dinterfaceiter.c72 ULONG Family,
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaDeclObjC.cpp173 if (ObjCMethodFamily Family = Overridden->getMethodFamily())
177 << Family;
477 ObjCMethodFamily Family = MDecl->getMethodFamily(); local
478 if (Family == OMF_dealloc) {
483 } else if (Family == OMF_finalize) {
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/
H A DDeclBase.h1587 mutable uint64_t Family : ObjCMethodFamilyBitWidth;

Completed in 142 milliseconds