Searched defs:ah (Results 1 - 23 of 23) sorted by relevance

/external/tcpdump/
H A Dprint-ah.c1 /* $NetBSD: print-ah.c,v 1.4 1996/05/20 00:41:16 fvdl Exp $ */
26 "@(#) $Header: /tcpdump/master/tcpdump/print-ah.c,v 1.22 2003/11/19 00:36:06 guy Exp $ (LBL)";
37 #include "ah.h"
46 register const struct ah *ah; local
51 ah = (const struct ah *)bp;
54 TCHECK(*ah);
56 sumlen = ah->ah_len << 2;
57 spi = EXTRACT_32BITS(&ah
[all...]
H A Dah.h1 /* $NetBSD: ah.h,v 1.12 2000/07/23 05:23:04 itojun Exp $ */
2 /* $KAME: ah.h,v 1.12 2000/07/20 17:41:01 itojun Exp $ */
40 struct ah { struct
H A Dprint-aodv.c59 const struct aodv_hello *ah; local
73 ah = (void *)ep;
75 (unsigned long)EXTRACT_32BITS(&ah->interval));
H A Dprint-icmp6.c47 #include "ah.h"
529 struct ah *ah; local
579 ah = (struct ah *)bp;
580 if (!TTEST(ah->ah_len))
582 nh = ah->ah_nxt;
583 hlen = (ah->ah_len + 2) << 2;
/external/freetype/src/truetype/
H A Dttdriver.c149 FT_UShort ah; local
152 TT_Get_VMetrics( face, start + nn, check, &tsb, &ah );
153 advances[nn] = ah;
H A Dttinterp.c1147 FT_UInt32 ah, al, mid, lo, hi; local
1157 ah = (FT_UInt32)( ( a >> 16 ) & 0xFFFFU );
1161 mid = ah * b;
/external/iptables/extensions/
H A Dlibip6t_ah.c163 const struct ip6t_ah *ah = (struct ip6t_ah *)match->data; local
165 printf("ah ");
166 print_spis("spi", ah->spis[0], ah->spis[1],
167 ah->invflags & IP6T_AH_INV_SPI);
168 print_len("length", ah->hdrlen,
169 ah->invflags & IP6T_AH_INV_LEN);
171 if (ah->hdrres)
174 if (ah->invflags & ~IP6T_AH_INV_MASK)
176 ah
209 struct ip6tables_match ah = { variable in typeref:struct:ip6tables_match
[all...]
H A Dlibipt_ah.c140 const struct ipt_ah *ah = (struct ipt_ah *)match->data; local
142 printf("ah ");
143 print_spis("spi", ah->spis[0], ah->spis[1],
144 ah->invflags & IPT_AH_INV_SPI);
145 if (ah->invflags & ~IPT_AH_INV_MASK)
147 ah->invflags & ~IPT_AH_INV_MASK);
171 static struct iptables_match ah = { variable in typeref:struct:iptables_match
173 .name = "ah",
189 register_match(&ah);
[all...]
/external/zlib/contrib/inflate86/
H A Dinffas86.c193 " movb %%ah, %%cl\n" /* cl = this.bits */
194 " subb %%ah, %%bl\n" /* bits -= this.bits */
209 " movb %%ah, %%cl\n" /* cl = this.bits */
210 " subb %%ah, %%bl\n" /* bits -= this.bits */
259 " movb %%ah, %%cl\n"
260 " subb %%ah, %%bl\n" /* bits -= this.bits */
316 " movb %%al, %%ah\n"
509 " movb %%ah, %%cl\n" /* cl = this.bits */
510 " subb %%ah, %%bl\n" /* bits -= this.bits */
573 " movb %%ah,
970 mov ah, al local
[all...]
/external/openssl/crypto/sha/
H A Dsha512.c332 asm("xchgb %%ah,%%al;xchgb %%dh,%%dl;"\
334 "xchgb %%ah,%%al;xchgb %%dh,%%dl;" \
362 _asm xchg ah,al local
366 _asm xchg ah,al local
/external/quake/quake/src/WinQuake/
H A Ddosisms.h69 unsigned char al, ah, eax_b2, eax_b3; member in struct:__anon4454::__anon4457
/external/skia/include/core/
H A DSkFixed.h111 uint32_t ah = a >> 16; local
113 return ah * a + al * ah + (al * al >> 16);
/external/skia/src/core/
H A DSk64.cpp188 uint32_t ah = a >> 16; local
193 uint32_t A = ah * bh;
194 uint32_t B = ah * bl + al * bh;
H A DSkMath.cpp96 uint32_t ah = a >> 16; local
101 uint32_t A = ah * bh;
102 uint32_t B = ah * bl + al * bh;
151 uint32_t ah = a >> 16; local
156 uint32_t R = ah * b + al * bh + (al * bl >> 16);
176 uint32_t ah = a >> 16; local
181 uint32_t A = ah * bh;
182 uint32_t B = ah * bl + al * bh;
207 uint32_t ah = a >> 16; local
209 uint32_t R = ah *
[all...]
/external/iproute2/misc/
H A Darpd.c185 struct arphdr *ah = (struct arphdr*)buf; local
186 unsigned char *p = (unsigned char *)(ah+1);
209 ah->ar_hrd = htons(ifr.ifr_hwaddr.sa_family);
210 ah->ar_pro = htons(ETH_P_IP);
211 ah->ar_hln = 6;
212 ah->ar_pln = 4;
213 ah->ar_op = htons(ARPOP_REQUEST);
215 memcpy(p, ifr.ifr_hwaddr.sa_data, ah->ar_hln);
216 p += ah->ar_hln;
225 memcpy(p, &sll.sll_addr, ah
[all...]
/external/bluetooth/bluez/test/
H A Dhciemu.c847 hci_acl_hdr *ah = (void *) data; local
852 handle = acl_handle(btohs(ah->handle));
860 if (write_n(fd, data, btohs(ah->dlen) + HCI_ACL_HDR_SIZE) < 0) {
876 hci_acl_hdr *ah; local
898 ah = (void *) ptr;
901 len = btohs(ah->dlen);
909 flags = acl_flags(btohs(ah->handle));
910 ah->handle = htobs(acl_handle_pack(conn->handle, flags));
/external/dnsmasq/src/
H A Dcache.c872 struct hostsfile *ah; local
909 for (i = 0, ah = daemon->addn_hosts; ah; ah = ah->next)
911 if (i <= ah->index)
912 i = ah->index + 1;
914 if (ah->flags & AH_DIR)
915 ah->flags |= AH_INACTIVE;
917 ah
1215 struct hostsfile *ah; local
[all...]
/external/openssl/apps/
H A Dx509.c1043 ASN1_HEADER ah; local
1048 ah.header= &os;
1049 ah.data=(char *)x;
1050 ah.meth=X509_asn1_meth();
1052 i=ASN1_i2d_bio_of(ASN1_HEADER,i2d_ASN1_HEADER,out,&ah);
H A Dapps.c752 ASN1_HEADER *ah=NULL; local
807 if ((ah=d2i_ASN1_HEADER(NULL,&p,(long)size)) == NULL)
809 if ((ah->header == NULL) || (ah->header->data == NULL) ||
810 (strncmp(NETSCAPE_CERT_HDR,(char *)ah->header->data,
811 ah->header->length) != 0))
818 ah->meth=X509_asn1_meth();
819 if ((ah=d2i_ASN1_HEADER(&ah,&p,(long)size)) == NULL)
821 x=(X509 *)ah
[all...]
/external/qemu/slirp/
H A Dslirp.c600 struct arphdr *ah = (struct arphdr *)(pkt + ETH_HLEN); local
607 ar_op = ntohs(ah->ar_op);
610 if (!memcmp(ah->ar_tip, &special_addr, 3)) {
611 if (ah->ar_tip[3] == CTL_DNS || ah->ar_tip[3] == CTL_ALIAS)
614 if (ex_ptr->ex_addr == ah->ar_tip[3])
625 reh->h_source[5] = ah->ar_tip[3];
634 memcpy(rah->ar_sip, ah->ar_tip, 4);
635 memcpy(rah->ar_tha, ah->ar_sha, ETH_ALEN);
636 memcpy(rah->ar_tip, ah
[all...]
/external/qemu/slirp-android/
H A Dslirp.c681 struct arphdr *ah = (struct arphdr *)(pkt + ETH_HLEN); local
688 ar_op = ntohs(ah->ar_op);
693 ar_tip_ip = ip_read32h(ah->ar_tip);
719 memcpy(rah->ar_sip, ah->ar_tip, 4);
720 memcpy(rah->ar_tha, ah->ar_sha, ETH_ALEN);
721 memcpy(rah->ar_tip, ah->ar_sip, 4);
728 ip_equal( ip_read(ah->ar_sip), client_ip )) {
729 memcpy(client_ethaddr, ah->ar_sha, ETH_ALEN);
/external/ppp/pppd/
H A Dauth.c2036 u_int32_t a, mask, ah, offset; local
2116 ah = ntohl(a);
2117 if (IN_CLASSA(ah))
2119 else if (IN_CLASSB(ah))
2121 else if (IN_CLASSC(ah))
/external/sqlite/dist/
H A Dsqlite3.c52635 } ah; member in union:vdbeExecUnion
[all...]

Completed in 372 milliseconds