HomeSort by relevance Sort by last modified time
    Searched defs:inp (Results 1 - 25 of 50) sorted by null

1 2

  /external/boringssl/src/crypto/ec/
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) {
  /frameworks/base/media/jni/
android_media_ResampleInputStream.cpp 97 const short* inp = &in[i * 2]; local
99 sum += ((long)*firp++) * ((long)*inp++);
  /system/core/toolbox/upstream-netbsd/bin/dd/
conv.c 65 u_char *inp; local
69 for (inp = in.dbp - (cnt = in.dbrcnt); cnt--; ++inp)
70 *inp = t[*inp];
122 u_char *inp, *outp; local
132 for (inp = in.db, cnt = in.dbrcnt;
133 cnt && *inp++ != '\n'; --cnt);
142 in.dbp = inp + cnt - 1;
149 for (inp = in.dbp - in.dbcnt, outp = out.dbp; in.dbcnt;)
233 u_char *inp; local
    [all...]
  /device/google/marlin/dataservices/datatop/src/
datatop.c 95 int inp, quit = 0; local
130 inp = select(1, &rfds, NULL, NULL, &timeout);
132 if (inp) {
  /external/nanohttpd/nanolets/src/test/java/fi/iki/elonen/router/
AppNanolets.java 97 ByteArrayInputStream inp = new ByteArrayInputStream(text.getBytes()); local
99 return NanoHTTPD.newFixedLengthResponse(getStatus(), getMimeType(), inp, size);
  /external/webrtc/webrtc/modules/audio_coding/codecs/g711/test/
testG711.cc 27 bool readframe(int16_t* data, FILE* inp, size_t length) {
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/webrtc/webrtc/modules/audio_coding/codecs/g722/test/
testG722.cc 32 bool readframe(int16_t *data, FILE *inp, size_t length)
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);
  /cts/tools/vm-tests-tf/src/util/build/
DasmBuildStep.java 63 Reader inp = null; local
65 inp = createReader(fname);
66 dAsm.readD(inp, new File(fname).getName(), generate_linenum);
67 close(inp);
81 close(inp);
  /external/boringssl/src/crypto/x509/
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/ppp/pppd/
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);
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, len)
    [all...]
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...]
  /toolchain/binutils/binutils-2.25/libiberty/testsuite/
test-demangle.c 201 const char *inp; local
210 inp = protect_end (input.data);
295 kc = is_gnu_v3_mangled_ctor (inp);
302 kd = is_gnu_v3_mangled_dtor (inp);
317 result = cplus_demangle (inp, (DMGL_PARAMS | DMGL_ANSI | DMGL_TYPES
333 result = cplus_demangle (inp, DMGL_ANSI|DMGL_TYPES);
  /cts/tools/dasm/src/dasm/
Main.java 86 Reader inp = null; local
88 inp = createReader(fname);
89 dAsm.readD(inp, new File(fname).getName(), generateLineNumbers);
90 close(inp);
101 close(inp);
  /external/opencv3/samples/cpp/
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/
test_iSACfixfloat.c 40 int readframe(int16_t* data, FILE* inp, int length) {
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);
kenny.cc 30 int readframe(int16_t *data, FILE *inp, int length) {
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/webrtc/webrtc/modules/audio_coding/codecs/isac/main/source/
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;
  /system/security/keystore-engine/
android_engine.cpp 424 const uint8_t *inp = pubkey; local
425 Unique_EVP_PKEY pkey(d2i_PUBKEY(NULL, &inp, pubkey_len));
  /external/e2fsprogs/lib/ext2fs/
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/
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/webrtc/webrtc/modules/audio_coding/codecs/isac/main/test/
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);
  /bionic/libc/dns/resolv/
res_send.c 234 const struct sockaddr_in *inp, *srv; local
240 inp = (const struct sockaddr_in *)(const void *)sa;
243 if (srv->sin_family == inp->sin_family &&
244 srv->sin_port == inp->sin_port &&
246 srv->sin_addr.s_addr == inp->sin_addr.s_addr))
    [all...]
  /external/clang/test/Sema/
designated-initializers.c 98 struct outer { struct inner { int x, *y; } in, *inp; } zz[] = { member in struct:outer
  /external/curl/packages/OS400/
os400sys.c 849 gss_buffer_t inp; local
853 if((inp = input_token))
854 if(inp->length && inp->value) {
855 i = inp->length;
867 inp = &in;
872 input_chan_bindings, inp, actual_mech_type,

Completed in 436 milliseconds

1 2