/external/chromium_org/third_party/boringssl/src/crypto/bn/ |
convert.c | 291 static int bn_x2bn(BIGNUM **outp, const char *in, decode_func decode, char_test_func want_char) { 308 if (outp == NULL) { 313 if (*outp == NULL) { 319 ret = *outp; 333 *outp = ret; 337 if (*outp == NULL) { 344 int BN_hex2bn(BIGNUM **outp, const char *in) { 345 return bn_x2bn(outp, in, decode_hex, isxdigit); 422 int BN_dec2bn(BIGNUM **outp, const char *in) { 423 return bn_x2bn(outp, in, decode_dec, isdigit) [all...] |
/external/chromium_org/third_party/WebKit/Tools/Scripts/ |
bencher | 640 | outp | 641 doublePuts($stderr,outp,IO::read(filename)) [all...] |
/external/chromium_org/third_party/boringssl/src/crypto/evp/ |
asn1.c | 158 int i2d_PublicKey(EVP_PKEY *key, uint8_t **outp) { 161 return i2d_RSAPublicKey(key->pkey.rsa, outp); 163 return i2d_DSAPublicKey(key->pkey.dsa, outp); 165 return i2o_ECPublicKey(key->pkey.ec, outp);
|
/external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/g711/test/ |
testG711.cc | 44 FILE* outp; local 108 if ((outp = fopen(outname, "wb")) == NULL) { 161 if (fwrite(decoded, sizeof(short), framelength, outp) != 177 fclose(outp);
|
/external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/g722/test/ |
testG722.cc | 49 FILE *inp, *outbitp, *outp; local 100 if ((outp = fopen(outname,"wb")) == NULL) { 143 outp) != static_cast<size_t>(framelength)) { 159 fclose(outp);
|
/cts/tools/vm-tests-tf/src/util/build/ |
DasmBuildStep.java | 124 FileOutputStream outp = null; local 127 outp = new FileOutputStream(out_file); 128 dAsm.write(outp, null); 135 close(outp); 142 close(outp);
|
/external/openssl/crypto/aes/ |
aes_ige.c | 103 aes_block_t *outp = (aes_block_t *)out; local 106 outp->data[n] = inp->data[n] ^ ivp->data[n]; 107 AES_encrypt((unsigned char *)outp->data, (unsigned char *)outp->data, key); 109 outp->data[n] ^= iv2p->data[n]; 110 ivp = outp; 159 aes_block_t *outp = (aes_block_t *)out; local 163 AES_decrypt((unsigned char *)tmp.data, (unsigned char *)outp->data, key); 165 outp->data[n] ^= ivp->data[n]; 167 iv2p = outp; [all...] |
/external/chromium_org/third_party/boringssl/src/include/openssl/ |
dsa.h | 232 /* i2d_DSA_SIG marshals |in| to an ASN.1, DER structure. If |outp| is not NULL 233 * then the result is written to |*outp| and |*outp| is advanced just past the 236 OPENSSL_EXPORT int i2d_DSA_SIG(const DSA_SIG *in, uint8_t **outp); 247 * If |outp| is not NULL then the result is written to |*outp| and |*outp| is 250 OPENSSL_EXPORT int i2d_DSAPublicKey(const DSA *in, unsigned char **outp); 261 * If |outp| is not NULL then the result is written to |*outp| and |*outp| i [all...] |
ec_key.h | 196 * structure. If |outp| is not NULL then the result is written to |*outp| and 197 * |*outp| is advanced just past the output. It returns the number of bytes in 199 OPENSSL_EXPORT int i2d_ECPrivateKey(const EC_KEY *key, uint8_t **outp); 211 * structure. If |outp| is not NULL then the result is written to |*outp| and 212 * |*outp| is advanced just past the output. It returns the number of bytes in 214 OPENSSL_EXPORT int i2d_ECParameters(const EC_KEY *key, uint8_t **outp); 223 /* i2o_ECPublicKey marshals an EC point from |key|. If |outp| is not NULL then 224 * the result is written to |*outp| and |*outp| is advanced just past th [all...] |
ecdsa.h | 165 * structure. If |outp| is not NULL then the result is written to |*outp| and 166 * |*outp| is advanced just past the output. It returns the number of bytes in 168 OPENSSL_EXPORT int i2d_ECDSA_SIG(const ECDSA_SIG *sig, uint8_t **outp);
|
dh.h | 179 /* i2d_DHparams marshals |in| to an ASN.1, DER structure. If |outp| is not NULL 180 * then the result is written to |*outp| and |*outp| is advanced just past the 183 OPENSSL_EXPORT int i2d_DHparams(const DH *in, unsigned char **outp);
|
rsa.h | 296 /* i2d_RSAPublicKey marshals |in| to an ASN.1, DER structure. If |outp| is not 297 * NULL then the result is written to |*outp| and |*outp| is advanced just past 300 OPENSSL_EXPORT int i2d_RSAPublicKey(const RSA *in, uint8_t **outp); 310 /* i2d_RSAPrivateKey marshals |in| to an ASN.1, DER structure. If |outp| is not 311 * NULL then the result is written to |*outp| and |*outp| is advanced just past 314 OPENSSL_EXPORT int i2d_RSAPrivateKey(const RSA *in, uint8_t **outp);
|
bn.h | 249 * If |outp| is not NULL, it constructs a BIGNUM equal to the hex number and 250 * stores it in |*outp|. If |*outp| is NULL then it allocates a new BIGNUM and 251 * updates |*outp|. It returns the number of bytes of |in| processed or zero on 253 OPENSSL_EXPORT int BN_hex2bn(BIGNUM **outp, const char *in); 262 * non-decimal data. If |outp| is not NULL, it constructs a BIGNUM equal to the 263 * decimal number and stores it in |*outp|. If |*outp| is NULL then it 264 * allocates a new BIGNUM and updates |*outp|. It returns the number of bytes 266 OPENSSL_EXPORT int BN_dec2bn(BIGNUM **outp, const char *in) [all...] |
evp.h | 208 * structure. If |outp| is not NULL then the result is written to |*outp| and 209 * |*outp| is advanced just past the output. It returns the number of bytes in 211 OPENSSL_EXPORT int i2d_PrivateKey(const EVP_PKEY *key, uint8_t **outp); 214 * structure. If |outp| is not NULL then the result is written to |*outp| and 215 * |*outp| is advanced just past the output. It returns the number of bytes in 217 OPENSSL_EXPORT int i2d_PublicKey(EVP_PKEY *key, uint8_t **outp); [all...] |
/external/chromium_org/third_party/boringssl/src/crypto/ec/ |
ec_asn1.c | 266 static int i2d_ECPKParameters(const EC_GROUP *group, uint8_t **outp) { 273 ret = i2d_ECPKPARAMETERS(tmp, outp); 382 int i2d_ECPrivateKey(const EC_KEY *key, uint8_t **outp) { 462 ret = i2d_EC_PRIVATEKEY(priv_key, outp); 479 int i2d_ECParameters(const EC_KEY *key, uint8_t **outp) { 484 return i2d_ECPKParameters(key->group, outp); 539 int i2o_ECPublicKey(const EC_KEY *key, uint8_t **outp) { 551 if (outp == NULL || buf_len == 0) { 556 if (*outp == NULL) { 557 *outp = OPENSSL_malloc(buf_len) [all...] |
/cts/tools/dasm/src/dasm/ |
Main.java | 149 FileOutputStream outp = null; local 153 outp = new FileOutputStream(out_file); 155 dAsm.write(outp, hr_outp); 162 close(outp); 170 close(outp);
|
/external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/isac/main/test/ |
simpleKenny.c | 54 FILE* outp; local 228 if ((outp = fopen(outname,"wb")) == NULL) { 437 if (fwrite(&auxUW8, sizeof(uint8_t), 1, outp) != 1) { 442 if (fwrite(&auxUW8, sizeof(uint8_t), 1, outp) != 1) { 446 outp) != (size_t)stream_len) { 476 declen, outp) != (size_t)declen) { 573 fclose(outp);
|
/external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/isac/fix/test/ |
test_iSACfixfloat.c | 94 FILE *inp, *outp, *f_bn, *bitsp; local 277 if ((outp = fopen(outname,"wb")) == NULL) { 422 fclose(outp); 649 fwrite(decoded, sizeof(int16_t), declen, outp); 684 fclose(outp);
|
kenny.cc | 98 FILE *inp, *outp, *f_bn, *outbits; local 425 if ((outp = fopen(outname,"wb")) == NULL) { 772 declen, outp) != (size_t)declen) { 818 fclose(outp);
|
/external/e2fsprogs/lib/ext2fs/ |
tdbtool.c | 537 char *outp, *inp; local 541 outp = inp = instring; 553 *outp++ = (char)strtol((const char *)temp,NULL,16); 555 *outp++ = *inp++; 558 *outp++ = *inp++;
|
/external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/isac/main/test/ReleaseTest-API/ |
ReleaseTest-API.cc | 47 FILE *inp, *outp, *f_bn = NULL, *vadp = NULL, *bandwidthp; local 447 if((outp = fopen(outname,"wb")) == NULL) 955 outp) != static_cast<size_t>(declen)) { [all...] |
/external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/isac/main/source/ |
entropy_coding.c | 656 double rc[MAX_ORDER], *inpl, *inph, *outp; local 660 outp = lars; 663 outp[0] = inpl[0]; 664 outp[1] = inph[0]; 665 outp += 2; 670 WebRtcIsac_Rc2Lar(rc, outp, orderLo); 671 outp += orderLo; 676 WebRtcIsac_Rc2Lar(rc, outp, orderHi); 677 outp += orderHi; [all...] |
/external/chromium_org/v8/src/ia32/ |
disasm-ia32.cc | 1663 int outp = 0; local [all...] |
/external/chromium_org/v8/src/x64/ |
disasm-x64.cc | 1796 int outp = 0; local [all...] |
/external/chromium_org/v8/src/x87/ |
disasm-x87.cc | 1684 int outp = 0; local [all...] |