Home
last modified time | relevance | path

Searched refs:ah (Results 1 – 25 of 126) sorted by relevance

123456

/external/icu/icu4c/source/data/locales/
Dzh_Hans_HK.txt47 "zzzz ah:mm:ss",
48 "z ah:mm:ss",
49 "ah:mm:ss",
50 "ah:mm",
68 "zzzz ah:mm:ss",
69 "z ah:mm:ss",
70 "ah:mm:ss",
71 "ah:mm",
94 "zzzz ah:mm:ss",
95 "z ah:mm:ss",
[all …]
Dzh_Hans_SG.txt21 "zzzz ah:mm:ss",
22 "z ah:mm:ss",
23 "ah:mm:ss",
24 "ah:mm",
38 "zzzz ah:mm:ss",
39 "z ah:mm:ss",
40 "ah:mm:ss",
41 "ah:mm",
64 "zzzz ah:mm:ss",
65 "z ah:mm:ss",
[all …]
Dzh_Hant.txt207 "ah:mm:ss [zzzz]",
208 "ah:mm:ss [z]",
209 "ah:mm:ss",
210 "ah:mm",
253 "ah:mm:ss [zzzz]",
254 "ah:mm:ss [z]",
255 "ah:mm:ss",
256 "ah:mm",
476 a{"ah時至ah時"}
477 h{"ah時至h時"}
[all …]
Dzh.txt202 "zzzz ah:mm:ss",
203 "z ah:mm:ss",
204 "ah:mm:ss",
205 "ah:mm",
244 "zzzz ah:mm:ss",
245 "z ah:mm:ss",
246 "ah:mm:ss",
247 "ah:mm",
460 a{"ahah时"}
461 h{"ah至h时"}
[all …]
Dzh_Hans_MO.txt21 "zzzz ah:mm:ss",
22 "z ah:mm:ss",
23 "ah:mm:ss",
24 "ah:mm",
47 "zzzz ah:mm:ss",
48 "z ah:mm:ss",
49 "ah:mm:ss",
50 "ah:mm",
109 "zzzz ah:mm:ss",
110 "z ah:mm:ss",
[all …]
Dzh_Hant_HK.txt129 "ah:mm:ss [zzzz]",
130 "ah:mm:ss [z]",
131 "ah:mm:ss",
132 "ah:mm",
211 "ah:mm:ss [zzzz]",
212 "ah:mm:ss [z]",
213 "ah:mm:ss",
214 "ah:mm",
/external/tcpdump/
Dprint-ah.c46 register const struct ah *ah; in ah_print() local
51 ah = (const struct ah *)bp; in ah_print()
54 TCHECK(*ah); in ah_print()
56 sumlen = ah->ah_len << 2; in ah_print()
57 spi = EXTRACT_32BITS(&ah->ah_spi); in ah_print()
62 printf(",seq=0x%x", EXTRACT_32BITS(ah + 1)); in ah_print()
63 if (bp + sizeof(struct ah) + sumlen > ep) in ah_print()
67 return sizeof(struct ah) + sumlen; in ah_print()
/external/vboot_reference/futility/
Dtraversal.c185 static void fmap_limit_area(FmapAreaHeader *ah, uint32_t len) in fmap_limit_area() argument
187 uint32_t sum = ah->area_offset + ah->area_size; in fmap_limit_area()
188 if (sum < ah->area_size || sum > len) { in fmap_limit_area()
190 __func__, ah->area_name, in fmap_limit_area()
191 ah->area_offset, ah->area_size, len); in fmap_limit_area()
192 ah->area_offset = 0; in fmap_limit_area()
193 ah->area_size = 0; in fmap_limit_area()
202 FmapAreaHeader *ah = 0; in futil_traverse() local
226 fmap_find_by_name(buf, len, fmap, area->name, &ah); in futil_traverse()
228 fmap_limit_area(ah, len); in futil_traverse()
[all …]
Dcmd_dump_fmap.c37 const FmapAreaHeader *ah; in dump_fmap() local
38 ah = (const FmapAreaHeader *) (fmh + 1); in dump_fmap()
77 for (i = 0; i < fmh->fmap_nareas; i++, ah++) { in dump_fmap()
78 snprintf(buf, FMAP_NAMELEN + 1, "%s", ah->area_name); in dump_fmap()
95 printf("%s %d %d\n", buf, ah->area_offset, in dump_fmap()
96 ah->area_size); in dump_fmap()
99 if (ah->area_size) in dump_fmap()
100 printf("0x%08x:0x%08x %s\n", ah->area_offset, in dump_fmap()
101 ah->area_offset + ah->area_size - 1, in dump_fmap()
106 printf("area_offset: 0x%08x\n", ah->area_offset); in dump_fmap()
[all …]
Dcmd_load_fmap.c98 FmapAreaHeader *ah; in do_load_fmap() local
174 uint8_t *area_buf = fmap_find_by_name(buf, len, fmap, a, &ah); in do_load_fmap()
181 if (0 != copy_to_area(f, area_buf, ah->area_size, a)) { in do_load_fmap()
/external/iputils/
Darping.c276 struct arphdr *ah = (struct arphdr*)buf; in send_pack() local
277 unsigned char *p = (unsigned char *)(ah+1); in send_pack()
279 ah->ar_hrd = htons(ME->sll_hatype); in send_pack()
280 if (ah->ar_hrd == htons(ARPHRD_FDDI)) in send_pack()
281 ah->ar_hrd = htons(ARPHRD_ETHER); in send_pack()
282 ah->ar_pro = htons(ETH_P_IP); in send_pack()
283 ah->ar_hln = ME->sll_halen; in send_pack()
284 ah->ar_pln = 4; in send_pack()
285 ah->ar_op = advert ? htons(ARPOP_REPLY) : htons(ARPOP_REQUEST); in send_pack()
287 memcpy(p, &ME->sll_addr, ah->ar_hln); in send_pack()
[all …]
/external/iptables/extensions/
Dlibip6t_ah.c79 const struct ip6t_ah *ah = (struct ip6t_ah *)match->data; in ah_print() local
82 print_spis("spi", ah->spis[0], ah->spis[1], in ah_print()
83 ah->invflags & IP6T_AH_INV_SPI); in ah_print()
84 print_len("length", ah->hdrlen, in ah_print()
85 ah->invflags & IP6T_AH_INV_LEN); in ah_print()
87 if (ah->hdrres) in ah_print()
90 if (ah->invflags & ~IP6T_AH_INV_MASK) in ah_print()
92 ah->invflags & ~IP6T_AH_INV_MASK); in ah_print()
Dlibipt_ah.c58 const struct ipt_ah *ah = (struct ipt_ah *)match->data; in ah_print() local
61 print_spis("spi", ah->spis[0], ah->spis[1], in ah_print()
62 ah->invflags & IPT_AH_INV_SPI); in ah_print()
63 if (ah->invflags & ~IPT_AH_INV_MASK) in ah_print()
65 ah->invflags & ~IPT_AH_INV_MASK); in ah_print()
/external/iptables/tests/
Doptions-ipv4.rules10 -A INPUT -p ah -m ah --ahspi 1
11 -A INPUT -p ah -m ah --ahspi :2
12 -A INPUT -p ah -m ah --ahspi 0:3
13 -A INPUT -p ah -m ah --ahspi 4:
14 -A INPUT -p ah -m ah --ahspi 5:4294967295
/external/dnsmasq/src/
Dcache.c872 struct hostsfile *ah; in cache_reload() local
909 for (i = 0, ah = daemon->addn_hosts; ah; ah = ah->next) in cache_reload()
911 if (i <= ah->index) in cache_reload()
912 i = ah->index + 1; in cache_reload()
914 if (ah->flags & AH_DIR) in cache_reload()
915 ah->flags |= AH_INACTIVE; in cache_reload()
917 ah->flags &= ~AH_INACTIVE; in cache_reload()
920 for (ah = daemon->addn_hosts; ah; ah = ah->next) in cache_reload()
921 if (!(ah->flags & AH_INACTIVE)) in cache_reload()
924 if (stat(ah->fname, &buf) != -1 && S_ISDIR(buf.st_mode)) in cache_reload()
[all …]
/external/llvm/test/CodeGen/X86/
Dh-registers-0.ll20 ; X86-32: incb %ah
38 ; X86-32: incb %ah
56 ; X86-32: incb %ah
67 ; X86-64: movzbl %ah, %eax
73 ; X86-32: movzbl %ah, %eax
82 ; X86-64: movzbl %ah, %eax
88 ; X86-32: movzbl %ah, %eax
97 ; X86-64: movzbl %ah, %eax
103 ; X86-32: movzbl %ah, %eax
Ddivrem8_ext.ll9 ; CHECK: movzbl %ah, [[REG_REM:%[a-z0-9]+]]
22 ; CHECK: movzbl %ah, %eax
31 ; CHECK: movzbl %ah, %eax
42 ; CHECK: movzbl %ah, %eax
54 ; CHECK: movsbl %ah, [[REG_REM:%[a-z0-9]+]]
68 ; CHECK: movsbl %ah, %eax
78 ; CHECK: movsbl %ah, %eax
90 ; CHECK: movsbl %ah, %eax
Dh-register-store.ll3 ; X64-NEXT: movb %ah, (%rsi)
5 ; X64-NEXT: movb %ah, (%rsi)
7 ; X64-NEXT: movb %ah, (%rsi)
21 ; X32: movb %ah, (%e
23 ; X32: movb %ah, (%e
25 ; X32: movb %ah, (%e
Dtest-shrink.ll6 ; CHECK-64: testb $8, {{%ah|%ch}}
9 ; CHECK-32: testb $8, %ah
40 ; CHECK-64: testb $8, {{%ah|%ch}}
43 ; CHECK-32: testb $8, %ah
74 ; CHECK-64: testb $8, {{%ah|%ch}}
77 ; CHECK-32: testb $8, %ah
/external/vboot_reference/host/lib/
Dfmap.c51 FmapAreaHeader *ah; in fmap_find_by_name() local
58 ah = (FmapAreaHeader*)((void *)fmap + sizeof(FmapHeader)); in fmap_find_by_name()
60 if (!strncmp(ah[i].area_name, name, FMAP_NAMELEN)) { in fmap_find_by_name()
62 *ah_ptr = ah + i; in fmap_find_by_name()
63 return ptr + ah[i].area_offset; in fmap_find_by_name()
/external/libvncserver/webclients/novnc/include/web-socket-js/
Dswfobject.js4ah=t.userAgent.toLowerCase(),Y=t.platform.toLowerCase(),ae=Y?/win/.test(Y):/win/.test(ah),ac=Y?/ma… argument
/external/proguard/src/proguard/gui/splash/
DRectangleSprite.java103 int ah = arcHeight.getInt(time); in paint() local
107 graphics.fillRoundRect(xt, yt, w, h, aw, ah); in paint()
111 graphics.drawRoundRect(xt, yt, w, h, aw, ah); in paint()
/external/iproute2/misc/
Darpd.c187 struct arphdr *ah = (struct arphdr*)buf; in send_probe() local
188 unsigned char *p = (unsigned char *)(ah+1); in send_probe()
211 ah->ar_hrd = htons(ifr.ifr_hwaddr.sa_family); in send_probe()
212 ah->ar_pro = htons(ETH_P_IP); in send_probe()
213 ah->ar_hln = 6; in send_probe()
214 ah->ar_pln = 4; in send_probe()
215 ah->ar_op = htons(ARPOP_REQUEST); in send_probe()
217 memcpy(p, ifr.ifr_hwaddr.sa_data, ah->ar_hln); in send_probe()
218 p += ah->ar_hln; in send_probe()
227 memcpy(p, &sll.sll_addr, ah->ar_hln); in send_probe()
[all …]
/external/zlib/src/contrib/masmx64/
Dinffasx64.asm103 mov cl, ah ; /* cl = this.bits */
104 sub bl, ah ; /* bits -= this.bits */
119 mov cl, ah ; /* cl = this.bits */
120 sub bl, ah ; /* bits -= this.bits */
169 mov cl, ah
170 sub bl, ah ; /* bits -= this.bits */
226 mov ah, al
/external/valgrind/none/tests/s390x/
Dadd.stdout.exp12 ah 0 + 0000000000000000 + 0000000000000000 = 0000000000000000 (cc=0)
13 ah 0 + 0000000000000001 + 0000000000000000 = 0000000000000001 (cc=2)
14 ah 0 + 000000000000FFFF + 0000000000000000 = 000000000000FFFF (cc=2)
15 ah 0 + 0000000000007FFF + 0000000000000000 = 0000000000007FFF (cc=2)
16 ah 0 + 0000000000008000 + 0000000000000000 = 0000000000008000 (cc=2)
17 ah 0 + 00000000FFFFFFFF + 0000000000000000 = 00000000FFFFFFFF (cc=1)
18 ah 0 + 0000000080000000 + 0000000000000000 = 0000000080000000 (cc=1)
19 ah 0 + 000000007FFFFFFF + 0000000000000000 = 000000007FFFFFFF (cc=2)
20 ah 0 + FFFFFFFFFFFFFFFF + 0000000000000000 = FFFFFFFFFFFFFFFF (cc=1)
21 ah 0 + 8000000000000000 + 0000000000000000 = 8000000000000000 (cc=0)
[all …]

123456