/external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/tests/gas64/ |
gas-inout.asm | 9 outl %eax, $10 label 12 outl $10 label
|
/external/openssl/crypto/evp/ |
evp_enc.c | 262 int EVP_CipherUpdate(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl, 266 return EVP_EncryptUpdate(ctx,out,outl,in,inl); 267 else return EVP_DecryptUpdate(ctx,out,outl,in,inl); 270 int EVP_CipherFinal_ex(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl) 273 return EVP_EncryptFinal_ex(ctx,out,outl); 274 else return EVP_DecryptFinal_ex(ctx,out,outl); 277 int EVP_CipherFinal(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl) 280 return EVP_EncryptFinal(ctx,out,outl); 281 else return EVP_DecryptFinal(ctx,out,outl); 308 int EVP_EncryptUpdate(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl, [all...] |
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);
|
p_seal.c | 98 void EVP_SealUpdate(ctx,out,outl,in,inl) 101 int *outl; 105 EVP_EncryptUpdate(ctx,out,outl,in,inl); 109 int EVP_SealFinal(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl) 112 i = EVP_EncryptFinal_ex(ctx,out,outl);
|
encode.c | 131 void EVP_EncodeUpdate(EVP_ENCODE_CTX *ctx, unsigned char *out, int *outl, 137 *outl=0; 172 *outl=total; 175 void EVP_EncodeFinal(EVP_ENCODE_CTX *ctx, unsigned char *out, int *outl) 186 *outl=ret; 235 int EVP_DecodeUpdate(EVP_ENCODE_CTX *ctx, unsigned char *out, int *outl, 352 *outl=ret; 399 int EVP_DecodeFinal(EVP_ENCODE_CTX *ctx, unsigned char *out, int *outl) 403 *outl=0; 409 *outl=i [all...] |
bio_b64.c | 144 static int b64_read(BIO *b, char *out, int outl) 171 if (i > outl) i=outl; 176 outl-=i; 185 /* At this point, we have room of outl bytes and an empty 189 while (outl > 0) 353 if (ctx->buf_len <= outl) 356 i=outl; 366 outl-=i;
|
bio_enc.c | 143 static int enc_read(BIO *b, char *out, int outl) 157 if (i > outl) i=outl; 161 outl-=i; 170 /* At this point, we have room of outl bytes and an empty 173 while (outl > 0) 214 if (ctx->buf_len <= outl) 217 i=outl; 222 outl-=i;
|
/external/chromium_org/third_party/boringssl/src/crypto/x509/ |
a_sign.c | 78 int i,inl=0,outl=0,outll=0; 118 outll=outl=EVP_PKEY_size(pkey); 119 buf_out=(unsigned char *)OPENSSL_malloc((unsigned int)outl); 122 outl=0; 132 (unsigned int *)&outl,pkey)) 134 outl=0; 141 signature->length=outl; 153 return(outl); 181 size_t inl=0,outl=0,outll=0; local 199 outl = signature->length [all...] |
/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/chromium_org/third_party/boringssl/src/ssl/test/ |
packeted_bio.cc | 50 static int packeted_read(BIO *bio, char *out, int outl) { 74 if (outl > (int)len) { 75 outl = len; 77 memcpy(out, buf, outl); 79 return outl;
|
async_bio.cc | 69 static int async_read(BIO *bio, char *out, int outl) { 83 if (!a->datagram && (size_t)outl > a->read_quota) { 84 outl = a->read_quota; 86 int ret = BIO_read(bio->next_bio, out, outl);
|
/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); 238 size_t inl=0,outl=0,outll=0; local 256 outl = signature->length [all...] |
/external/lldb/test/pexpect-2.4/examples/ |
ssh_session.py | 34 outl = 'class :'+self.__class__.__name__ 37 outl += '\n\t'+attr+' : '+'*'*len(self.password) 39 outl += '\n\t'+attr+' : '+str(getattr(self, attr)) 40 return outl
|
/external/chromium_org/third_party/boringssl/src/crypto/cipher/ |
cipher_test.c | 131 int outl, outl2, mode; local 172 if (an && !EVP_EncryptUpdate(&ctx, NULL, &outl, aad, an)) { 184 if (!EVP_EncryptUpdate(&ctx, out, &outl, plaintext, pn)) { 189 if (!EVP_EncryptFinal_ex(&ctx, out + outl, &outl2)) { 195 if (outl + outl2 != cn) { 197 outl + outl2, cn); 248 if (an && !EVP_DecryptUpdate(&ctx, NULL, &outl, aad, an)) { 260 if (!EVP_DecryptUpdate(&ctx, out, &outl, ciphertext, cn)) { 266 if (!EVP_DecryptFinal_ex(&ctx, out + outl, &outl2)) { 272 if (outl + outl2 != pn) [all...] |
/external/openssl/crypto/pem/ |
pem_seal.c | 122 void PEM_SealUpdate(PEM_ENCODE_SEAL_CTX *ctx, unsigned char *out, int *outl, 128 *outl=0; 139 *outl+=j; 147 unsigned char *out, int *outl, EVP_PKEY *priv) 170 *outl=j; 173 *outl+=j;
|
/external/chromium_org/third_party/boringssl/src/crypto/bio/ |
buffer.c | 143 static int buffer_read(BIO *bio, char *out, int outl) { 160 if (i > outl) { 161 i = outl; 167 if (outl == i) { 170 outl -= i; 178 if (outl > ctx->ibuf_size) { 180 i = BIO_read(bio->next_bio, out, outl); 189 if (outl == i) { 193 outl -= i;
|
/external/openssl/crypto/bio/ |
bf_buff.c | 131 static int buffer_read(BIO *b, char *out, int outl) 148 if (i > outl) i=outl; 153 if (outl == i) return(num); 154 outl-=i; 163 if (outl > ctx->ibuf_size) 167 i=BIO_read(b->next_bio,out,outl); 175 if (outl == i) return(num); 177 outl-=i;
|
bf_nbio.c | 126 static int nbiof_read(BIO *b, char *out, int outl) 142 if (outl > num) outl=num; 152 ret=BIO_read(b->next_bio,out,outl);
|
/external/chromium_org/third_party/opus/src/silk/ |
ana_filt_bank_1.c | 42 opus_int16 *outL, /* O Low band [N/2] */ 71 outL[ k ] = (opus_int16)silk_SAT16( silk_RSHIFT_ROUND( silk_ADD32( out_2, out_1 ), 11 ) );
|
/external/libopus/silk/ |
ana_filt_bank_1.c | 42 opus_int16 *outL, /* O Low band [N/2] */ 71 outL[ k ] = (opus_int16)silk_SAT16( silk_RSHIFT_ROUND( silk_ADD32( out_2, out_1 ), 11 ) );
|
/external/qemu/distrib/sdl-1.2.15/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...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/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.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),
|
/external/openssl/crypto/cms/ |
cms_pwri.c | 230 int outl, rv = 0; local 243 EVP_DecryptUpdate(ctx, tmp + inlen - 2 * blocklen, &outl, 249 EVP_DecryptUpdate(ctx, tmp, &outl, 252 EVP_DecryptUpdate(ctx, tmp, &outl, in, inlen - blocklen); 257 EVP_DecryptUpdate(ctx, tmp, &outl, tmp, inlen);
|
/external/chromium_org/third_party/boringssl/src/crypto/pem/ |
pem_lib.c | 549 int nlen,n,i,j,outl; local 581 EVP_EncodeUpdate(&ctx,buf,&outl,&(data[j]),n); 582 if ((outl) && (BIO_write(bp,(char *)buf,outl) != outl)) 584 i+=outl; 588 EVP_EncodeFinal(&ctx,buf,&outl); 589 if ((outl > 0) && (BIO_write(bp,(char *)buf,outl) != outl)) goto err [all...] |