HomeSort by: relevance | last modified time | path
    Searched defs:family (Results 1 - 25 of 66) sorted by relevancy

1 2 3

  /src/sys/arch/mips/cavium/
octeon_misc.c 95 const char *family; local in function:octeon_cpu_model
150 family = "38"; /* XXX may also be family "36" or "37" */
154 family = "31"; /* XXX may also be model "3020" */
158 family = "30"; /* XXX half cache model is "3005" */
162 family = "58";
166 family = "56"; /* XXX may also be family "54", "55" or "57" */
170 family = "50";
175 family = "52"; /* XXX may also be family "51" *
    [all...]
  /src/tests/net/ipsec/
natt_terminator.c 60 int c, family = AF_INET; local in function:main
65 family = AF_INET;
68 family = AF_INET6;
87 hints.ai_family = family;
  /src/usr.bin/telnet/
main.c 71 int family = AF_UNSPEC; variable in typeref:typename:int
152 family = AF_INET;
155 family = AF_INET6;
  /src/sys/arch/alpha/include/
cpuconf.h 43 * The tags family and model information are strings describing the platform.
56 const char *family; /* Family Name */ member in struct:platform
79 * It's responsible for filling in the family, model_name and iobus
  /src/usr.sbin/rdate/
rdate.c 83 int family = AF_UNSPEC; local in function:main
89 family = AF_INET;
93 family = AF_INET6;
120 hints.ai_family = family;
  /src/sys/dev/i2c/
emcfaninfo.h 25 const int family; /* The EMC chipset family, 210X or 230X */ member in struct:emcfan_chip_info
43 .family = EMCFAN_FAMILY_210X,
60 .family = EMCFAN_FAMILY_210X,
77 .family = EMCFAN_FAMILY_210X,
94 .family = EMCFAN_FAMILY_210X,
116 .family = EMCFAN_FAMILY_210X,
139 .family = EMCFAN_FAMILY_210X,
165 .family = EMCFAN_FAMILY_230X,
182 .family = EMCFAN_FAMILY_230X
    [all...]
  /src/sys/arch/mvme68k/stand/netboot/
config.h 54 u_char family; member in struct:brdid
  /src/sys/arch/x86/x86/
viac7temp.c 177 uint32_t family, model; local in function:viac7temp_msr_register
182 family = CPUID_TO_FAMILY(ci->ci_signature);
184 if (family == 0x07 || (family == 0x06 && model >= 0x0f))
186 else if (family == 0x06 && model > 0x09)
cpu_ucode_amd.c 96 uint32_t family; local in function:amd_cpufamily
99 family = CPUID_TO_FAMILY(ci->ci_signature);
101 return family;
274 /* keep extended family and extended model */
identcpu.c 149 u_int family, model; local in function:cpu_probe_intel_errata
151 family = CPUID_TO_FAMILY(ci->ci_signature);
169 if (family == 0x6 && model == 0x5C) {
194 int family, model; local in function:cpu_probe_amd_cache
198 family = CPUID_TO_FAMILY(ci->ci_signature);
202 if (family == 5 && model == 0)
216 if ((family == 5 && model >= 9) || family >= 6) {
266 if (family < 0xf)
269 /* Determine L3 cache info on AMD Family 10h and newer processors *
489 u_int family, model, stepping, descs[4], lfunc, msr; local in function:cpu_probe_c3
    [all...]
  /src/sys/arch/ia64/ia64/
cpu.c 117 int revision, model, family; local in function:identifycpu
132 family = (tmp >> 24) & 0xff;
136 switch (family) {
  /src/sys/netinet6/
dccp6_usrreq.c 296 int family; local in function:dccp6_ioctl
298 family = so->so_proto->pr_domain->dom_family;
299 switch (family) {
  /src/usr.bin/getnameinfo/
getnameinfo.c 65 * getnameinfo [-46FHNnrSu] [-f family] [-p port] <IP-address>
70 * -f: Specify address family to look up
93 uint8_t family = AF_UNSPEC; local in function:main
110 if (family != AF_UNSPEC)
112 family = AF_INET;
115 if (family != AF_UNSPEC)
117 family = AF_INET6;
126 if (family != AF_UNSPEC)
128 family = get_family(optarg);
180 if (family == AF_UNSPEC
    [all...]
  /src/usr.sbin/puffs/mount_9p/
ninepuffs.c 74 serverconnect(const char *hostname, const char *portname, int family)
80 hints.ai_family = family;
144 int family; local in function:main
162 family = AF_UNSPEC;
164 family = AF_INET;
173 family = AF_INET;
177 family = AF_INET6;
302 p9p.servsock = serverconnect(srvhost, port, family);
  /src/lib/libc/resolv/
res_init.c 918 uint16_t family; local in function:res_getservers
922 family = statp->_u._ext.ext->nsaddrs[i].sin.sin_family;
924 family = statp->nsaddr_list[i].sin_family;
926 switch (family) {
  /src/sys/arch/x86/pci/
amdtemp.c 92 * AMD NPT Family 0Fh Processors, Function 3 -- Miscellaneous Control
106 * AMD Family 10h Processors, Function 3 -- Miscellaneous Control
114 * Revision Guide for AMD NPT Family 0Fh Processors,
183 uint32_t family; local in function:amdtemp_match
197 family = CPUID_TO_FAMILY(cpu_signature);
200 if (family == 0x10) {
209 if (family > 0x16)
259 aprint_normal(", family 0x%x not supported\n",
391 * CPUID Family Model Register was introduced in
475 aprint_normal(" (Family%02xh)", sc->sc_family)
    [all...]
amdzentemp.c 82 * Reported Temperature, Family 15h, M60+
84 * Same register bit definitions as other Family 15h CPUs, but access is
85 * indirect via SMN, like Family 17h.
90 * Reported Temperature, Family 17h
156 /* Got AMD family 17h system management network */
166 int family, model; local in function:amdzentemp_attach
172 family = CPUID_TO_FAMILY(ci->ci_signature);
175 aprint_normal(": AMD CPU Temperature Sensors (Family %xh)", family);
179 amdzentemp_init(sc, family, model)
    [all...]
  /src/usr.bin/rsh/
rsh.c 104 int family = AF_UNSPEC; local in function:main
158 family = AF_INET;
161 family = AF_INET6;
243 name, user, args, &remerr, family);
  /src/usr.bin/rump_dhcpclient/
dhcpcd.h 88 sa_family_t family; member in struct:interface
  /src/usr.bin/rup/
rup.c 65 int family; member in struct:host_list
87 switch (hp->family) {
116 hp->family = sa->sa_family;
130 errx(1, "unknown address family");
  /src/usr.bin/rusers/
rusers.c 74 int family; member in struct:host_list
93 switch (hp->family) {
122 hp->family = sa->sa_family;
134 err(1, "unknown address family");
  /src/usr.sbin/ypserv/ypserv/
ypserv.c 82 sa_family_t family; member in struct:bindsock
366 if ((s = socket(bs->family, bs->type, bs->proto)) == -1)
369 if (bs->family == AF_INET6) {
390 if (bind_resv_port(s, bs->family, port) != 0)
474 bind_resv_port(int sock, sa_family_t family, in_port_t port)
480 switch (family) {
484 sasin.sin_family = family;
491 sasin6.sin6_family = family;
496 _msgout(LOG_ERR, "Unsupported address family %d", family);
    [all...]
  /src/tests/net/net/
t_ip_reass.c 81 u_int family; member in struct:lopacket
114 packet->family = AF_INET;
147 len = sizeof(packet->family) + ntohs(packet->hdr.ip_len);
  /src/lib/libc/net/
getnameinfo.c 121 * Top-level getnameinfo() code. Look at the address family, and pick an
257 int family, i; local in function:getnameinfo_inet
270 family = sa->sa_family;
272 if (afdl[i].a_af == family) {
  /src/sys/net/
if_tun.c 608 /* Prepend the address family */
860 uint32_t family; local in function:tunwrite
895 if (uio->uio_resid < sizeof(family)){
899 error = uiomove((void *)&family, sizeof(family), uio);
902 dst.sa_family = ntohl(family);

Completed in 21 milliseconds

1 2 3