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

  /external/boringssl/src/crypto/x509/
a_sign.c 89 size_t inl=0,outl=0,outll=0; local
104 outll=outl=EVP_PKEY_size(pkey);
105 buf_out=OPENSSL_malloc((unsigned int)outl);
108 outl=0;
114 || !EVP_DigestSignFinal(ctx, buf_out, &outl))
116 outl=0;
123 signature->length=outl;
135 return(outl);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/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),
  /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/opencv3/modules/calib3d/test/
test_affine3d_estimator.cpp 154 vector<uchar> outl; local
155 int res = estimateAffine3D(fpts, tpts, aff_est, outl);
172 bool outl_good = count(outl.begin(), outl.end(), 1) == m &&
173 m == accumulate(outl.begin(), outl.begin() + m, 0);
  /hardware/intel/img/psb_video/src/
tng_enc_trace.h 35 #define outl(...) macro
64 outl(CONFIG_CMD(bus,device_fn,where), 0xCF8);
70 outl(CONFIG_CMD(bus,device_fn,where), 0xCF8);
71 outl(value,0xCFC);
77 outl(CONFIG_CMD(bus,device_fn,where), 0xCF8);
84 outl(CONFIG_CMD(bus,device_fn,where), 0xCF8);
  /external/boringssl/src/crypto/pem/
pem_lib.c 555 int nlen,n,i,j,outl; local
587 EVP_EncodeUpdate(&ctx,buf,&outl,&(data[j]),n);
588 if ((outl) && (BIO_write(bp,(char *)buf,outl) != outl))
590 i+=outl;
594 EVP_EncodeFinal(&ctx,buf,&outl);
595 if ((outl > 0) && (BIO_write(bp,(char *)buf,outl) != outl)) goto err
    [all...]
  /external/llvm/test/MC/X86/
intel-syntax.s 437 // CHECK: outl %eax, %dx
443 outl DX define
x86-64.s 260 // CHECK: outl %eax, %dx
261 // CHECK: outl %eax, %dx
268 outl %eax, (%dx) label
  /external/lz4/programs/
lz4cli.c 461 size_t outl; local
466 outl = inl;
468 while ((outl >= inl-4) && (input_filename[outl] == extension[outl-inl+4])) output_filename[outl--]=0;
469 if (outl != inl-5) { DISPLAYLEVEL(1, "Cannot determine an output filename\n"); badusage(); }
  /external/wpa_supplicant_8/src/crypto/
crypto_openssl.c 181 int outl;
197 if (!EVP_CipherUpdate(ctx, skip_buf, &outl, skip_buf, len))
202 if (EVP_CipherUpdate(ctx, data, &outl, data, data_len))
577 int outl; local
578 if (!EVP_EncryptUpdate(ctx->enc, crypt, &outl, plain, len))
587 int outl; local
588 outl = len;
589 if (!EVP_DecryptUpdate(ctx->dec, plain, &outl, crypt, len))
  /external/conscrypt/src/main/native/
org_conscrypt_NativeCrypto.cpp 4736 int outl; local
4765 int outl; local
    [all...]

Completed in 277 milliseconds