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

  /external/llvm/lib/Support/
Host.cpp 114 static void DetectX86FamilyModel(unsigned EAX, unsigned &Family,
116 Family = (EAX >> 8) & 0xf; // Bits 8 - 11
118 if (Family == 6 || Family == 0xf) {
119 if (Family == 0xf)
120 // Examine extended family ID if family ID is F.
121 Family += (EAX >> 20) & 0xff; // Bits 20 - 27
122 // Examine extended model ID if family ID is 6 or F.
131 unsigned Family = 0
    [all...]
  /external/llvm/lib/Target/X86/
X86Subtarget.cpp 240 unsigned Family = 0;
242 X86_MC::DetectFamilyModel(EAX, Family, Model);
243 if (IsAMD || (Family == 6 && Model >= 13)) {
251 if (IsIntel && ((Family == 6 && Model == 26) ||
252 (Family == 6 && Model == 44) ||
253 (Family == 6 && Model == 42))) {
259 if (Family == 6 &&
  /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...]

Completed in 536 milliseconds