HomeSort by relevance Sort by last modified time
    Searched refs:outl (Results 1 - 25 of 95) sorted by null

1 2 3 4

  /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
  /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/openssl/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/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/chromium_org/third_party/openssl/openssl/crypto/evp/
evp_enc.c 261 int EVP_CipherUpdate(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl,
265 return EVP_EncryptUpdate(ctx,out,outl,in,inl);
266 else return EVP_DecryptUpdate(ctx,out,outl,in,inl);
269 int EVP_CipherFinal_ex(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl)
272 return EVP_EncryptFinal_ex(ctx,out,outl);
273 else return EVP_DecryptFinal_ex(ctx,out,outl);
276 int EVP_CipherFinal(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl)
279 return EVP_EncryptFinal(ctx,out,outl);
280 else return EVP_DecryptFinal(ctx,out,outl);
307 int EVP_EncryptUpdate(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl,
    [all...]
p_open.c 113 int EVP_OpenFinal(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl)
117 i=EVP_DecryptFinal_ex(ctx,out,outl);
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...]
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);
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;
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;
  /external/openssl/crypto/evp/
evp_enc.c 261 int EVP_CipherUpdate(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl,
265 return EVP_EncryptUpdate(ctx,out,outl,in,inl);
266 else return EVP_DecryptUpdate(ctx,out,outl,in,inl);
269 int EVP_CipherFinal_ex(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl)
272 return EVP_EncryptFinal_ex(ctx,out,outl);
273 else return EVP_DecryptFinal_ex(ctx,out,outl);
276 int EVP_CipherFinal(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl)
279 return EVP_EncryptFinal(ctx,out,outl);
280 else return EVP_DecryptFinal(ctx,out,outl);
307 int EVP_EncryptUpdate(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl,
    [all...]
p_open.c 113 int EVP_OpenFinal(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl)
117 i=EVP_DecryptFinal_ex(ctx,out,outl);
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...]
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);
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/openssl/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/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/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/openssl/openssl/crypto/bio/
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);
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_null.c 111 static int nullf_read(BIO *b, char *out, int outl)
117 ret=BIO_read(b->next_bio,out,outl);
  /external/openssl/crypto/bio/
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);
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;

Completed in 299 milliseconds

1 2 3 4