Searched defs:family (Results 1 - 25 of 283) sorted by relevance

1234567891011>>

/external/oprofile/module/ia64/
H A Dcpu_type.c19 __u8 family = local_cpu_data->family; local
22 switch (family) {
/external/libppp/src/
H A Dtun.h31 u_int32_t family; member in union:tun_data::__anon21419
/external/chromium_org/content/browser/renderer_host/pepper/
H A Dpepper_truetype_font_list_android.cc15 const std::string& family,
14 GetFontsInFamily_SlowBlocking( const std::string& family, std::vector<ppapi::proxy::SerializedTrueTypeFontDesc>* fonts_in_family) argument
H A Dpepper_truetype_font_list_ozone.cc15 const std::string& family,
14 GetFontsInFamily_SlowBlocking( const std::string& family, std::vector<ppapi::proxy::SerializedTrueTypeFontDesc>* fonts_in_family) argument
H A Dpepper_truetype_font_list_pango.cc28 const std::string& family,
37 if (family.compare(::pango_font_family_get_name(font_family)) == 0) {
46 desc.family = family;
27 GetFontsInFamily_SlowBlocking( const std::string& family, std::vector<ppapi::proxy::SerializedTrueTypeFontDesc>* fonts_in_family) argument
/external/chromium_org/third_party/WebKit/Source/platform/fonts/linux/
H A DFontCacheLinux.cpp37 void FontCache::getFontFamilyForCharacter(UChar32 c, const char* preferredLocale, FontCache::SimpleFontFamily* family) argument
44 family->name = String::fromUTF8(CString(webFamily.name));
45 family->isBold = webFamily.isBold;
46 family->isItalic = webFamily.isItalic;
/external/chromium_org/net/dns/
H A Ddns_hosts_unittest.cc35 AddressFamily family; member in struct:net::__anon9350::__anon9351
55 DnsHostsKey key(entries[i].host, entries[i].family);
59 ASSERT_EQ(ip.size(), (entries[i].family == ADDRESS_FAMILY_IPV4) ? 4u : 16u);
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSFontValue.h49 RefPtr<CSSValueList> family; member in class:WebCore::CSSFontValue
/external/chromium_org/third_party/tcmalloc/chromium/src/base/
H A Datomicops-internals-x86.cc89 // 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/
H A Datomicops-internals-x86.cc89 // 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/smack/src/org/xbill/DNS/
H A DReverseMap.java106 fromAddress(String addr, int family) throws UnknownHostException { argument
107 byte [] array = Address.toByteArray(addr, family);
/external/tcpdump/
H A Dprint-null.c48 * 32-bit integer that specifies the family, e.g. AF_INET.
68 null_hdr_print(u_int family, u_int length) argument
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
[all...]
/external/android-clat/
H A Dsetif.c31 * family - address family (AF_INET, AF_INET6)
36 int add_address(const char *ifname, int family, const void *address, int prefixlen, const void *broadcast) { argument
42 addr_size = inet_family_size(family);
53 ifa.ifa_family = family;
67 if(family == AF_INET6) {
73 } else if(family == AF_INET) {
/external/chromium/base/
H A Datomicops_internals_x86_gcc.cc61 // 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/net/base/
H A Dnet_util_posix.cc70 int family = ifa->ifa_addr->sa_family; local
71 if (family == AF_INET || family == AF_INET6) {
/external/chromium_org/base/
H A Datomicops_internals_x86_gcc.cc61 // 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/net/socket/
H A Dsocket_descriptor.cc34 SocketDescriptor CreateSocketDefault(int family, int type, int protocol) { argument
37 SocketDescriptor result = ::WSASocket(family, type, protocol, NULL, 0,
39 if (result != kInvalidSocket && family == AF_INET6 &&
50 return ::socket(family, type, protocol);
54 SocketDescriptor CreatePlatformSocket(int family, int type, int protocol) { argument
56 return g_socket_factory->CreateSocket(family, type, protocol);
58 return CreateSocketDefault(family, type, protocol);
/external/chromium_org/ppapi/c/
H A Dppb_host_resolver.h59 * Network address family.
61 PP_NetAddress_Family family; member in struct:PP_HostResolver_Hint
/external/chromium_org/third_party/freetype/src/cache/
H A Dftcglyph.c33 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, cach
106 FTC_Family_Init( FTC_Family family, FTC_Cache cache ) argument
201 FTC_Family family = query->family; local
[all...]
/external/chromium_org/third_party/libjingle/source/talk/base/
H A Dipaddress.h92 int family() const { return family_; } function in class:talk_base::IPAddress
H A Dmacsocketserver.h27 virtual Socket* CreateSocket(int family, int type) { return NULL; } argument
30 virtual AsyncSocket* CreateAsyncSocket(int family, int type);
H A Dnullsocketserver.h56 virtual talk_base::Socket* CreateSocket(int family, int type) { argument
66 virtual talk_base::AsyncSocket* CreateAsyncSocket(int family, int type) { argument
/external/chromium_org/third_party/libjingle/source/talk/media/base/
H A Dcpuid.cc66 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/protobuf/src/google/protobuf/stubs/
H A Datomicops_internals_x86_gcc.cc92 // 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/
H A Datomicops_internals_x86_gcc.cc93 // 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 &&

Completed in 483 milliseconds

1234567891011>>