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

  /external/boringssl/src/crypto/x509/
a_sign.c 86 size_t inl = 0, outl = 0; local
99 outl = EVP_PKEY_size(pkey);
100 buf_out = OPENSSL_malloc((unsigned int)outl);
102 outl = 0;
107 if (!EVP_DigestSign(ctx, buf_out, &outl, buf_in, inl)) {
108 outl = 0;
116 signature->length = outl;
127 return (outl);
  /external/syslinux/com32/include/sys/
io.h 37 static inline void outl(uint32_t v, uint16_t p) function
39 asm volatile ("outl %0,%1"::"a" (v), "Nd"(p));
  /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),
  /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/libjpeg-turbo/simd/
jcsample-altivec.c 40 __vector unsigned short this0e, this0o, next0e, next0o, outl, outh; local
63 outl = vec_add(this0e, this0o);
64 outl = vec_add(outl, pw_bias);
65 outl = vec_sr(outl, pw_one);
78 out = vec_pack(outl, outh);
97 next1e, next1o, out0l, out0h, out1l, out1h, outl, outh; local
131 outl = vec_add(out0l, out1l);
132 outl = vec_add(outl, pw_bias)
    [all...]
  /external/boringssl/src/crypto/pem/
pem_lib.c 524 int nlen, n, i, j, outl; local
552 EVP_EncodeUpdate(&ctx, buf, &outl, &(data[j]), n);
553 if ((outl) && (BIO_write(bp, (char *)buf, outl) != outl))
555 i += outl;
559 EVP_EncodeFinal(&ctx, buf, &outl);
560 if ((outl > 0) && (BIO_write(bp, (char *)buf, outl) != outl))
    [all...]
  /external/llvm/test/MC/X86/
x86-32.s 607 // CHECK: outl %eax, %dx
608 outl %eax, (%dx) label
609 // CHECK: outl %eax, %dx
intel-syntax.s 439 // CHECK: outl %eax, %dx
445 outl DX define
x86-64.s 260 // CHECK: outl %eax, %dx
261 // CHECK: outl %eax, %dx
268 outl %eax, (%dx) label
    [all...]
  /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/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); }
  /external/swiftshader/third_party/LLVM/test/MC/X86/
x86-64.s 257 // CHECK: outl %dx
258 // CHECK: outl %dx
265 outl %eax, (%dx) label
  /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/conscrypt/common/src/jni/main/cpp/conscrypt/
native_crypto.cc 3242 int outl; local
3272 int outl; local
    [all...]

Completed in 916 milliseconds