Home
last modified time | relevance | path

Searched refs:al (Results 1 – 25 of 311) sorted by relevance

12345678910>>...13

/freebsd/lib/libc/i386/string/
H A Dstrcpy.S52 L1: movb (%edx),%al /* unroll loop, but not too much */
53 movb %al,(%ecx)
54 testb %al,%al
56 movb 1(%edx),%al
57 movb %al,1(%ecx)
58 testb %al,%al
60 movb 2(%edx),%al
61 movb %al,2(%ecx)
62 testb %al,%al
64 movb 3(%edx),%al
[all …]
H A Dstrcat.S62 L1: movb (%edx),%al /* unroll loop, but not too much */
63 movb %al,(%ecx)
64 testb %al,%al
66 movb 1(%edx),%al
67 movb %al,1(%ecx)
68 testb %al,%al
70 movb 2(%edx),%al
71 movb %al,2(%ecx)
72 testb %al,%al
74 movb 3(%edx),%al
[all …]
/freebsd/usr.sbin/mailwrapper/
H A Dmailwrapper.c63 initarg(struct arglist *al) in initarg()
65 al->argc = 0; in initarg()
66 al->maxc = 10; in initarg()
67 if ((al->argv = calloc(al->maxc, sizeof(char *))) == NULL) in initarg()
72 addarg(struct arglist *al, const char *arg) in addarg()
75 if (al->argc == al->maxc) { in addarg()
76 al->maxc <<= 1; in addarg()
77 al in addarg()
62 initarg(struct arglist * al) initarg() argument
71 addarg(struct arglist * al,const char * arg) addarg() argument
96 struct arglist al; main() local
[all...]
/freebsd/usr.sbin/rpcbind/
H A Drpcb_stat.c102 rpcbs_addrlist *al; in rpcbs_getaddr() local
107 for (al = inf[rtype].addrinfo; al; al = al->next) { in rpcbs_getaddr()
109 if(al->netid == NULL) in rpcbs_getaddr()
111 if ((al->prog == prog) && (al->vers == vers) && in rpcbs_getaddr()
112 (strcmp(al->netid, netid) == 0)) { in rpcbs_getaddr()
114 al->failure++; in rpcbs_getaddr()
116 al->success++; in rpcbs_getaddr()
124 al = (rpcbs_addrlist *) malloc(sizeof (rpcbs_addrlist)); in rpcbs_getaddr()
125 if (al == NULL) { in rpcbs_getaddr()
128 al->prog = prog; in rpcbs_getaddr()
[all …]
/freebsd/stand/i386/libi386/
H A Drelocater_tramp.S88 movb $SEL_SDATA, %al
149 dec %al
163 in $0x21,%al # Save master
165 in $0xa1,%al # Save slave
167 movb $0x11,%al # ICW1 to
168 outb %al,$0x20 # master,
169 outb %al,$0xa0 # slave
170 movb %bl,%al # ICW2 to
171 outb %al,$0x21 # master
172 movb %bh,%al # ICW2 to
[all …]
/freebsd/sys/dev/acpica/Osd/
H A DOsdSynch.c500 struct acpi_spinlock *al; in AcpiOsCreateLock() local
507 if ((al = malloc(sizeof(*al), M_ACPISEM, M_NOWAIT | M_ZERO)) == NULL) in AcpiOsCreateLock()
512 snprintf(al->al_name, sizeof(al->al_name), "ACPI lock (GPE)"); in AcpiOsCreateLock()
514 snprintf(al->al_name, sizeof(al->al_name), "ACPI lock (HW)"); in AcpiOsCreateLock()
517 snprintf(al->al_name, sizeof(al->al_name), "ACPI lock (%p)", al); in AcpiOsCreateLock()
518 mtx_init(&al->al_lock, al->al_name, NULL, MTX_SPIN); in AcpiOsCreateLock()
520 ACPI_DEBUG_PRINT((ACPI_DB_MUTEX, "created %s\n", al->al_name)); in AcpiOsCreateLock()
522 *OutHandle = (ACPI_SPINLOCK)al; in AcpiOsCreateLock()
530 struct acpi_spinlock *al = (struct acpi_spinlock *)Handle; in AcpiOsDeleteLock() local
534 if (al == NULL) { in AcpiOsDeleteLock()
[all …]
/freebsd/sys/crypto/openssl/amd64/
H A Drc4-x86_64.S51 addb %al,%cl
55 addb %dl,%al
69 addb %al,%cl
75 addb %al,%dl
85 addb %al,%cl
91 addb %al,%dl
101 addb %al,%cl
107 addb %al,%dl
117 addb %al,%cl
123 addb %al,%dl
[all …]
H A Drc4-md5-x86_64.S47 addb %al,%cl
73 addb %dl,%al
77 movzbl %al,%eax
99 addb %al,%cl
110 addb %dl,%al
114 movzbl %al,%eax
135 addb %al,%cl
146 addb %dl,%al
150 movzbl %al,%eax
171 addb %al,%cl
[all …]
/freebsd/contrib/tcsh/nls/spanish/
H A Dset23 1 Señal nula
16 14 Señal de usuario 1
17 15 Señal de usuario 2
34 32 Posible señal de entrada/salida
48 46 Suspendido (señal)
49 47 Parado (señal)
62 60 Señal de temporizador virtual
64 62 Señal DIL
67 65 Señal LWP especial
68 66 Señal CPR especial
[all …]
H A Dset312 10 Borra la pantalla y coloca la línea actual al comienzo
18 16 Copia el área entre la marca y el cursor al buffer
22 20 Borra el carácter bajo el cursor o lista posibles finales si está al final de una línea
24 22 Corta del cursor al final de la palabra - se guarda en el buffer
25 23 Se suma al argumento si ha arrancado o introduce el dígito
26 24 Dígito al comienzo del argumento
27 25 Ir al final de la línea de historia
28 26 Convierte en minúsculas los caracteres desde el cursor al final de la palabra
46 44 Corta el área de la marca al cursor y guarda la información en el buffer
55 53 Expande rutas, eliminando cualquier `.' y `..' que encuentre al comienzo
[all …]
/freebsd/sbin/ipf/libipf/
H A Dalist_new.c17 alist_t *al; in alist_new() local
29 al = calloc(1, sizeof(*al)); in alist_new()
30 if (al == NULL) { in alist_new()
39 al->al_not = 1; in alist_new()
73 al->al_mask = htonl(mask); in alist_new()
77 fill6bits(bits, al->al_i6mask.i6); in alist_new()
80 if (gethost(family, host, &al->al_i6addr) == -1) { in alist_new()
86 al->al_family = family; in alist_new()
89 return (al); in alist_new()
91 free(al); in alist_new()
/freebsd/stand/i386/boot2/
H A Dsio.S29 movb $SIO_FMT|0x80,%al # Set format
30 outb %al,(%dx) # and DLAB
35 movb $SIO_FMT,%al # Clear
36 outb %al,(%dx) # DLAB
38 movb $0x3,%al # Set RTS,
39 outb %al,(%dx) # DTR
50 movb $1, %al # Exhausted all tries
59 sio_putc.1: inb (%dx),%al # Transmitter
60 testb $0x20,%al # buffer empty?
65 outb %al,(%dx) # Write character
[all …]
H A Dboot1.S102 movb %dh,%al # blocks to
206 inb $0x64,%al # Get status
207 testb $0x2,%al # Busy?
209 movb $0xd1,%al # Command: Write
210 outb %al,$0x64 # output port
211 seta20.2: inb $0x64,%al # Get status
212 testb $0x2,%al # Busy?
214 movb $0xdf,%al # Enable
215 outb %al,$0x60 # A20
251 testb %al,%al # End of string?
[all …]
/freebsd/contrib/llvm-project/openmp/runtime/src/
H A Dkmp_alloc.cpp1386 kmp_allocator_t *al; in __kmpc_init_allocator() local
1388 al = (kmp_allocator_t *)__kmp_allocate(sizeof(kmp_allocator_t)); // zeroed in __kmpc_init_allocator()
1389 al->memspace = ms; // not used currently in __kmpc_init_allocator()
1396 al->pinned = true; in __kmpc_init_allocator()
1399 __kmp_type_convert(traits[i].value, &(al->alignment)); in __kmpc_init_allocator()
1400 KMP_ASSERT(IS_POWER_OF_TWO(al->alignment)); in __kmpc_init_allocator()
1403 al->pool_size = traits[i].value; in __kmpc_init_allocator()
1406 al->fb = (omp_alloctrait_value_t)traits[i].value; in __kmpc_init_allocator()
1408 al->fb == omp_atv_default_mem_fb || al->fb == omp_atv_null_fb || in __kmpc_init_allocator()
1409 al->fb == omp_atv_abort_fb || al->fb == omp_atv_allocator_fb); in __kmpc_init_allocator()
[all …]
/freebsd/sys/contrib/device-tree/Bindings/arm/cpu-enable-method/
H A Dal,alpine-smp2 Secondary CPU enable-method "al,alpine-smp" binding
5 This document describes the "al,alpine-smp" method for
7 "al,alpine-smp" enable method should be defined in the
10 Enable method name: "al,alpine-smp"
11 Compatible machines: "al,alpine"
17 "al,alpine-cpu-resume" and "al,alpine-nb-service".
26 - compatible : Should contain "al,alpine-cpu-resume".
35 enable-method = "al,alpine-smp";
63 compatible = "al,alpine-cpu-resume";
68 compatible = "al,alpine-sysfabric-service", "syscon";
/freebsd/stand/i386/boot0/
H A Dboot0.S262 movb (%bx),%al # Load type
263 test %al, %al # skip empty partition
296 subb $0x80-0x1,%al # Does next
297 cmpb NHRDRV,%al # drive exist? (from BIOS?)
307 xorb %al,%al # Drive 0
314 print_drive: addb $'0'|0x80,%al # Save next
315 movb %al,_NXTDRV(%bp) # drive number
333 beep: movb $ASCII_BEL,%al # Input error, print or beep
366 use_default: movb _OPT(%bp),%al # Load default
381 movb %ah,%al # move scan code to %al
[all …]
/freebsd/sys/crypto/openssl/i386/
H A Drc4-586.S26 movb (%edi),%al
32 incb %al
57 movzbl %al,%eax
72 movzbl %al,%eax
86 movzbl %al,%eax
98 movzbl %al,%eax
110 movzbl %al,%eax
122 movzbl %al,%eax
134 movzbl %al,%eax
146 movzbl %al,%eax
[all …]
/freebsd/crypto/openssl/crypto/bn/
H A Dbn_sqr.c29 int max, al; in bn_sqr_fixed_top() local
35 al = a->top; in bn_sqr_fixed_top()
36 if (al <= 0) { in bn_sqr_fixed_top()
48 max = 2 * al; /* Non-zero (from above) */ in bn_sqr_fixed_top()
52 if (al == 4) { in bn_sqr_fixed_top()
59 } else if (al == 8) { in bn_sqr_fixed_top()
68 if (al < BN_SQR_RECURSIVE_SIZE_NORMAL) { in bn_sqr_fixed_top()
70 bn_sqr_normal(rr->d, a->d, al, t); in bn_sqr_fixed_top()
74 j = BN_num_bits_word((BN_ULONG)al); in bn_sqr_fixed_top()
77 if (al == j) { in bn_sqr_fixed_top()
[all …]
/freebsd/contrib/dma/
H A Daliases_parse.y66 struct alias *al; variable
70 al = calloc(1, sizeof(*al));
71 if (al == NULL)
73 al->alias = $1;
74 SLIST_FIRST(&al->dests) = $3;
75 $$ = al;
/freebsd/contrib/tcpdump/
H A Dprint-cdp.c355 u_int pt, pl, al; in cdp_print_addr() local
371 al = GET_BE_U_2(p + pl); /* address length */ in cdp_print_addr()
374 al == 4) { in cdp_print_addr()
383 if (l < al) { in cdp_print_addr()
388 p += al; in cdp_print_addr()
389 l -= al; in cdp_print_addr()
391 memcmp(p, prot_ipv6, 8) == 0 && al == 16) { in cdp_print_addr()
401 if (l < al) { in cdp_print_addr()
406 p += al; in cdp_print_addr()
407 l -= al; in cdp_print_addr()
[all …]
/freebsd/sys/contrib/device-tree/Bindings/interrupt-controller/
H A Dal,alpine-msix.txt7 - compatible: should be "al,alpine-msix"
12 - al,msi-base-spi: SPI base of the MSI frame
13 - al,msi-num-spis: number of SPIs assigned to the MSI frame, relative to SPI0
18 compatible = "al,alpine-msix";
23 al,msi-base-spi = <160>;
24 al,msi-num-spis = <160>;
/freebsd/contrib/libarchive/libarchive/
H A Darchive_cmdline.c111 ssize_t al; in __archive_cmdline_parse()
117 al = get_argument(&as, cmd); in __archive_cmdline_parse()
118 if (al < 0) { in __archive_cmdline_parse()
137 cmd += al; in __archive_cmdline_parse()
140 al = get_argument(&as, cmd); in __archive_cmdline_parse()
141 if (al < 0) { in __archive_cmdline_parse()
145 if (al == 0) in __archive_cmdline_parse()
147 cmd += al; in __archive_cmdline_parse()
113 ssize_t al; __archive_cmdline_parse() local
/freebsd/stand/i386/zfsboot/
H A Dzfsldr.S160 inb $0x64,%al # Get status
161 testb $0x2,%al # Busy?
163 movb $0xd1,%al # Command: Write
164 outb %al,$0x64 # output port
165 seta20.2: inb $0x64,%al # Get status
166 testb $0x2,%al # Busy?
168 movb $0xdf,%al # Enable
169 outb %al,$0x60 # A20
201 read.1: mov %ah,%al # Format
225 testb %al,%al # End of string?
[all …]
/freebsd/sys/i386/acpica/
H A Dacpi_wakecode.S71 movb $(TIMER_SEL2 | TIMER_SQWAVE | TIMER_16BIT), %al
72 outb %al, $TIMER_MODE
75 inb $IO_PPI, %al
76 orb $PIT_SPKR, %al
77 outb %al, $IO_PPI
81 outb %al, $TIMER_CNTR2
83 outb %al, $TIMER_CNTR2
/freebsd/stand/i386/pxeldr/
H A Dpxeldr.S242 inb $0x64,%al # Get status
243 testb $0x2,%al # Busy?
245 movb $0xd1,%al # Command: Write
246 outb %al,$0x64 # output port
247 seta20.2: inb $0x64,%al # Get status
248 testb $0x2,%al # Busy?
250 movb $0xdf,%al # Enable
251 outb %al,$0x60 # A20

12345678910>>...13