HomeSort by relevance Sort by last modified time
    Searched refs:ah (Results 1 - 25 of 153) sorted by null

1 2 3 4 5 6 7

  /external/tcpdump/
print-ah.c 1 /* $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->ah_spi)
    [all...]
ah.h 1 /* $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
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/bin/tests/
shr.asm 3 y: mov ah, y>>8
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/tests/gas64/
gas-prefix.asm 6 rex movb $0, %ah
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
SimpleAttributeTest.java 87 int ah = a.hashCode(); local
89 assertFalse(ah == new Object().hashCode());
92 assertFalse(ah == new SimpleAttribute(SdkConstants.NS_RESOURCES,
96 assertFalse(ah == new SimpleAttribute(SdkConstants.NS_RESOURCES,
100 assertFalse(ah == new SimpleAttribute("uri", "name", "value = with space ").hashCode());
102 assertFalse(ah == new SimpleAttribute("uri", "wrong name", "value").hashCode());
104 assertEquals(ah, new SimpleAttribute(SdkConstants.NS_RESOURCES,
  /external/iptables/extensions/
libip6t_ah.c 14 "ah match options:\n"
79 const struct ip6t_ah *ah = (struct ip6t_ah *)match->data; local
81 printf(" ah ");
82 print_spis("spi", ah->spis[0], ah->spis[1],
83 ah->invflags & IP6T_AH_INV_SPI);
84 print_len("length", ah->hdrlen,
85 ah->invflags & IP6T_AH_INV_LEN);
87 if (ah->hdrres)
90 if (ah->invflags & ~IP6T_AH_INV_MASK
    [all...]
libipt_ah.c 12 "ah match options:\n"
58 const struct ipt_ah *ah = (struct ipt_ah *)match->data; local
60 printf(" ah ");
61 print_spis("spi", ah->spis[0], ah->spis[1],
62 ah->invflags & IPT_AH_INV_SPI);
63 if (ah->invflags & ~IPT_AH_INV_MASK)
65 ah->invflags & ~IPT_AH_INV_MASK);
89 .name = "ah",
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/tests/
mem64-err.asm 7 mov ah, [r8]
nomem64.asm 2 mov ah, 5
21 mov ah, bl
  /external/proguard/src/proguard/gui/splash/
RectangleSprite.java 103 int ah = arcHeight.getInt(time); local
107 graphics.fillRoundRect(xt, yt, w, h, aw, ah);
111 graphics.drawRoundRect(xt, yt, w, h, aw, ah);
  /external/qemu/distrib/sdl-1.2.15/src/hermes/
x86p_32.asm 470 mov ah,[esi+2] ; red
471 shr ah,3
477 mov [edi+1],ah
494 mov ah,[esi+2] ; red
495 shr ah,3
501 mov [edi+1],ah
526 shr ah,2
558 mov ah,[esi+2] ; red
559 shr ah,3
565 mov [edi+1],ah
    [all...]
x86p_16.asm 35 mov ah,[esi+1]
45 mov [edi+1],ah
58 mov ah,[esi+1]
68 mov [edi+1],ah
114 mov ah,[esi+1]
124 mov [edi+1],ah
145 mov ah,[esi+1]
152 mov [edi+1],ah
165 mov ah,[esi+1]
172 mov [edi+1],ah
    [all...]
  /external/grub/stage2/
start_eltorito.S 151 mov $0x42, %ah /* Extended Read */
181 mov %ah, %dl /* Save error code */
185 mov ABS(dapa+2), %ah /* Sector transfer count */
188 mov $1, %ah /* Drop transfer size to 1 */
193 shr $1, %ah /* Otherwise, try to reduce */
194 adc $0, %ah /* the max transfer size, but not */
196 mov %ah, ABS(MaxTransfer)
197 mov %ah, ABS(dapa+2)
219 * %ah = 0xe %al = character
224 mov $0x0E, %ah
    [all...]
  /bionic/libc/arch-x86/string/
sse2-memrchr-atom.S 229 test %ah, %ah
296 test %ah, %ah
313 test %ah, %ah
333 test %ah, %ah
360 mov %ah, %dh
363 test $0x08, %ah
    [all...]
sse2-wcsrchr-atom.S 237 test %ah, %ah
304 test %ah, %ah
318 test %ah, %ah
334 test $15 << 4, %ah
386 test %ah, %ah
395 test %ah, %a
    [all...]
sse2-strchr-atom.S 235 mov %ah, %cl
243 test $0x10, %ah
247 test $0x20, %ah
251 test $0x40, %ah
260 test $0x01, %ah
264 test $0x02, %ah
268 test $0x04, %ah
299 test $0x01, %ah
301 test $0x02, %ah
303 test $0x04, %ah
    [all...]
memset.S 27 movb %al,%ah /* copy char to all bytes in word */
  /external/iputils/
arping.c 276 struct arphdr *ah = (struct arphdr*)buf; local
277 unsigned char *p = (unsigned char *)(ah+1);
279 ah->ar_hrd = htons(ME->sll_hatype);
280 if (ah->ar_hrd == htons(ARPHRD_FDDI))
281 ah->ar_hrd = htons(ARPHRD_ETHER);
282 ah->ar_pro = htons(ETH_P_IP);
283 ah->ar_hln = ME->sll_halen;
284 ah->ar_pln = 4;
285 ah->ar_op = advert ? htons(ARPOP_REPLY) : htons(ARPOP_REQUEST);
287 memcpy(p, &ME->sll_addr, ah->ar_hln)
379 struct arphdr *ah = (struct arphdr*)buf; local
    [all...]
  /external/chromium_org/third_party/freetype/src/truetype/
ttgload.h 47 FT_UShort* ah );
  /external/freetype/src/truetype/
ttgload.h 47 FT_UShort* ah );
  /external/dnsmasq/src/
cache.c 872 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->flags &= ~AH_INACTIVE
1215 struct hostsfile *ah; local
    [all...]
  /external/chromium_org/sync/test/android/javatests/src/org/chromium/sync/test/util/
MockAccountManager.java 123 for (AccountHolder ah : mAccounts) {
124 accounts[i++] = ah.getAccount();
227 final AccountHolder ah = getAccountHolder(account);
228 if (ah.hasBeenAccepted(authTokenType)) {
229 final String authToken = internalGenerateAndStoreAuthToken(ah, authTokenType);
236 return getAuthTokenBundle(ah.getAccount(), authToken);
240 Log.d(TAG, "getAuthTokenFuture: Account " + ah.getAccount() +
266 private String internalGenerateAndStoreAuthToken(AccountHolder ah, String authTokenType) {
269 if (!ah.hasAuthTokenRegistered(authTokenType) &&
270 ah.getAuthToken(authTokenType) == null)
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/des/asm/
des-586.S 18 movb %ah,%cl
26 movb %ah,%bl
47 movb %ah,%cl
55 movb %ah,%bl
76 movb %ah,%cl
84 movb %ah,%bl
105 movb %ah,%cl
113 movb %ah,%bl
134 movb %ah,%cl
142 movb %ah,%b
    [all...]
  /external/openssl/crypto/des/asm/
des-586.S 18 movb %ah,%cl
26 movb %ah,%bl
47 movb %ah,%cl
55 movb %ah,%bl
76 movb %ah,%cl
84 movb %ah,%bl
105 movb %ah,%cl
113 movb %ah,%bl
134 movb %ah,%cl
142 movb %ah,%b
    [all...]
  /dalvik/vm/compiler/template/mips/
TEMPLATE_SHR_LONG.S 10 sra a3, rARG1, 31 # a3<- sign(ah)

Completed in 1307 milliseconds

1 2 3 4 5 6 7