HomeSort by relevance Sort by last modified time
    Searched refs:outl (Results 26 - 50 of 66) sorted by null

12 3

  /external/syslinux/gpxe/src/arch/i386/core/
x86_io.c 88 PROVIDE_IOAPI_INLINE ( x86, outl );
  /external/syslinux/gpxe/src/arch/x86/include/gpxe/
pcidirect.h 137 outl ( value, PCIDIRECT_CONFIG_DATA );
  /external/lz4/programs/
lz4cli.c 576 size_t outl; local
581 outl = inl;
583 while ((outl >= inl-4) && (input_filename[outl] == extension[outl-inl+4])) dynNameSpace[outl--]=0;
584 if (outl != inl-5) { DISPLAYLEVEL(1, "Cannot determine an output filename\n"); badusage(exeName); }
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/Pei/PeiLib/Ia32/
SupportItpDebug.S 43 outl %eax, %dx
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/Pei/PeiLib/X64/
SupportItpDebug.S 37 outl %eax, %dx
  /external/boringssl/src/crypto/bio/
fd.c 161 static int fd_read(BIO *b, char *out, int outl) {
164 ret = BORINGSSL_READ(b->num, out, outl);
bio_mem.c 138 static int mem_read(BIO *bio, char *out, int outl) {
143 ret = outl;
file.c 149 static int file_read(BIO *b, char *out, int outl) {
154 size_t ret = fread(out, 1, outl, (FILE *)b->ptr);
161 // fread reads at most |outl| bytes, so |ret| fits in an int.
  /external/syslinux/gpxe/src/include/gpxe/
io.h 347 void outl ( uint32_t data, volatile uint32_t *io_addr );
348 #define outl( data, io_addr ) \ macro
349 IOAPI_WRITE ( outl, uint32_t, data, io_addr, "IO", 8 )
496 #define outl_p( data, io_addr ) OUTX_P ( outl, data, io_addr )
  /external/syslinux/gpxe/src/drivers/net/
tlan.c 312 outl(data, BASE + TLAN_HOST_CMD);
320 outl(data, BASE + TLAN_HOST_CMD);
335 outl(TLAN_HC_LD_TMR | 0x3f, BASE + TLAN_HOST_CMD);
336 outl(TLAN_HC_LD_THR | 0x0, BASE + TLAN_HOST_CMD);
473 outl(virt_to_bus(&rx_ring), BASE + TLAN_CH_PARM);
474 outl(TLAN_HC_GO | TLAN_HC_RT, BASE + TLAN_HOST_CMD);
536 outl(host_cmd, BASE + TLAN_HOST_CMD);
540 outl(host_cmd, BASE + TLAN_HOST_CMD);
648 outl(virt_to_le32desc(tail_list), BASE + TLAN_CH_PARM);
649 outl(TLAN_HC_GO, BASE + TLAN_HOST_CMD)
    [all...]
rtl8139.c 336 outl ( virt_to_bus ( rtl->rx.ring ), rtl->ioaddr + RxBuf );
342 outl ( ( ( RX_FIFO_THRESH << 13 ) | ( RX_BUF_LEN_IDX << 11 ) |
345 outl ( 0xffffffffUL, rtl->ioaddr + MAR0 + 0 );
346 outl ( 0xffffffffUL, rtl->ioaddr + MAR0 + 4 );
347 outl ( ( ( TX_DMA_BURST << 8 ) | ( TX_IPG << 24 ) ),
393 outl ( virt_to_bus ( iobuf->data ),
395 outl ( ( ( ( TX_FIFO_THRESH & 0x7e0 ) << 11 ) | iob_len ( iobuf ) ),
pcnet32.c 323 outl(index, addr + PCNET32_DWIO_RAP);
329 outl(index, addr + PCNET32_DWIO_RAP);
330 outl(val, addr + PCNET32_DWIO_RDP);
335 outl(index, addr + PCNET32_DWIO_RAP);
341 outl(index, addr + PCNET32_DWIO_RAP);
342 outl(val, addr + PCNET32_DWIO_BDP);
352 outl(val, addr + PCNET32_DWIO_RAP);
362 outl(88, addr + PCNET32_DWIO_RAP);
eepro100.c 626 outl ( 0x08000000 | ( location << 16 ) | ( phy_id << 21 ),
690 outl ( 0x04000000 | ( location << 16 ) | ( phy_id << 21 ) | value,
718 outl ( PortPartialReset, ioaddr + CSRPort );
723 outl ( PortReset, ioaddr + CSRPort );
997 outl ( ptr, ioaddr + SCBPointer );
1148 outl ( 0, ioaddr + SCBPointer );
    [all...]
3c90x.c 376 outl(virt_to_bus(tx_cur_desc),
766 outl(cfg, inf_3c90x->IOAddr + regInternalConfig_3_l);
822 outl(virt_to_bus(inf_3c90x->rx_ring),
via-rhine.c 991 outl(0xffffffff, byMAR0);
992 outl(0xffffffff, byMAR4);
    [all...]
3c515.c 320 outl(config.i, nic->ioaddr + Wn3_Config);
392 outl(0, nic->ioaddr + DownListPtr);
  /external/valgrind/none/tests/mips32/
vfp.c 67 uint64_t outl; \
75 : "r" (mem), "r" (RTval), "r" (&outl) \
79 instruction, (uint32_t)outl, (uint32_t)(outl >> 32)); \
MoveIns.c 207 uint64_t outl; \
221 : "r" (cc), "r" (mem), "r" (&outl) \
225 instruction, (uint32_t)outl, (uint32_t)(outl >> 32), cc); \
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/sys/
io.h 125 outl (unsigned int value, unsigned short int __port) function
127 __asm__ __volatile__ ("outl %0,%w1": :"a" (value), "Nd" (__port));
133 __asm__ __volatile__ ("outl %0,%w1\noutb %%al,$0x80": :"a" (value),
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/sys/
io.h 124 outl (unsigned int __value, unsigned short int __port) function
126 __asm__ __volatile__ ("outl %0,%w1": :"a" (__value), "Nd" (__port));
132 __asm__ __volatile__ ("outl %0,%w1\noutb %%al,$0x80": :"a" (__value),
  /external/syslinux/gpxe/src/include/gpxe/efi/
efi_io.h 133 IOAPI_INLINE ( efi, outl ) ( uint32_t data, volatile uint32_t *io_addr ) {
  /external/syslinux/gpxe/src/interface/efi/
efi_io.c 197 PROVIDE_IOAPI_INLINE ( efi, outl );
  /external/wpa_supplicant_8/src/crypto/
crypto_openssl.c 194 int outl;
210 if (!EVP_CipherUpdate(ctx, skip_buf, &outl, skip_buf, len))
215 if (EVP_CipherUpdate(ctx, data, &outl, data, data_len))
616 int outl; local
617 if (!EVP_EncryptUpdate(ctx->enc, crypt, &outl, plain, len))
626 int outl; local
627 outl = len;
628 if (!EVP_DecryptUpdate(ctx->dec, plain, &outl, crypt, len))
    [all...]
  /external/syslinux/gpxe/src/drivers/net/rtl818x/
rtl818x.h 344 outl(val, addr);
  /external/webrtc/webrtc/base/
openssladapter.cc 121 static int socket_read(BIO* b, char* out, int outl) {
126 int result = socket->Recv(out, outl);

Completed in 413 milliseconds

12 3