HomeSort by relevance Sort by last modified time
    Searched defs:family (Results 1 - 25 of 241) sorted by null

1 2 3 4 5 6 7 8 910

  /external/oprofile/module/ia64/
cpu_type.c 19 __u8 family = local_cpu_data->family; local
22 switch (family) {
  /external/libppp/src/
tun.h 31 u_int32_t family; member in union:tun_data::__anon23807
  /ndk/tests/device/test-cpufeatures/jni/
test_cpufeatures.c 21 AndroidCpuFamily family = android_getCpuFamily(); local
22 switch (family) {
24 printf("CPU family is ARM\n");
27 printf("CPU family is x86\n");
30 printf("CPU family is MIPS\n");
33 fprintf(stderr, "Unsupported CPU family: %d\n", family);
37 if (family == ANDROID_CPU_FAMILY_ARM) {
68 if (family == ANDROID_CPU_FAMILY_X86) {
  /external/chromium/net/base/
net_util_posix.cc 70 int family = ifa->ifa_addr->sa_family; local
71 if (family == AF_INET || family == AF_INET6) {
net_util_win.cc 111 int family = address->Address.lpSockaddr->sa_family; local
112 if (family == AF_INET || family == AF_INET6) {
  /external/chromium_org/net/dns/
dns_hosts_unittest.cc 35 AddressFamily family; member in struct:net::__anon11756::__anon11757
55 DnsHostsKey key(entries[i].host, entries[i].family);
59 ASSERT_EQ(ip.size(), (entries[i].family == ADDRESS_FAMILY_IPV4) ? 4u : 16u);
mdns_client.cc 73 AddressFamily family = GetAddressFamily(network_list[i].address); local
74 if (family == ADDRESS_FAMILY_IPV4 || family == ADDRESS_FAMILY_IPV6) {
76 std::make_pair(network_list[i].interface_index, family));
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSFontValue.h 49 RefPtr<CSSValueList> family; member in class:WebCore::CSSFontValue
  /external/chromium_org/third_party/libjingle/source/talk/media/base/
cpuid.cc 58 // Detect CPU Family and Model
61 // 11:8 - Family
64 // 27:20 - Extended Family
65 libyuv::CpuId(1, 0, &cpu_info[0]); // Function 1: Family and Model
66 int family = ((cpu_info[0] >> 8) & 0x0f) | ((cpu_info[0] >> 16) & 0xff0); local
78 if (family < 6 || family == 15 ||
79 (family == 6 && (model == kAtom || model <= kCore2))) {
  /external/chromium_org/third_party/tcmalloc/chromium/src/base/
atomicops-internals-x86.cc 89 // get feature flags in ecx/edx, and family/model in eax
92 int family = (eax >> 8) & 0xf; // family and model fields local
94 if (family == 0xf) { // use extended family and model fields
95 family += (eax >> 20) & 0xff;
103 // so we test only for Rev E, which is family 15, model 32..63 inclusive.
105 family == 15 &&
  /external/chromium_org/third_party/tcmalloc/vendor/src/base/
atomicops-internals-x86.cc 89 // get feature flags in ecx/edx, and family/model in eax
92 int family = (eax >> 8) & 0xf; // family and model fields local
94 if (family == 0xf) { // use extended family and model fields
95 family += (eax >> 20) & 0xff;
103 // so we test only for Rev E, which is family 15, model 32..63 inclusive.
105 family == 15 &&
  /external/tcpdump/
print-null.c 48 * 32-bit integer that specifies the family, e.g. AF_INET.
68 null_hdr_print(u_int family, u_int length)
72 tok2str(bsd_af_values,"Unknown",family),family);
75 tok2str(bsd_af_values,"Unknown AF %u",family));
92 u_int family; local
99 memcpy((char *)&family, (char *)p, sizeof(family));
109 if ((family & 0xFFFF0000) != 0)
110 family = SWAPLONG(family)
    [all...]
  /external/android-clat/
getaddr.c 33 int family; member in struct:target
63 if((targ_p->family == AF_INET6) && !(ifa_p->ifa_flags & IFA_F_SECONDARY)) {
70 if(targ_p->family == AF_INET) {
93 * finds the first global non-privacy IP of the given family for the given interface, or returns NULL. caller frees pointer
95 * family - family
97 union anyip *getinterface_ip(const char *interface, int family) {
103 targ.family = family;
111 ifa.ifa_family = targ.family;
    [all...]
  /external/chromium/base/
atomicops_internals_x86_gcc.cc 61 // get feature flags in ecx/edx, and family/model in eax
64 int family = (eax >> 8) & 0xf; // family and model fields local
66 if (family == 0xf) { // use extended family and model fields
67 family += (eax >> 20) & 0xff;
75 // so we test only for Rev E, which is family 15, model 32..63 inclusive.
77 family == 15 &&
  /external/chromium_org/base/
atomicops_internals_x86_gcc.cc 61 // get feature flags in ecx/edx, and family/model in eax
64 int family = (eax >> 8) & 0xf; // family and model fields local
66 if (family == 0xf) { // use extended family and model fields
67 family += (eax >> 20) & 0xff;
75 // so we test only for Rev E, which is family 15, model 32..63 inclusive.
77 family == 15 &&
  /external/chromium_org/ppapi/c/
ppb_host_resolver.h 59 * Network address family.
61 PP_NetAddress_Family family; member in struct:PP_HostResolver_Hint
  /external/chromium_org/third_party/WebKit/Source/platform/fonts/skia/
FontCacheSkia.cpp 55 FontCache::SimpleFontFamily family; local
56 FontCache::getFontFamilyForCharacter(c, locale.getLanguage(), &family);
57 if (family.name.isEmpty())
60 AtomicString atomicFamily(family.name);
67 if (family.isBold && description.weight() < FontWeightBold)
69 if (!family.isBold && description.weight() >= FontWeightBold) {
73 if (family.isItalic && description.italic() == FontItalicOff)
75 if (!family.isItalic && description.italic() == FontItalicOn) {
108 PassRefPtr<SkTypeface> FontCache::createTypeface(const FontDescription& fontDescription, const AtomicString& family, CString& name)
112 if (!family.length() || family.startsWith("-webkit-"))
    [all...]
  /external/chromium_org/third_party/freetype/src/cache/
ftcglyph.c 33 FTC_Family family )
35 gnode->family = family;
37 family->num_nodes++;
45 FTC_Family family = gnode->family; local
48 gnode->family = NULL;
49 if ( family && --family->num_nodes == 0 )
50 FTC_FAMILY_FREE( family, cache )
201 FTC_Family family = query->family; local
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/base/
ipaddress.h 92 int family() const { return family_; } function in class:talk_base::IPAddress
socketaddress.h 108 int family() const {return ip_.family(); } function in class:talk_base::SocketAddress
183 // If IPv6, will zero out the sockaddr_in and sets family to AF_UNSPEC.
190 // Dual stack version always sets family to AF_INET6, and maps v4 addresses.
227 SocketAddress EmptySocketAddressWithFamily(int family);
  /external/chromium_org/third_party/protobuf/src/google/protobuf/stubs/
atomicops_internals_x86_gcc.cc 92 // get feature flags in ecx/edx, and family/model in eax
95 int family = (eax >> 8) & 0xf; // family and model fields local
97 if (family == 0xf) { // use extended family and model fields
98 family += (eax >> 20) & 0xff;
106 // so we test only for Rev E, which is family 15, model 32..63 inclusive.
108 family == 15 &&
  /external/chromium_org/v8/src/
atomicops_internals_x86_gcc.cc 93 // get feature flags in ecx/edx, and family/model in eax
96 int family = (eax >> 8) & 0xf; // family and model fields local
98 if (family == 0xf) { // use extended family and model fields
99 family += (eax >> 20) & 0xff;
107 // so we test only for Rev E, which is family 15, model 32..63 inclusive.
109 family == 15 &&
  /external/freetype/src/cache/
ftcglyph.c 33 FTC_Family family )
35 gnode->family = family;
37 family->num_nodes++;
45 FTC_Family family = gnode->family; local
48 gnode->family = NULL;
49 if ( family && --family->num_nodes == 0 )
50 FTC_FAMILY_FREE( family, cache )
201 FTC_Family family = query->family; local
    [all...]
  /external/iproute2/ip/
ipprefix.c 42 int family = preferred_family; local
56 if (family == AF_UNSPEC)
57 family = AF_INET6;
58 if (family != AF_INET6)
62 fprintf(stderr, "wrong family %d\n", prefix->prefix_family);
81 fprintf(fp, "%s", rt_addr_n2a(family, sizeof(*pfx), pfx,
  /external/libyuv/files/unit_test/
cpu_test.cc 69 // CPU Family and Model
72 // 11:8 - Family
75 // 27:20 - Extended Family
77 int family = ((cpu_info[0] >> 8) & 0x0f) | ((cpu_info[0] >> 16) & 0xff0); local
79 printf("Cpu Family %d (0x%x), Model %d (0x%x)\n", family, family,

Completed in 535 milliseconds

1 2 3 4 5 6 7 8 910