| /freebsd-13-stable/lib/libc/i386/string/ |
| HD | strcpy.S | 52 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 …]
|
| HD | strcat.S | 62 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-13-stable/usr.sbin/mailwrapper/ |
| HD | mailwrapper.c | 63 initarg(struct arglist *al) in initarg() argument 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() argument 75 if (al->argc == al->maxc) { in addarg() 76 al->maxc <<= 1; in addarg() 77 al->argv = realloc(al->argv, al->maxc * sizeof(char *)); in addarg() 78 if (al->argv == NULL) in addarg() 82 al->argv[al->argc++] = NULL; in addarg() [all …]
|
| /freebsd-13-stable/usr.sbin/rpcbind/ |
| HD | rpcb_stat.c | 107 rpcbs_addrlist *al; in rpcbs_getaddr() local 112 for (al = inf[rtype].addrinfo; al; al = al->next) { in rpcbs_getaddr() 114 if(al->netid == NULL) in rpcbs_getaddr() 116 if ((al->prog == prog) && (al->vers == vers) && in rpcbs_getaddr() 117 (strcmp(al->netid, netid) == 0)) { in rpcbs_getaddr() 119 al->failure++; in rpcbs_getaddr() 121 al->success++; in rpcbs_getaddr() 129 al = (rpcbs_addrlist *) malloc(sizeof (rpcbs_addrlist)); in rpcbs_getaddr() 130 if (al == NULL) { in rpcbs_getaddr() 133 al->prog = prog; in rpcbs_getaddr() [all …]
|
| /freebsd-13-stable/stand/i386/libi386/ |
| HD | relocater_tramp.S | 88 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-13-stable/sys/dev/acpica/Osd/ |
| HD | OsdSynch.c | 500 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-13-stable/contrib/tcsh/nls/spanish/ |
| HD | set2 | 3 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 …]
|
| /freebsd-13-stable/sys/crypto/openssl/amd64/ |
| HD | rc4-x86_64.S | 50 addb %al,%cl 54 addb %dl,%al 68 addb %al,%cl 74 addb %al,%dl 84 addb %al,%cl 90 addb %al,%dl 100 addb %al,%cl 106 addb %al,%dl 116 addb %al,%cl 122 addb %al,%dl [all …]
|
| HD | rc4-md5-x86_64.S | 47 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-13-stable/sbin/ipf/libipf/ |
| HD | alist_new.c | 17 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-13-stable/stand/i386/boot2/ |
| HD | sio.S | 29 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 …]
|
| HD | boot1.S | 102 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-13-stable/contrib/llvm-project/openmp/runtime/src/ |
| HD | kmp_alloc.cpp | 1386 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-13-stable/sys/contrib/device-tree/Bindings/arm/cpu-enable-method/ |
| D | al,alpine-smp | 2 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". 36 - compatible : Should contain "al,alpine-sysfabric-service" and "syscon". 45 enable-method = "al,alpine-smp"; 73 compatible = "al,alpine-cpu-resume"; [all …]
|
| /freebsd-13-stable/lib/libc/amd64/string/ |
| HD | strcmp.S | 19 movb (%rdi),%al 23 testb %al,%al 25 cmpb %al,%dl 58 movb (%rdi),%al 62 testb %al,%al 64 cmpb %al,%dl 68 movzbq %al,%rax
|
| /freebsd-13-stable/sys/crypto/openssl/i386/ |
| HD | rc4-586.S | 21 movb (%edi),%al 27 incb %al 52 movzbl %al,%eax 67 movzbl %al,%eax 81 movzbl %al,%eax 93 movzbl %al,%eax 105 movzbl %al,%eax 117 movzbl %al,%eax 129 movzbl %al,%eax 141 movzbl %al,%eax [all …]
|
| /freebsd-13-stable/stand/i386/boot0/ |
| HD | boot0.S | 269 movb (%bx),%al # Load type 270 test %al, %al # skip empty partition 303 subb $0x80-0x1,%al # Does next 304 cmpb NHRDRV,%al # drive exist? (from BIOS?) 314 xorb %al,%al # Drive 0 321 print_drive: addb $'0'|0x80,%al # Save next 322 movb %al,_NXTDRV(%bp) # drive number 340 beep: movb $ASCII_BEL,%al # Input error, print or beep 373 use_default: movb _OPT(%bp),%al # Load default 388 movb %ah,%al # move scan code to %al [all …]
|
| /freebsd-13-stable/crypto/openssl/crypto/bn/ |
| HD | bn_sqr.c | 29 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-13-stable/contrib/dma/ |
| HD | aliases_parse.y | 66 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-13-stable/contrib/tcpdump/ |
| HD | print-cdp.c | 355 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-13-stable/sys/contrib/device-tree/Bindings/interrupt-controller/ |
| D | al,alpine-msix.txt | 7 - 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-13-stable/contrib/libarchive/libarchive/ |
| HD | archive_cmdline.c | 111 ssize_t al; in __archive_cmdline_parse() local 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()
|
| /freebsd-13-stable/stand/i386/zfsboot/ |
| HD | zfsldr.S | 160 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-13-stable/sys/i386/acpica/ |
| HD | acpi_wakecode.S | 71 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-13-stable/stand/i386/pxeldr/ |
| HD | pxeldr.S | 242 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
|