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

1 2

  /external/compiler-rt/test/msan/
iconv.cc 20 const char *inbuf = inbuf_; local
22 char *inbuf = inbuf_; local
43 res = iconv(cd, &inbuf, &inbytesleft, &outbuf, &outbytesleft);
  /external/libxml2/os400/
libxmlmain.c 40 char * inbuf; local
58 inbuf = argv[i];
64 &inbuf, &inbytesleft, &outbuf, &outbytesleft);
80 inbuf = ebcdic_argv[i];
82 iconv(cd, &inbuf, &inbytesleft, &outbuf, &outbytesleft);
  /external/ltp/testcases/kernel/fs/stream/
stream04.c 58 char *inbuf; local
98 if ((inbuf = malloc(strlen(junk))) == 0) {
103 fread(inbuf, sizeof(*junk), strlen(junk), stream)) == 0) {
  /external/oj-libjdwp/src/solaris/npt/
utf_md.c 114 char *inbuf; local
117 inbuf = bytes;
121 returnValue = iconv(ic, (void*)&inbuf, &inLeft, &outbuf, &outLeft);
  /external/openssh/
rsa.c 77 u_char *inbuf = NULL, *outbuf = NULL; local
90 if ((inbuf = malloc(ilen)) == NULL) {
94 BN_bn2bin(in, inbuf);
96 if ((len = RSA_public_encrypt(ilen, inbuf, outbuf, key,
113 if (inbuf != NULL) {
114 explicit_bzero(inbuf, ilen);
115 free(inbuf);
123 u_char *inbuf = NULL, *outbuf = NULL; local
133 if ((inbuf = malloc(ilen)) == NULL) {
137 BN_bn2bin(in, inbuf);
    [all...]
  /external/bzip2/
unzcrash.c 40 uchar inbuf[M_BLOCK]; variable
92 nIn = fread ( inbuf, 1, M_BLOCK, f );
97 zbuf, &nZ, inbuf, nIn, 9, 0, 30 );
118 if (inbuf[i] != outbuf[i]) {
132 if (inbuf[i] != outbuf[i]) {
  /external/libaom/libaom/examples/
resize_util.c 51 uint8_t *inbuf, *outbuf; local
102 inbuf = (uint8_t *)malloc(width * height * 3 / 2);
104 inbuf_u = inbuf + width * height;
110 if (fread(inbuf, width * height * 3 / 2, 1, fpin) != 1) break;
111 av1_resize_frame420(inbuf, width, inbuf_u, inbuf_v, width / 2, height,
121 free(inbuf);
  /external/libvpx/libvpx/examples/
resize_util.c 50 uint8_t *inbuf, *outbuf; local
101 inbuf = (uint8_t *)malloc(width * height * 3 / 2);
103 inbuf_u = inbuf + width * height;
109 if (fread(inbuf, width * height * 3 / 2, 1, fpin) != 1) break;
110 vp9_resize_frame420(inbuf, width, inbuf_u, inbuf_v, width / 2, height,
120 free(inbuf);
  /external/curl/lib/
http.h 210 char *inbuf; /* buffer to receive data from underlying socket */ member in struct:http_conn
211 size_t inbuflen; /* number of bytes filled in inbuf */
212 size_t nread_inbuf; /* number of bytes read from in inbuf */
http2.c 168 Curl_safefree(c->inbuf);
212 conn, FIRSTSOCKET, httpc->inbuf, H2_BUFSIZE, &result);
1351 char *inbuf; local
1671 char *inbuf; local
    [all...]
  /external/selinux/libselinux/src/
booleans.c 390 char *inbuf = NULL; local
422 inbuf = NULL;
424 while ((len = getline(&inbuf, &size, boolf)) > 0) {
425 buffer = strdup(inbuf);
429 process_boolean(inbuf, boolname, sizeof(boolname),
462 free(inbuf);
463 inbuf = NULL;
475 free(inbuf);
530 char *inbuf; local
541 while (getline(&inbuf, &len, boolf) > 0)
    [all...]
  /external/selinux/policycoreutils/run_init/
open_init_pty.c 242 struct ring_buffer inbuf; local
244 rb_init(&inbuf, inbuf_mem, sizeof(inbuf_mem));
330 if (!rb_isempty(&inbuf) && err_n_wpty < MAXRETR) {
335 if (rb_space(&inbuf) > 0 && err_n_stdin < MAXRETR) {
385 ssize_t n = rb_write(&inbuf, pty_master);
400 ssize_t n = rb_read(&inbuf, STDIN_FILENO);
430 || !(rb_isempty(&inbuf) || err_n_wpty >= MAXRETR)
434 fprintf(stderr, "inbuf: %u bytes left, outbuf: %u bytes left\n", inbuf.count, outbuf.count);
  /external/vboot_reference/futility/
cmd_gbb_utility.c 364 uint8_t *inbuf = NULL; local
467 inbuf = read_entire_file(infile, &filesize);
468 if (!inbuf)
471 gbb = FindGbbHeader(inbuf, filesize);
527 inbuf = read_entire_file(infile, &filesize);
528 if (!inbuf)
531 gbb = FindGbbHeader(inbuf, filesize);
548 memcpy(outbuf, inbuf, filesize);
633 if (inbuf)
634 free(inbuf);
    [all...]
  /external/zlib/src/examples/
gun.c 83 unsigned char *inbuf; member in struct:ind
96 next = me->inbuf;
161 unsigned char inbuf[SIZE]; /* input buffer */ variable
393 ind.inbuf = inbuf;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/
gzio.c 61 Byte *inbuf; /* input buffer */ member in struct:gz_stream
114 s->stream.next_in = s->inbuf = Z_NULL;
165 s->stream.next_in = s->inbuf = (Byte*)ALLOC(Z_BUFSIZE);
174 if (err != Z_OK || s->inbuf == Z_NULL) {
267 s->stream.avail_in = (uInt)fread(s->inbuf, 1, Z_BUFSIZE, s->file);
273 s->stream.next_in = s->inbuf;
301 if (len) s->inbuf[0] = s->stream.next_in[0];
303 len = (uInt)fread(s->inbuf + len, 1, Z_BUFSIZE >> len, s->file);
306 s->stream.next_in = s->inbuf;
383 TRYFREE(s->inbuf);
    [all...]
  /external/libpng/contrib/gregbook/
rpng2-win.c 187 static uch inbuf[INBUFSIZE]; variable
489 incount = fread(inbuf, 1, INBUFSIZE, infile);
490 if (incount < 8 || !readpng2_check_sig(inbuf, 8)) {
578 if (readpng2_decode_data(&rpng2_info, inbuf, incount))
602 incount = fread(inbuf, 1, INBUFSIZE, infile);
    [all...]
  /external/webrtc/webrtc/modules/audio_coding/codecs/isac/main/source/
pitch_estimator.c 477 double inbuf[PITCH_FRAME_LEN + QLOOKAHEAD]; local
614 memcpy(inbuf, State->inbuf, sizeof(double) * QLOOKAHEAD);
615 memcpy(inbuf+QLOOKAHEAD, in, sizeof(double) * PITCH_FRAME_LEN);
618 WebRtcIsac_PitchfilterPre_la(inbuf, out, &(State->PFstr), lags, gains);
622 State->inbuf[k] = inbuf[k + PITCH_FRAME_LEN];
  /external/wpa_supplicant_8/src/eap_peer/
eap_pwd.c 38 struct wpabuf *inbuf; member in struct:eap_pwd_data
133 data->inbuf = data->outbuf = NULL;
164 wpabuf_free(data->inbuf);
915 if (data->inbuf) {
921 data->inbuf = wpabuf_alloc(tot_len);
922 if (data->inbuf == NULL) {
935 if (!data->inbuf) {
943 if (data->in_frag_pos > wpabuf_size(data->inbuf)) {
947 (int) wpabuf_len(data->inbuf));
948 wpabuf_free(data->inbuf);
    [all...]
  /external/wpa_supplicant_8/src/eap_server/
eap_server_pwd.c 37 struct wpabuf *inbuf; member in struct:eap_pwd_data
135 data->inbuf = data->outbuf = NULL;
162 wpabuf_free(data->inbuf);
896 if (data->inbuf) {
901 data->inbuf = wpabuf_alloc(tot_len);
902 if (data->inbuf == NULL) {
915 if (!data->inbuf) {
921 if ((data->in_frag_pos + len) > wpabuf_size(data->inbuf)) {
925 (int) wpabuf_size(data->inbuf));
929 wpabuf_put_data(data->inbuf, pos, len)
    [all...]
  /external/e2fsprogs/intl/
dcigettext.c 885 const unsigned char *inbuf; local
894 inbuf = (const unsigned char *) result;
909 &inbuf, inbuf + resultlen,
923 inbuf = result;
926 const char *inptr = (const char *) inbuf;
    [all...]
  /external/toybox/toys/other/
bzcat.c 85 char *inbuf; member in struct:bunzip_data
120 if (0 >= (bd->inbufCount = read(bd->in_fd, bd->inbuf, IOBUF_SIZE)))
134 bd->inbufBits = (bd->inbufBits<<8) | bd->inbuf[bd->inbufPos++];
603 // filehandle to read from. Else inbuf contains data.
604 static int start_bunzip(struct bunzip_data **bdp, int src_fd, char *inbuf,
617 bd->inbuf = inbuf;
621 bd->inbuf = (char *)(bd+1);
  /external/u-boot/drivers/misc/
cros_ec.c 1072 uint8_t inbuf[EC_PROTO2_MAX_PARAM_SIZE]; member in union:__anon47296
  /frameworks/av/media/libstagefright/
MediaCodecSource.cpp 731 sp<MediaCodecBuffer> inbuf; local
732 status_t err = mEncoder->getInputBuffer(bufferIndex, &inbuf);
734 if (err != OK || inbuf == NULL || inbuf->data() == NULL
743 memcpy(inbuf->data(), mbuf->data(), size);
748 inbuf->meta()->setObject("mediaBufferHolder", new MediaBufferHolder(mbuf));
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/cjkcodecs/
multibytecodec.c 13 const Py_UNICODE *inbuf, *inbuf_top, *inbuf_end; member in struct:__anon5384
19 const unsigned char *inbuf, *inbuf_top, *inbuf_end; member in struct:__anon5385
243 esize = (Py_ssize_t)(buf->inbuf_end - buf->inbuf);
257 const Py_UNICODE replchar = '?', *inbuf = &replchar; local
264 r = codec->encode(state, codec->config, &inbuf, 1,
280 buf->inbuf += esize;
284 start = (Py_ssize_t)(buf->inbuf - buf->inbuf_top);
348 buf->inbuf = buf->inbuf_top + newpos;
382 esize = (Py_ssize_t)(buf->inbuf_end - buf->inbuf);
400 buf->inbuf += esize;
738 Py_UNICODE *inbuf, *inbuf_end, *inbuf_tmp = NULL; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/cjkcodecs/
multibytecodec.c 13 const Py_UNICODE *inbuf, *inbuf_top, *inbuf_end; member in struct:__anon5717
19 const unsigned char *inbuf, *inbuf_top, *inbuf_end; member in struct:__anon5718
241 esize = (Py_ssize_t)(buf->inbuf_end - buf->inbuf);
255 const Py_UNICODE replchar = '?', *inbuf = &replchar; local
262 r = codec->encode(state, codec->config, &inbuf, 1,
278 buf->inbuf += esize;
282 start = (Py_ssize_t)(buf->inbuf - buf->inbuf_top);
345 buf->inbuf = buf->inbuf_top + newpos;
379 esize = (Py_ssize_t)(buf->inbuf_end - buf->inbuf);
397 buf->inbuf += esize;
735 Py_UNICODE *inbuf, *inbuf_end, *inbuf_tmp = NULL; local
    [all...]

Completed in 1134 milliseconds

1 2