HomeSort by relevance Sort by last modified time
    Searched defs:outl (Results 1 - 14 of 14) sorted by null

  /external/openssl/crypto/asn1/
a_sign.c 136 int i,inl=0,outl=0,outll=0; local
176 outll=outl=EVP_PKEY_size(pkey);
177 buf_out=(unsigned char *)OPENSSL_malloc((unsigned int)outl);
180 outl=0;
190 (unsigned int *)&outl,pkey))
192 outl=0;
199 signature->length=outl;
211 return(outl);
222 int inl=0,outl=0,outll=0; local
264 outll=outl=EVP_PKEY_size(pkey)
    [all...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/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/grub/netboot/
linux-asm-io.h 6 * inb/inw/inl/outb/outw/outl and the "string versions" of the same
167 #define outl(val,port) \ macro
  /external/openssl/crypto/evp/
evp_test.c 144 int outl,outl2; local
171 if(!EVP_EncryptUpdate(&ctx,out,&outl,plaintext,pn))
177 if(!EVP_EncryptFinal_ex(&ctx,out+outl,&outl2))
184 if(outl+outl2 != cn)
187 outl+outl2,cn);
210 if(!EVP_DecryptUpdate(&ctx,out,&outl,ciphertext,cn))
216 if(!EVP_DecryptFinal_ex(&ctx,out+outl,&outl2))
223 if(outl+outl2 != pn)
226 outl+outl2,pn);
  /external/openssl/crypto/pem/
pem_lib.c 592 int nlen,n,i,j,outl; local
624 EVP_EncodeUpdate(&ctx,buf,&outl,&(data[j]),n);
625 if ((outl) && (BIO_write(bp,(char *)buf,outl) != outl))
627 i+=outl;
631 EVP_EncodeFinal(&ctx,buf,&outl);
632 if ((outl > 0) && (BIO_write(bp,(char *)buf,outl) != outl)) goto err
    [all...]
  /external/openssl/ssl/
d1_clnt.c 882 int padl, outl = sizeof(epms); local
974 EVP_EncryptUpdate(&ciph_ctx,epms,&outl,tmp_buf,
976 EVP_EncryptFinal_ex(&ciph_ctx,&(epms[outl]),&padl);
977 outl += padl;
978 if (outl > (int)sizeof epms)
986 s2n(outl,p);
987 memcpy(p, epms, outl);
988 p+=outl;
989 n+=outl + 2;
997 OPENSSL_cleanse(epms, outl);
    [all...]
s3_clnt.c 2150 int padl, outl = sizeof(epms); local
    [all...]
s3_srvr.c 2165 int padl, outl; local
    [all...]
kssl.c 2009 int outl, unencbufsize; local
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/src/crypto/
crypto_openssl.c 337 int outl; local
338 if (!EVP_EncryptUpdate(&ctx->enc, crypt, &outl, plain, len))
347 int outl; local
348 outl = len;
349 if (!EVP_DecryptUpdate(&ctx->dec, plain, &outl, crypt, len))
  /external/kernel-headers/original/asm-arm/
io.h 114 #define outl(v,p) __raw_writel((__force __u32) \ macro
134 #define outl_p(val,port) outl((val),(port))
  /external/qemu/distrib/sdl-1.2.12/src/video/ipod/
SDL_ipodvideo.c 497 #define outl(datum,addr) (*(volatile unsigned long *)(addr) = (datum)) macro
541 outl(data_lo, lcd_base + LCD_DATA);
545 outl(data_hi, lcd_base + LCD_DATA);
555 outl(0x0, lcd_base + LCD_CMD);
559 outl(cmd, lcd_base + LCD_CMD);
641 outl(cmd | 0x80000000, 0x70008A0C);
644 outl(data | 0x80000000, 0x70008A0C);
678 outl(0x10000080, 0x70008A20);
679 outl((pixels_to_write - 1) | 0xC0010000, 0x70008A24);
680 outl(0x34000000, 0x70008A20)
    [all...]
  /prebuilt/linux-x86/toolchain/i686-unknown-linux-gnu-4.2.1/lib/gcc/i686-unknown-linux-gnu/4.2.1/include/xorg/
compiler.h 97 # define outl RealOutl macro
106 # define outl outpd macro
141 extern void outl(unsigned short, unsigned int);
150 extern void outl(unsigned long, unsigned int);
198 outl(unsigned long port, unsigned int val) function
236 extern void outl(unsigned int port, unsigned int val);
506 # undef outl macro
512 extern void outl(unsigned long port, unsigned int val);
548 outl(unsigned short port, unsigned int val) function
550 __asm__ __volatile__("outl %0,%1" : :"a" (val), "d" (port))
611 outl(unsigned long port, unsigned int val) function
939 outl(unsigned PORT_SIZE port, unsigned int val) function
1272 outl(unsigned short port, unsigned int value) function
1355 #define outl macro
1401 outl(unsigned short port, unsigned int val) function
1451 outl(unsigned short port, unsigned int val) function
1501 outl(unsigned short port, unsigned int val) function
1568 # undef outl macro
1581 # define outl macro
1597 # define outl macro
1672 # undef outl macro
1679 # define outl macro
    [all...]
  /external/openssl/apps/
speed.c 1916 int outl; local
    [all...]

Completed in 173 milliseconds