/external/fio/lib/ |
H A D | inet_aton.c | 3 int inet_aton(const char *cp, struct in_addr *inp) argument 5 return inet_pton(AF_INET, cp, inp);
|
/external/boringssl/src/crypto/evp/ |
H A D | evp_asn1.c | 67 EVP_PKEY *d2i_PrivateKey(int type, EVP_PKEY **out, const uint8_t **inp, argument 86 const uint8_t *in = *inp; 91 in = *inp; 111 *inp = in; 121 EVP_PKEY *d2i_AutoPrivateKey(EVP_PKEY **out, const uint8_t **inp, long len) { argument 125 p = *inp; 139 p = *inp; 154 *inp = p; 164 return d2i_PrivateKey(keytype, out, inp, len);
|
/external/boringssl/src/crypto/ec/ |
H A D | ec_test.cc | 69 const uint8_t *inp = in; local 70 ScopedEC_KEY ret(d2i_ECPrivateKey(NULL, &inp, in_len)); 71 if (!ret || inp != in + in_len) {
|
H A D | ec_asn1.c | 238 static EC_GROUP *d2i_ECPKParameters(EC_GROUP **groupp, const uint8_t **inp, argument 242 const uint8_t *in = *inp; 264 *inp = in; 285 EC_KEY *d2i_ECPrivateKey(EC_KEY **a, const uint8_t **inp, long len) { argument 290 const uint8_t *in = *inp; 375 *inp = in; 492 EC_KEY *d2i_ECParameters(EC_KEY **key, const uint8_t **inp, long len) { argument 495 if (inp == NULL || *inp == NULL) { 510 if (!d2i_ECPKParameters(&ret->group, inp, le 524 o2i_ECPublicKey(EC_KEY **keyp, const uint8_t **inp, long len) argument [all...] |
/external/webrtc/webrtc/modules/audio_coding/codecs/g711/test/ |
H A D | testG711.cc | 27 bool readframe(int16_t* data, FILE* inp, size_t length) { argument 28 size_t rlen = fread(data, sizeof(int16_t), length, inp); 37 FILE* inp; local 102 if ((inp = fopen(inname, "rb")) == NULL) { 123 endfile = readframe(shortdata, inp, framelength); 166 fclose(inp);
|
/external/boringssl/src/crypto/ecdsa/ |
H A D | ecdsa_asn1.c | 200 ECDSA_SIG *d2i_ECDSA_SIG(ECDSA_SIG **out, const uint8_t **inp, long len) { argument 205 CBS_init(&cbs, *inp, (size_t)len); 214 *inp += (size_t)len - CBS_len(&cbs);
|
/external/boringssl/src/crypto/x509/ |
H A D | pkcs7.c | 112 const uint8_t *inp; local 121 inp = CBS_data(&cert); 122 x509 = d2i_X509(NULL, &inp, (long)CBS_len(&cert)); 127 assert(inp == CBS_data(&cert) + CBS_len(&cert)); 182 const uint8_t *inp; local 191 inp = CBS_data(&crl_data); 192 crl = d2i_X509_CRL(NULL, &inp, (long)CBS_len(&crl_data)); 197 assert(inp == CBS_data(&crl_data) + CBS_len(&crl_data));
|
/external/boringssl/src/decrepit/xts/ |
H A D | xts.c | 65 const uint8_t iv[16], const uint8_t *inp, 84 memcpy(scratch.c, inp, 16); 88 scratch.u[0] = ((uint64_t *)inp)[0] ^ tweak.u[0]; 89 scratch.u[1] = ((uint64_t *)inp)[1] ^ tweak.u[1]; 100 inp += 16; 115 uint8_t c = inp[i]; 138 memcpy(scratch.c, inp, 16); 142 scratch.u[0] = ((uint64_t *)inp)[0] ^ tweak1.u[0]; 143 scratch.u[1] = ((uint64_t *)inp)[1] ^ tweak1.u[1]; 150 uint8_t c = inp[1 64 CRYPTO_xts128_encrypt(const XTS128_CONTEXT *ctx, const uint8_t iv[16], const uint8_t *inp, uint8_t *out, size_t len, int enc) argument [all...] |
/external/ppp/pppd/ |
H A D | fsm.c | 339 u_char *inp; local 347 inp = inpacket; 352 GETCHAR(code, inp); 353 GETCHAR(id, inp); 354 GETSHORT(len, inp); 376 fsm_rconfreq(f, id, inp, len); 380 fsm_rconfack(f, id, inp, len); 385 fsm_rconfnakrej(f, code, id, inp, len); 389 fsm_rtermreq(f, id, inp, len); 397 fsm_rcoderej(f, inp, le [all...] |
H A D | cbcp.c | 159 u_char *inp; local 165 inp = inpacket; 173 GETCHAR(code, inp); 174 GETCHAR(id, inp); 175 GETSHORT(len, inp); 188 cbcp_recvreq(us, inp, len); 201 cbcp_recvack(us, inp, len);
|
H A D | upap.c | 319 u_char *inp; local 327 inp = inpacket; 332 GETCHAR(code, inp); 333 GETCHAR(id, inp); 334 GETSHORT(len, inp); 350 upap_rauthreq(u, inp, id, len); 354 upap_rauthack(u, inp, id, len); 358 upap_rauthnak(u, inp, id, len); 371 upap_rauthreq(u, inp, id, len) 373 u_char *inp; [all...] |
H A D | chap_ms.c | 440 chapms_handle_failure(unsigned char *inp, int len) argument 451 BCOPY(inp, msg, len); 500 len, inp);
|
/external/webrtc/webrtc/modules/audio_coding/codecs/g722/test/ |
H A D | testG722.cc | 32 bool readframe(int16_t *data, FILE *inp, size_t length) argument 34 size_t rlen = fread(data, sizeof(int16_t), length, inp); 44 FILE *inp, *outbitp, *outp; local 92 if ((inp = fopen(inname,"rb")) == NULL) { 120 endfile = readframe(shortdata, inp, framelength); 153 fclose(inp);
|
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/main/util/ |
H A D | utility.c | 21 FILE* inp, 28 rlen = (short)fread(data, sizeof(short), length, inp); 19 readframe( short* data, FILE* inp, int length) argument
|
/external/boringssl/src/crypto/rsa/ |
H A D | rsa_asn1.c | 368 RSA *d2i_RSAPublicKey(RSA **out, const uint8_t **inp, long len) { argument 373 CBS_init(&cbs, *inp, (size_t)len); 382 *inp += (size_t)len - CBS_len(&cbs); 410 RSA *d2i_RSAPrivateKey(RSA **out, const uint8_t **inp, long len) { argument 415 CBS_init(&cbs, *inp, (size_t)len); 424 *inp += (size_t)len - CBS_len(&cbs);
|
/external/opencv3/samples/cpp/ |
H A D | videostab.cpp | 505 Ptr<ConsistentMosaicInpainter> inp = makePtr<ConsistentMosaicInpainter>(); local 506 inp->setStdevThresh(argf("mosaic-stdev")); 507 inpainters->pushBack(inp); 511 Ptr<MotionInpainter> inp = makePtr<MotionInpainter>(); local 512 inp->setDistThreshold(argf("mi-dist-thresh")); 513 inpainters->pushBack(inp);
|
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/test/ |
H A D | test_iSACfixfloat.c | 40 int readframe(int16_t* data, FILE* inp, int length) { argument 43 rlen = fread(data, sizeof(int16_t), length, inp); 85 FILE* inp, *outp, *f_bn, *bitsp; local 245 if ((inp = fopen(inname, "rb")) == NULL) { 386 fclose(inp); 400 endfile = readframe(shortdata, inp, FRAMESAMPLES_10ms); 402 endfile = readframe(shortdata, inp, (FRAMESAMPLES_10ms / 2)); 619 fclose(inp);
|
H A D | kenny.cc | 30 int readframe(int16_t *data, FILE *inp, int length) { argument 34 rlen = fread(data, sizeof(int16_t), length, inp); 99 FILE *inp, *outp, *f_bn, *outbits; local 425 if ((inp = fopen(inname,"rb")) == NULL) { 550 endfile = readframe(shortdata, inp, FRAMESAMPLES_10ms); 552 endfile = readframe(shortdata, inp, (FRAMESAMPLES_10ms/2)); 829 fclose(inp);
|
/external/boringssl/src/crypto/modes/ |
H A D | gcm.c | 231 static void gcm_ghash_4bit(uint64_t Xi[2], const u128 Htable[16], const uint8_t *inp, argument 244 nlo ^= inp[15]; 269 nlo ^= inp[cnt]; 306 } while (inp += 16, len -= 16); 310 void gcm_ghash_4bit(uint64_t Xi[2], const u128 Htable[16], const uint8_t *inp, 330 void gcm_ghash_clmul(uint64_t Xi[2], const u128 Htable[16], const uint8_t *inp, 340 void gcm_ghash_avx(uint64_t Xi[2], const u128 Htable[16], const uint8_t *inp, size_t len); 346 void gcm_ghash_4bit_mmx(uint64_t Xi[2], const u128 Htable[16], const uint8_t *inp, 350 void gcm_ghash_4bit_x86(uint64_t Xi[2], const u128 Htable[16], const uint8_t *inp, 365 void gcm_ghash_v8(uint64_t Xi[2], const u128 Htable[16], const uint8_t *inp, 389 gcm_ghash_neon(uint64_t Xi[2], const u128 Htable[16], const uint8_t *inp, size_t len) argument [all...] |
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/main/source/ |
H A D | filter_functions.c | 139 double rho=0.9, *inp, *dp, *dp2; local 163 inp=tmpbuffer + PITCH_WLPCBUFLEN; 179 WebRtcIsac_ZeroPoleFilter(inp, apol, apolr, PITCH_SUBFRAME_LEN, PITCH_WLPCORDER, weo); 180 WebRtcIsac_ZeroPoleFilter(inp, apolr, opol, PITCH_SUBFRAME_LEN, PITCH_WLPCORDER, who); 182 inp+=PITCH_SUBFRAME_LEN;
|
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/main/test/ |
H A D | simpleKenny.c | 53 FILE* inp; local 207 if ((inp = fopen(inname, "rb")) == NULL) { 311 if (fread(&auxUW8, sizeof(uint8_t), 1, inp) < 1) { 315 if (fread(&auxUW8, sizeof(uint8_t), 1, inp) < 1) { 319 if (fread(payload, 1, stream_len, inp) < stream_len) { 328 endfile = readframe(shortdata, inp, samplesIn10Ms); 507 fclose(inp);
|
/external/clang/test/Sema/ |
H A D | designated-initializers.c | 98 struct outer { struct inner { int x, *y; } in, *inp; } zz[] = { member in struct:outer
|
/external/e2fsprogs/lib/ext2fs/ |
H A D | tdbtool.c | 537 char *outp, *inp; local 541 outp = inp = instring; 543 while (*inp) { 544 if (*inp == '\\') { 545 inp++; 546 if (*inp && strchr("0123456789abcdefABCDEF",(int)*inp)) { 547 temp[0] = *inp++; 549 if (*inp && strchr("0123456789abcdefABCDEF",(int)*inp)) { [all...] |
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/main/test/ReleaseTest-API/ |
H A D | ReleaseTest-API.cc | 43 FILE* inp, *outp, * f_bn = NULL, * vadp = NULL, *bandwidthp; local 413 if ((inp = fopen(inname, "rb")) == NULL) { 576 endfile = readframe(shortdata, inp, samplesIn10Ms); 581 rewind(inp); 584 endfile = readframe(shortdata, inp, samplesIn10Ms); 942 fclose(inp);
|
/external/boringssl/src/crypto/pkcs8/ |
H A D | pkcs8.c | 757 const uint8_t *inp; local 782 inp = CBS_data(&ai); 783 algor = d2i_X509_ALGOR(NULL, &inp, (long)CBS_len(&ai)); 787 if (inp != CBS_data(&ai) + CBS_len(&ai)) { 817 const uint8_t *inp = CBS_data(&wrapped_contents); local 833 encrypted = d2i_X509_SIG(NULL, &inp, (long)CBS_len(&wrapped_contents)); 838 if (inp != CBS_data(&wrapped_contents) + CBS_len(&wrapped_contents)) { 874 const uint8_t *inp = CBS_data(&cert); local 875 X509 *x509 = d2i_X509(NULL, &inp, (long)CBS_len(&cert)); 880 if (inp ! [all...] |