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

1 2 3 4 5 6 7 8 9

  /external/oprofile/module/ia64/
cpu_type.c 19 __u8 family = local_cpu_data->family; local
22 switch (family) {
  /external/libnl/src/lib/
rule.c 49 int family; local
51 if ((family = nl_str2af(arg)) != AF_UNSPEC)
52 rtnl_rule_set_family(rule, family);
link.c 35 int family; local
37 if ((family = nl_str2af(arg)) == AF_UNSPEC)
39 "Unable to translate address family \"%s\"", arg);
41 rtnl_link_set_family(link, family);
neigh.c 68 int family; local
70 if ((family = nl_str2af(arg)) == AF_UNSPEC)
72 "Unable to translate address family \"%s\"", arg);
74 rtnl_neigh_set_family(neigh, family);
  /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/chromium_org/ui/gfx/
font_fallback_linux.cc 33 FcValue family; local
34 family.type = FcTypeString;
35 family.u.s = reinterpret_cast<const FcChar8*>(font_family.c_str());
36 FcPatternAdd(pattern, FC_FAMILY, family, FcFalse);
46 // FontConfig returns multiple fonts with the same family name and
47 // different configurations. Check to prevent duplicate family names.
  /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) {
95 * finds the first global non-privacy IP of the given family for the given interface, or returns NULL. caller frees pointer
97 * family - family
99 union anyip *getinterface_ip(const char *interface, int family) {
105 targ.family = family;
113 ifa.ifa_family = targ.family;
    [all...]
  /external/chromium_org/base/
atomicops_internals_x86_gcc.cc 62 // get feature flags in ecx/edx, and family/model in eax
65 int family = (eax >> 8) & 0xf; // family and model fields local
67 if (family == 0xf) { // use extended family and model fields
68 family += (eax >> 20) & 0xff;
76 // so we test only for Rev E, which is family 15, model 32..63 inclusive.
78 family == 15 &&
  /external/chromium_org/net/dns/
dns_hosts_unittest.cc 15 AddressFamily family; member in struct:net::__anon13819::ExpectedHostsEntry
23 DnsHostsKey key(entries[i].host, entries[i].family);
28 (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/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/core/css/
CSSFontValue.h 52 RefPtrWillBeMember<CSSValueList> family; member in class:blink::CSSFontValue
  /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/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/third_party/webrtc/base/
socketaddress.h 91 int family() const {return ip_.family(); } function in class:rtc::SocketAddress
166 // If IPv6, will zero out the sockaddr_in and sets family to AF_UNSPEC.
173 // Dual stack version always sets family to AF_INET6, and maps v4 addresses.
210 SocketAddress EmptySocketAddressWithFamily(int family);
  /external/chromium_org/v8/src/base/
atomicops_internals_x86_gcc.cc 71 // get feature flags in ecx/edx, and family/model in eax
74 int family = (eax >> 8) & 0xf; // family and model fields local
76 if (family == 0xf) { // use extended family and model fields
77 family += (eax >> 20) & 0xff;
85 // so we test only for Rev E, which is family 15, model 32..63 inclusive.
87 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/libnl/lib/genl/
mngt.c 21 * // particular generic netlink family. The ID and name are
42 * // family.
56 * // netlink family id.
67 * // Finally each cache handle for a generic netlink family
87 #include <netlink/genl/family.h>
139 char *genl_op2name(int family, int op, char *buf, size_t len)
145 if (ops->o_family == family) {
224 struct genl_family *family; local
226 family = genl_ctrl_search_by_name(ctrl, ops->o_name);
227 if (family != NULL)
    [all...]
  /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,
  /external/linux-tools-perf/perf-3.12.0/tools/perf/arch/x86/util/
header.c 26 int family = -1, model = -1, step = -1; local
39 family = (a >> 8) & 0xf; /* bits 11 - 8 */
43 /* extended family */
44 if (family == 0xf)
45 family += (a >> 20) & 0xff;
48 if (family >= 0x6)
51 nb = scnprintf(buffer, sz, "%s,%u,%u,%u$", vendor, family, model, step);
  /external/oprofile/module/x86/
cpu_type.c 148 __u8 family = current_cpu_data.x86; local
157 if (family == 6) {
166 if (family == 15)
171 switch (family) {
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
Dop.java 26 /** DalvOps.MIN_VALUE..DalvOps.MAX_VALUE; the opcode family */
27 private final int family; field in class:Dop
43 * @param family {@code DalvOps.MIN_VALUE..DalvOps.MAX_VALUE;} the opcode family
49 public Dop(int opcode, int family, InsnFormat format,
55 if ((family < DalvOps.MIN_VALUE) || (family > DalvOps.MAX_VALUE)) {
56 throw new IllegalArgumentException("bogus family");
68 this.family = family;
    [all...]

Completed in 930 milliseconds

1 2 3 4 5 6 7 8 9