Searched refs:al (Results 26 - 50 of 165) sorted by relevance

1234567

/freebsd-10.2-release/secure/lib/libcrypto/amd64/
H A Drc4-md5-x86_64.S33 addb %al,%cl
59 addb %dl,%al
63 movzbl %al,%eax
85 addb %al,%cl
96 addb %dl,%al
100 movzbl %al,%eax
121 addb %al,%cl
132 addb %dl,%al
136 movzbl %al,%eax
157 addb %al,
[all...]
/freebsd-10.2-release/sys/boot/pc98/kgzldr/
H A Dcrt.s44 crt_putchr: movb 0x4(%esp,1),%al # Get character
51 crt_putchr.1: cmpb $0xa,%al # New line?
54 movb %al,(%edi,%ecx,1) # Write char
62 incb %al
71 movb $' ',%al # Space
79 crt_putchr.5: inb $0x60,%al # Move cursor
80 testb $0x04,%al
82 movb $0x49,%al
83 outb %al,$0x62
84 movb %dl,%al
[all...]
/freebsd-10.2-release/contrib/libarchive/libarchive/
H A Darchive_cmdline.c113 ssize_t al; local
119 al = get_argument(&as, cmd);
120 if (al < 0) {
139 cmd += al;
142 al = get_argument(&as, cmd);
143 if (al < 0) {
147 if (al == 0)
149 cmd += al;
/freebsd-10.2-release/sys/boot/i386/gptboot/
H A Dgptldr.S108 inb $0x64,%al # Get status
109 testb $0x2,%al # Busy?
111 movb $0xd1,%al # Command: Write
112 outb %al,$0x64 # output port
113 seta20.2: inb $0x64,%al # Get status
114 testb $0x2,%al # Busy?
116 movb $0xdf,%al # Enable
117 outb %al,$0x60 # A20
/freebsd-10.2-release/sys/boot/i386/pxeldr/
H A Dpxeldr.S152 orb $0x1, %al # protected
185 andb $~0x1, %al # protected
225 putstr: lodsb # load %al from %ds:(%si)
226 testb %al,%al # stop at null
231 int $0x10 # call BIOS, print char in %al
245 inb $0x64,%al # Get status
246 testb $0x2,%al # Busy?
248 movb $0xd1,%al # Command: Write
249 outb %al,
[all...]
/freebsd-10.2-release/sys/cddl/contrib/opensolaris/common/atomic/amd64/
H A Dopensolaris_atomic.S40 movb (%rdi), %al // %al = old value
43 orb %al, %cl // %cl = new value
/freebsd-10.2-release/secure/lib/libcrypto/i386/
H A Dbf-686.s28 movb %ch,%al
34 movb %ch,%al
47 movb %dh,%al
53 movb %dh,%al
66 movb %ch,%al
72 movb %ch,%al
85 movb %dh,%al
91 movb %dh,%al
104 movb %ch,%al
110 movb %ch,%al
[all...]
H A Drc4-586.s21 movb (%edi),%al
27 incb %al
49 movzbl %al,%eax
64 movzbl %al,%eax
78 movzbl %al,%eax
90 movzbl %al,%eax
102 movzbl %al,%eax
114 movzbl %al,%eax
126 movzbl %al,%eax
138 movzbl %al,
[all...]
/freebsd-10.2-release/contrib/netbsd-tests/lib/libm/
H A Dt_round.c60 long double al = VALL, bl, cl; local
64 bl = roundl(al);
72 cl = roundl(-al);
/freebsd-10.2-release/contrib/tcpdump/
H A Dprint-cdp.c252 int pt, pl, al, num; local
275 al = EXTRACT_16BITS(&p[pl]); /* address length */
277 if (pt == PT_NLPID && pl == 1 && *p == NLPID_IP && al == 4) {
295 memcmp(p, prot_ipv6, 8) == 0 && al == 16) {
303 TCHECK2(*p, al);
304 if (p + al > endp)
310 p += al;
326 al = (*p << 8) + *(p + 1);
327 printf(", al=%d, a=", al);
[all...]
/freebsd-10.2-release/crypto/openssl/ssl/
H A Dd1_srtp.c282 int *al)
295 *al = SSL_AD_DECODE_ERROR;
307 *al = SSL_AD_DECODE_ERROR;
315 *al = SSL_AD_DECODE_ERROR;
355 *al = SSL_AD_DECODE_ERROR;
387 int *al)
399 *al = SSL_AD_DECODE_ERROR;
407 *al = SSL_AD_DECODE_ERROR;
415 *al = SSL_AD_ILLEGAL_PARAMETER;
425 *al
281 ssl_parse_clienthello_use_srtp_ext(SSL *s, unsigned char *d, int len, int *al) argument
386 ssl_parse_serverhello_use_srtp_ext(SSL *s, unsigned char *d, int len, int *al) argument
[all...]
H A Ds3_both.c244 int al, i, ok; local
263 al = SSL_AD_UNEXPECTED_MESSAGE;
273 al = SSL_AD_DECODE_ERROR;
279 al = SSL_AD_DECRYPT_ERROR;
299 ssl3_send_alert(s, SSL3_AL_FATAL, al);
419 int i, al; local
424 al = SSL_AD_UNEXPECTED_MESSAGE;
476 al = SSL_AD_UNEXPECTED_MESSAGE;
496 al = SSL_AD_ILLEGAL_PARAMETER;
501 al
590 int al; local
[all...]
H A Ds3_srvr.c189 static int ssl_check_srp_ext_ClientHello(SSL *s, int *al) argument
193 *al = SSL_AD_UNRECOGNIZED_NAME;
203 *al = SSL_AD_UNKNOWN_PSK_IDENTITY;
205 ret = SSL_srp_server_param_with_username(s, al);
370 int al; local
371 if ((ret = ssl_check_srp_ext_ClientHello(s, &al)) < 0) {
379 ssl3_send_alert(s, SSL3_AL_FATAL, al);
384 if (al != TLS1_AD_UNKNOWN_PSK_IDENTITY)
970 int i, j, ok, al, ret = -1; local
1007 al
1654 int al, i; local
2177 int i, al, ok; local
2958 int al, ok, ret = 0; local
3166 int i, ok, al, ret = -1; local
[all...]
H A Dt1_lib.c985 unsigned char *limit, int *al)
1095 *al = TLS1_AD_UNRECOGNIZED_NAME;
1100 *al = TLS1_AD_INTERNAL_ERROR;
1108 *al = TLS1_AD_UNRECOGNIZED_NAME;
1162 *al = TLS1_AD_INTERNAL_ERROR;
1197 *al = TLS1_AD_INTERNAL_ERROR;
1222 *al = SSL_AD_DECODE_ERROR;
1227 *al = SSL_AD_DECODE_ERROR;
1243 *al = TLS1_AD_INTERNAL_ERROR;
1253 *al
984 ssl_parse_clienthello_tlsext(SSL *s, unsigned char **p, unsigned char *limit, int *al) argument
1453 ssl_parse_serverhello_tlsext(SSL *s, unsigned char **p, unsigned char *d, int n, int *al) argument
1849 int al = SSL_AD_UNRECOGNIZED_NAME; local
1959 int al; local
2021 int al = SSL_AD_UNRECOGNIZED_NAME; local
[all...]
/freebsd-10.2-release/sys/boot/i386/boot0/
H A Dboot0.S271 movb (%bx),%al # Load type
272 test %al, %al # skip empty partition
305 subb $0x80-0x1,%al # Does next
306 cmpb NHRDRV,%al # drive exist? (from BIOS?)
316 xorb %al,%al # Drive 0
323 print_drive: addb $'0'|0x80,%al # Save next
324 movb %al,_NXTDRV(%bp) # drive number
342 beep: movb $ASCII_BEL,%al # Inpu
[all...]
H A Dboot0ext.S142 movb (%bx),%al # Load type
173 subb $0x80-0x1,%al # Does next
174 cmpb NHRDRV,%al # drive exist? (from BIOS?)
186 xorb %al,%al # Drive 0
194 main.6: addb $'0'|0x80,%al # Save next
195 movb %al,_NXTDRV(%bp) # drive number
225 main.9: movb _OPT(%bp),%al # Load default
234 main.10: movb $0x7,%al # Signal
241 movb %ah,%al # Sca
[all...]
/freebsd-10.2-release/sys/boot/pc98/boot0.5/
H A Dboot.s41 movb daua(%si), %al
42 movb %al, b_daua
48 movb partnum(%si), %al # %al = real partition number
54 movb parttable(%si), %al # IPLS
55 movb %al, b_sector
57 movb parttable(%si), %al # IPLH
58 movb %al, b_head
74 movb b_daua, %al
95 # %al
[all...]
H A Ddisk.s69 movb iplbuf(%si), %al
70 orb %al, %al
104 movb daua(%si), %al
112 movb iplbuf(%bx), %al
113 movb %al, defpartflag
115 movb iplbuf(%bx), %al
116 movb %al, defpartnum
141 movb defpartflag, %al
142 movb %al, iplbu
[all...]
H A Dsyscons.s35 # %al character code
36 # destroyed: %al, %bx
54 # %al attribute
74 # %al: character code
95 movb (%di), %al
96 orb %al, %al
144 # %al: attribute
198 movb $0x42, %al
211 movb $8, %al
[all...]
H A Dselector.s92 movb parttable(%di), %al
124 movb defpartnum, %al
125 cmpb partnum(%bx), %al
127 movb $'*', %al
131 movb $' ', %al
148 movb $' ', %al
168 movb partnum(%si), %al # %al = real partition number
178 movb %al, defpartnum
191 movb $'>', %al
[all...]
/freebsd-10.2-release/contrib/netbsd-tests/net/sys/
H A Dt_rfc6056.c51 test(const char *hostname, const char *service, int family, int al) argument
84 if (setsockopt(s, proto, option, &al, sizeof(al)) == -1)
105 if (setsockopt(s, proto, option, &al, sizeof(al)) == -1)
/freebsd-10.2-release/contrib/traceroute/
H A Difaddrlist.c78 register struct ifaddrlist *al; local
108 al = ifaddrlist;
166 al->addr = sin->sin_addr.s_addr;
167 al->device = strdup(device);
168 ++al;
/freebsd-10.2-release/sys/amd64/acpica/
H A Dacpi_wakecode.S78 movb $(TIMER_SEL2 | TIMER_SQWAVE | TIMER_16BIT), %al
79 outb %al, $TIMER_MODE
82 inb $IO_PPI, %al
83 orb $PIT_SPKR, %al
84 outb %al, $IO_PPI
88 outb %al, $TIMER_CNTR2
90 outb %al, $TIMER_CNTR2
/freebsd-10.2-release/sys/boot/i386/zfsboot/
H A Dzfsldr.S145 inb $0x64,%al # Get status
146 testb $0x2,%al # Busy?
148 movb $0xd1,%al # Command: Write
149 outb %al,$0x64 # output port
150 seta20.2: inb $0x64,%al # Get status
151 testb $0x2,%al # Busy?
153 movb $0xdf,%al # Enable
154 outb %al,$0x60 # A20
186 read.1: mov %ah,%al # Format
210 testb %al,
[all...]
/freebsd-10.2-release/sys/pc98/apm/
H A Dapm_bioscall.S69 inb %dx,%al
71 outb %al,%dx

Completed in 221 milliseconds

1234567