Searched refs:ia (Results 51 - 75 of 103) sorted by relevance

12345

/freebsd-10.2-release/sys/netinet6/
H A Dfrag6.c163 struct in6_ifaddr *ia; local
187 if ((ia = ip6_getdstifaddr(m)) != NULL) {
188 dstifp = ia->ia_ifp;
189 ifa_free(&ia->ia_ifa);
H A Dicmp6.c2130 struct in6_ifaddr *ia = NULL; local
2199 if ((ia = ip6_getdstifaddr(m))) {
2200 if (!(ia->ia6_flags &
2202 srcp = &ia->ia_addr.sin6_addr;
2210 ia = (struct in6_ifaddr *)
2212 if (ia &&
2213 !(ia->ia6_flags &
2215 srcp = &ia->ia_addr.sin6_addr;
2277 if (ia != NULL)
2278 ifa_free(&ia
2580 struct in6_ifaddr *ia; local
[all...]
H A Dnd6_rtr.c1796 struct in6_ifaddr *ia, *ib; local
1915 ia = in6ifa_ifpwithaddr(ifp, &ifra.ifra_addr.sin6_addr);
1921 return (ia); /* this is always non-NULL and referenced. */
1931 struct in6_ifaddr *newia, *ia; local
1969 TAILQ_FOREACH(ia, &V_in6_ifaddrhead, ia_link) {
1970 if (IN6_ARE_ADDR_EQUAL(&ia->ia_addr.sin6_addr,
H A Dip6_output.c300 struct in6_ifaddr *ia = NULL; local
562 ia = (struct in6_ifaddr *)(rt->rt_ifa);
598 if (ia != NULL && ia->ia_ifp)
599 ifp = ia->ia_ifp;
1018 if (ia) {
1019 ia->ia_ifa.if_opackets++;
1020 ia->ia_ifa.if_obytes += m->m_pkthdr.len;
H A Dip6_input.c1036 * we just bump the ia refcount when we receive it. This should be fixed.
1053 struct in6_ifaddr *ia; local
1057 ia = ip6a->ip6a_dstia6;
1058 ifa_ref(&ia->ia_ifa);
1059 return ia;
/freebsd-10.2-release/sys/dev/ath/ath_hal/ar5312/
H A Dar5312_reset.c56 write_common(struct ath_hal *ah, const HAL_INI_ARRAY *ia, argument
62 #define V(r, c) (ia)->data[((r)*(ia)->cols) + (c)]
66 for (i = 0; i < ia->rows; i++) {
/freebsd-10.2-release/contrib/llvm/lib/Target/ARM/MCTargetDesc/
H A DARMAddressingModes.h68 ia, enumerator in enum:llvm::ARM_AM::AMSubMode
77 case ARM_AM::ia: return "ia";
/freebsd-10.2-release/crypto/openssl/crypto/sha/
H A Dsha_locl.h86 # define Xupdate(a,ix,ia,ib,ic,id) (ix=(a)=(ia^ib^ic^id))
99 # define Xupdate(a,ix,ia,ib,ic,id) do { (a)=(ia^ib^ic^id); \
103 # define Xupdate(a,ix,ia,ib,ic,id) ( (a)=(ia^ib^ic^id), \
/freebsd-10.2-release/contrib/apr/strings/
H A Dapr_snprintf.c425 static char *conv_in_addr(struct in_addr *ia, char *buf_end, apr_size_t *len) argument
427 unsigned addr = ntohl(ia->s_addr);
1161 struct in_addr *ia; local
1163 ia = va_arg(ap, struct in_addr *);
1164 if (ia != NULL) {
1165 s = conv_in_addr(ia, &num_buf[NUM_BUF_SIZE], &s_len);
/freebsd-10.2-release/sys/dev/sym/
H A Dsym_fw2.h1641 SCR_LOAD_REL (ia, 4),
1645 SCR_LOAD_REL (ia, 4),
1655 SCR_REG_REG (ia, SCR_ADD, 8),
1673 SCR_STORE_REL (ia, 4),
1700 SCR_STORE_REL (ia, 4),
1812 SCR_STORE_ABS (ia, 4),
/freebsd-10.2-release/sys/dev/ath/ath_hal/ar9002/
H A Dar9280_attach.c497 const HAL_INI_ARRAY *ia; local
527 ia = &AH5212(ah)->ah_ini_modes;
532 HALASSERT(modesIndex < ia->cols);
533 for (i = 0; i < ia->rows; i++) {
534 uint32_t reg = HAL_INI_VAL(ia, i, 0);
535 uint32_t val = HAL_INI_VAL(ia, i, modesIndex);
/freebsd-10.2-release/sys/kern/
H A Dkern_jail.c137 static int _prison_check_ip4(struct prison *pr, struct in_addr *ia);
2813 prison_get_ip4(struct ucred *cred, struct in_addr *ia) argument
2818 KASSERT(ia != NULL, ("%s: ia is NULL", __func__));
2833 ia->s_addr = pr->pr_ip4[0].s_addr;
2841 * of the primary jail IPv4 address. Only in this case *ia will be updated and
2846 prison_saddrsel_ip4(struct ucred *cred, struct in_addr *ia) argument
2853 KASSERT(ia != NULL, ("%s: ia is NULL", __func__));
2869 ia
2911 prison_local_ip4(struct ucred *cred, struct in_addr *ia) argument
2962 prison_remote_ip4(struct ucred *cred, struct in_addr *ia) argument
3003 _prison_check_ip4(struct prison *pr, struct in_addr *ia) argument
3033 prison_check_ip4(struct ucred *cred, struct in_addr *ia) argument
[all...]
/freebsd-10.2-release/usr.sbin/route6d/
H A Droute6d.c951 struct in6_addr ia; local
963 ia = rrt->rrt_info.rip6_dest;
964 applyplen(&ia, iffp->iff_plen);
965 if (IN6_ARE_ADDR_EQUAL(&ia, &iffp->iff_addr))
999 ia = rrt->rrt_info.rip6_dest;
1000 applyplen(&ia, iffp->iff_plen);
1001 if (IN6_ARE_ADDR_EQUAL(&ia, &iffp->iff_addr)) {
1119 struct in6_addr ia; local
1308 ia = np->rip6_dest;
1309 applyplen(&ia, n
3276 ifa_match(const struct ifc *ifcp, const struct in6_addr *ia, int plen) argument
3362 applyplen(struct in6_addr *ia, int plen) argument
3384 static struct in6_addr ia; local
[all...]
/freebsd-10.2-release/contrib/ntp/ntpdc/
H A Dntpdc_ops.c2304 struct info_auth *ia; local
2311 &itemsize, (void *)&ia, 0, sizeof(*ia));
2324 if (!checkitemsize(itemsize, sizeof(*ia)))
2328 (u_long)ntohl(ia->timereset));
2330 (u_long)ntohl(ia->numkeys));
2332 (u_long)ntohl(ia->numfreekeys));
2334 (u_long)ntohl(ia->keylookups));
2336 (u_long)ntohl(ia->keynotfound));
2338 (u_long)ntohl(ia
[all...]
/freebsd-10.2-release/crypto/heimdal/lib/krb5/
H A Daddr_families.c167 struct in_addr ia; local
169 memcpy (&ia, addr->address.data, 4);
171 return snprintf (str, len, "IPv4:%s", inet_ntoa(ia));
203 unsigned long ia; local
213 _krb5_get_int(inaddr->address.data, &ia, inaddr->address.length);
215 l = ia & m;
/freebsd-10.2-release/contrib/ntp/ntpd/
H A Dntp_request.c2101 register struct info_auth *ia; local
2103 ia = (struct info_auth *)prepare_pkt(srcadr, inter, inpkt,
2106 ia->numkeys = htonl((u_int32)authnumkeys);
2107 ia->numfreekeys = htonl((u_int32)authnumfreekeys);
2108 ia->keylookups = htonl((u_int32)authkeylookups);
2109 ia->keynotfound = htonl((u_int32)authkeynotfound);
2110 ia->encryptions = htonl((u_int32)authencryptions);
2111 ia->decryptions = htonl((u_int32)authdecryptions);
2112 ia->keyuncached = htonl((u_int32)authkeyuncached);
2113 ia
[all...]
/freebsd-10.2-release/contrib/sendmail/src/
H A Dconf.c4417 struct in_addr ia; local
4446 memmove(&ia, h->h_addr_list[i],
4448 addr = (char *) inet_ntoa(ia);
4850 struct in_addr ia; local
4961 ia = sa->sin.sin_addr;
4962 if (ia.s_addr == INADDR_ANY ||
4963 ia.s_addr == INADDR_NONE)
4966 name, inet_ntoa(ia));
4972 (int) sizeof(ip_addr) - 3, inet_ntoa(ia));
5053 struct in_addr ia;
[all...]
/freebsd-10.2-release/sys/netipsec/
H A Dipsec_output.c610 in6_sa_equal_addrwithscope(const struct sockaddr_in6 *sa, const struct in6_addr *ia) argument
618 return IN6_ARE_ADDR_EQUAL(ia, &ia2);
/freebsd-10.2-release/sys/dev/cxgbe/tom/
H A Dt4_tom.c764 struct in6_ifaddr *ia; local
781 TAILQ_FOREACH(ia, &V_in6_ifaddrhead, ia_link) {
782 lip = &ia->ia_addr.sin6_addr;
/freebsd-10.2-release/sys/dev/ath/ath_hal/
H A Dah_internal.h935 extern int ath_hal_ini_write(struct ath_hal *ah, const HAL_INI_ARRAY *ia,
937 extern void ath_hal_ini_bank_setup(uint32_t data[], const HAL_INI_ARRAY *ia,
939 extern int ath_hal_ini_bank_write(struct ath_hal *ah, const HAL_INI_ARRAY *ia,
/freebsd-10.2-release/usr.sbin/ifmcstat/
H A Difmcstat.c535 struct in_ifaddr ia; local
548 KREAD(ifap, &ia, struct in_ifaddr);
549 printf("\tinet %s\n", inet_ntoa(ia.ia_addr.sin_addr));
/freebsd-10.2-release/sys/net/
H A Drtsock.c460 struct in_addr ia; local
475 ia = ((struct sockaddr_in *)sa)->sin_addr;
476 if (prison_check_ip4(cred, &ia) == 0) {
486 ia = ((struct sockaddr_in *)rt->rt_ifa->ifa_addr)->
488 if (prison_get_ip4(cred, &ia) != 0)
494 saun->sin.sin_addr.s_addr = ia.s_addr;
/freebsd-10.2-release/sys/ia64/ia64/
H A Dsyscall.S114 br.ia.sptk b6
/freebsd-10.2-release/sys/netpfil/pf/
H A Dpf.c2140 pf_change_icmp(struct pf_addr *ia, u_int16_t *ip, struct pf_addr *oa, argument
2146 PF_ACPY(&oia, ia, af);
2165 PF_ACPY(ia, na, af);
2172 oia.addr16[0], ia->addr16[0], 0),
2173 oia.addr16[1], ia->addr16[1], 0);
2175 oia.addr16[0], ia->addr16[0], 0),
2176 oia.addr16[1], ia->addr16[1], 0);
2186 oia.addr16[0], ia->addr16[0], u),
2187 oia.addr16[1], ia->addr16[1], u),
2188 oia.addr16[2], ia
[all...]
/freebsd-10.2-release/contrib/llvm/lib/Target/R600/
H A DAMDILISelLowering.cpp410 // char|short jq = ia ^ ib;
422 // int ia = (int)LHS;
423 SDValue ia = DAG.getSExtOrTrunc(LHS, DL, INTTY); local
428 // float fa = (float)ia;
429 SDValue fa = DAG.getNode(ISD::SINT_TO_FP, DL, FLTTY, ia);

Completed in 407 milliseconds

12345