HomeSort by relevance Sort by last modified time
    Searched defs:Family (Results 1 - 6 of 6) sorted by null

  /external/llvm/lib/Support/
Host.cpp 130 static void DetectX86FamilyModel(unsigned EAX, unsigned &Family,
132 Family = (EAX >> 8) & 0xf; // Bits 8 - 11
134 if (Family == 6 || Family == 0xf) {
135 if (Family == 0xf)
136 // Examine extended family ID if family ID is F.
137 Family += (EAX >> 20) & 0xff; // Bits 20 - 27
138 // Examine extended model ID if family ID is 6 or F.
147 unsigned Family = 0
    [all...]
  /external/llvm/lib/Target/X86/
X86Subtarget.cpp 258 unsigned Family = 0;
260 X86_MC::DetectFamilyModel(EAX, Family, Model);
261 if (IsAMD || (Family == 6 && Model >= 13)) {
270 ((Family == 6 && Model == 0x1E) || // Nehalem: Clarksfield, Lynnfield,
272 (Family == 6 && Model == 0x1A) || // Nehalem: Bloomfield, Nehalem-EP
273 (Family == 6 && Model == 0x2E) || // Nehalem: Nehalem-EX
274 (Family == 6 && Model == 0x25) || // Westmere: Arrandale, Clarksdale
275 (Family == 6 && Model == 0x2C) || // Westmere: Gulftown, Westmere-EP
276 (Family == 6 && Model == 0x2F) || // Westmere: Westmere-EX
277 (Family == 6 && Model == 0x2A) || // SandyBridg
    [all...]
  /external/chromium/googleurl/src/
url_canon.h 334 CanonHostInfo() : family(NEUTRAL), num_ipv4_components(0), out_host() {}
336 // Convenience function to test if family is an IP address.
337 bool IsIPAddress() const { return family == IPV4 || family == IPV6; }
340 enum Family {
352 Family family; member in struct:url_canon::CanonHostInfo
354 // If |family| is IPV4, then this is the number of nonempty dot-separated
355 // components in the input text, from 1 to 4. If |family| is not IPV4,
360 // CanonicalizeIPAddress() only sets this field if |family| is IPV4 or IPV6
    [all...]
  /external/chromium_org/url/
url_canon.h 314 CanonHostInfo() : family(NEUTRAL), num_ipv4_components(0), out_host() {}
316 // Convenience function to test if family is an IP address.
317 bool IsIPAddress() const { return family == IPV4 || family == IPV6; }
320 enum Family {
332 Family family; member in struct:url_canon::CanonHostInfo
334 // If |family| is IPV4, then this is the number of nonempty dot-separated
335 // components in the input text, from 1 to 4. If |family| is not IPV4,
340 // CanonicalizeIPAddress() only sets this field if |family| is IPV4 or IPV6
    [all...]
  /external/clang/lib/Sema/
SemaDeclObjC.cpp 33 /// family, is a valid member of that family.
152 if (ObjCMethodFamily Family = Overridden->getMethodFamily())
156 << Family;
197 ObjCMethodFamily family = method->getMethodFamily(); local
198 switch (family) {
399 ObjCMethodFamily Family = MDecl->getMethodFamily();
400 if (Family == OMF_dealloc) {
405 } else if (Family == OMF_finalize) {
1455 ObjCMethodFamily family = declFamily; local
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
MallocChecker.cpp 62 unsigned Family : 30; // Rest of 32-bit word, currently just an allocation
63 // family.
65 RefState(Kind k, const Stmt *s, unsigned family)
66 : S(s), K(k), Family(family) {
67 assert(family != AF_None);
75 return (AllocationFamily)Family;
80 return K == X.K && S == X.S && Family == X.Family;
83 static RefState getAllocated(unsigned family, const Stmt *s)
    [all...]

Completed in 105 milliseconds