Searched defs:family (Results 26 - 50 of 333) sorted by relevance

1234567891011>>

/external/libyuv/files/unit_test/
H A Dcpu_test.cc77 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/
H A Dheader.c26 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/chromium_org/content/browser/renderer_host/pepper/
H A Dpepper_truetype_font_list_win.cc47 desc.family = base::UTF16ToUTF8(lf.lfFaceName);
73 void GetFontsInFamily_SlowBlocking(const std::string& family, argument
78 base::string16 family16 = base::UTF8ToUTF16(family);
H A Dpepper_truetype_font_list_host.cc42 const std::string& family);
90 const std::string& family) {
93 GetFontsInFamily_SlowBlocking(family, &fonts_in_family);
88 OnHostMsgGetFontsInFamily( ppapi::host::HostMessageContext* context, const std::string& family) argument
/external/chromium_org/net/dns/
H A Dmdns_client.cc73 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/private/
H A Dppb_host_resolver_private.h61 PP_NetAddressFamily_Private family; member in struct:PP_HostResolver_Private_Hint
/external/chromium_org/remoting/client/plugin/
H A Dpepper_address_resolver.cc27 hint.family = PP_NETADDRESS_FAMILY_UNSPECIFIED;
35 bool PepperAddressResolver::GetResolvedAddress(int family, argument
38 switch (family) {
/external/chromium_org/third_party/WebKit/Source/platform/fonts/
H A DFontFamily.h43 void setFamily(const AtomicString& family) { m_family = family; } argument
44 const AtomicString& family() const { return m_family; } function in class:blink::FontFamily
83 inline void FontFamily::appendFamily(PassRefPtr<SharedFontFamily> family) argument
85 m_next = family;
/external/chromium_org/third_party/skia/gm/
H A Dverttext2.cpp75 SkTypeface* family, SkPaint::Align alignment) {
81 paint.setTypeface(family);
74 drawText(SkCanvas* canvas, const SkString& string, SkTypeface* family, SkPaint::Align alignment) argument
/external/chromium_org/third_party/webrtc/base/
H A Dnethelpers.cc25 int ResolveHostname(const std::string& hostname, int family, argument
47 if (family == AF_UNSPEC || cursor->ai_family == family) {
69 bool AsyncResolver::GetResolvedAddress(int family, SocketAddress* addr) const { argument
75 if (family == addresses_[i].family()) {
84 error_ = ResolveHostname(addr_.hostname().c_str(), addr_.family(),
H A Dsocketaddress.h91 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/deqp/execserver/
H A DxsTcpServer.cpp33 TcpServer::TcpServer (deSocketFamily family, int port) argument
37 address.setFamily(family);
/external/dexmaker/src/dx/java/com/android/dx/dex/code/
H A DDop.java29 /** {@code Opcodes.isValid();} the opcode family */
30 private final int family; field in class:Dop
51 * @param family {@code Opcodes.isValid();} the opcode family
60 public Dop(int opcode, int family, int nextOpcode, InsnFormat format, argument
66 if (!Opcodes.isValidShape(family)) {
67 throw new IllegalArgumentException("bogus family");
79 this.family = family;
101 * Gets the opcode family
[all...]
/external/dhcpcd/
H A Difaddrs.c33 struct ifaddrs *get_interface(const char *name, sa_family_t family) argument
46 if ((family == AF_INET) && (addr == 0))
62 if (family == AF_INET) {
66 saddr->sin_family = family;
74 smask->sin_family = family;
78 } else if (family == AF_PACKET) {
83 hwaddr->sll_family = family;
/external/iproute2/include/
H A Dxt-internal.h8 /* protocol family dependent informations */
10 /* protocol family */
11 int family; member in struct:afinfo
/external/libnl/src/lib/
H A Daddr.c35 int family; local
37 if ((family = nl_str2af(arg)) != AF_UNSPEC)
38 rtnl_addr_set_family(addr, family);
/external/oprofile/module/x86/
H A Dcpu_type.c148 __u8 family = current_cpu_data.x86; local
157 if (family == 6) {
166 if (family == 15)
171 switch (family) {
/external/skia/gm/
H A Dverttext2.cpp75 SkTypeface* family, SkPaint::Align alignment) {
81 paint.setTypeface(family);
74 drawText(SkCanvas* canvas, const SkString& string, SkTypeface* family, SkPaint::Align alignment) argument
/external/android-clat/
H A Dgetaddr.c33 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) { argument
105 targ.family = family;
113 ifa.ifa_family = targ.family;
[all...]
H A Dnetlink_msg.c35 * returns the size of the address structure for the given family, or 0 on error
36 * family - AF_INET or AF_INET6
38 size_t inet_family_size(int family) { argument
39 if(family == AF_INET) {
41 } else if(family == AF_INET6) {
H A Dsetif.c34 * family - address family (AF_INET, AF_INET6)
39 int add_address(const char *ifname, int family, const void *address, int prefixlen, const void *broadcast) { argument
45 addr_size = inet_family_size(family);
56 ifa.ifa_family = family;
70 if(family == AF_INET6) {
76 } else if(family == AF_INET) {
/external/chromium_org/ppapi/cpp/dev/
H A Dtruetype_font_dev.cc31 desc_.family = family_.pp_var();
43 set_family(Var(PASS_REF, pp_desc.family));
47 set_family(other.family());
63 set_family(other.family());
109 const Var& family,
115 family.pp_var(),
107 GetFontsInFamily( const InstanceHandle& instance, const Var& family, const CompletionCallbackWithOutput<std::vector<TrueTypeFontDesc_Dev> >& cc) argument
/external/chromium_org/ppapi/proxy/
H A Dtruetype_font_singleton_resource.cc48 PP_Var family,
51 scoped_refptr<StringVar> family_var = StringVar::FromPPVar(family);
105 // Each desc has an embedded PP_Var containing the family name.
112 PpapiGlobals::Get()->GetVarTracker()->ReleaseVar(pp_fonts[i].family);
46 GetFontsInFamily( PP_Instance instance, PP_Var family, const PP_ArrayOutput& output, const scoped_refptr<TrackedCallback>& callback) argument
/external/chromium_org/ppapi/tests/
H A Dtest_network_monitor.cc71 PP_NetAddress_Family family = addresses[i].GetFamily(); local
73 switch (family) {
/external/chromium_org/ppapi/thunk/
H A Dppb_truetype_font_dev_thunk.cc35 struct PP_Var family,
44 family,
34 GetFontsInFamily(PP_Instance instance, struct PP_Var family, struct PP_ArrayOutput output, struct PP_CompletionCallback callback) argument

Completed in 426 milliseconds

1234567891011>>