HomeSort by relevance Sort by last modified time
    Searched defs:inbuf (Results 26 - 50 of 51) sorted by null

12 3

  /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++];
604 // filehandle to read from. Else inbuf contains data.
605 static int start_bunzip(struct bunzip_data **bdp, int src_fd, char *inbuf,
618 bd->inbuf = inbuf;
622 bd->inbuf = (char *)(bd+1);
  /external/wpa_supplicant_8/src/eap_server/
eap_server_pwd.c 33 struct wpabuf *inbuf; member in struct:eap_pwd_data
129 data->inbuf = data->outbuf = NULL;
158 wpabuf_free(data->inbuf);
960 if (data->inbuf) {
965 data->inbuf = wpabuf_alloc(tot_len);
966 if (data->inbuf == NULL) {
979 if ((data->in_frag_pos + len) > wpabuf_size(data->inbuf)) {
983 (int) wpabuf_size(data->inbuf));
987 wpabuf_put_data(data->inbuf, pos, len);
1000 pos = wpabuf_head_u8(data->inbuf);
    [all...]
  /frameworks/av/media/libstagefright/
MediaCodecSource.cpp 669 sp<ABuffer> inbuf; local
670 status_t err = mEncoder->getInputBuffer(bufferIndex, &inbuf);
671 if (err != OK || inbuf == NULL) {
679 memcpy(inbuf->data(), mbuf->data(), size);
684 inbuf->setMediaBufferBase(mbuf);
  /libcore/ojluni/src/main/java/sun/security/util/
DerValue.java 262 DerInputBuffer inbuf = in.dup(); local
263 int readLen = inbuf.available();
268 DataInputStream dis = new DataInputStream(inbuf);
272 inbuf = new DerInputBuffer(derIn.convert(indefData));
273 if (tag != inbuf.read())
276 length = DerInputStream.getLength(inbuf);
277 buffer = inbuf.dup();
  /toolchain/binutils/binutils-2.25/intl/
dcigettext.c 890 const unsigned char *inbuf; local
899 inbuf = (const unsigned char *) result;
914 &inbuf, inbuf + resultlen,
928 inbuf = result;
931 const char *inptr = (const char *) inbuf;
    [all...]
  /external/libjpeg-turbo/
turbojpeg.c 1048 int i, row, retval=0, alloc=1; JSAMPROW *inbuf[MAX_COMPONENTS]; local
1057 tmpbuf[i]=NULL; inbuf[i]=NULL;
1107 if((inbuf[i]=(JSAMPROW *)malloc(sizeof(JSAMPROW)*ph[i]))==NULL)
1112 inbuf[i][row]=ptr;
1147 memcpy(tmpbuf[i][j], inbuf[i][crow[i]+j], pw[i])
1508 JSAMPROW *tmpbuf[MAX_COMPONENTS], *inbuf[MAX_COMPONENTS]; local
    [all...]
  /external/libpng/contrib/gregbook/
rpng2-win.c 188 static uch inbuf[INBUFSIZE]; variable
490 incount = fread(inbuf, 1, INBUFSIZE, infile);
491 if (incount < 8 || !readpng2_check_sig(inbuf, 8)) {
579 if (readpng2_decode_data(&rpng2_info, inbuf, incount))
603 incount = fread(inbuf, 1, INBUFSIZE, infile);
    [all...]
rpng2-x.c 206 static uch inbuf[INBUFSIZE]; variable
519 incount = fread(inbuf, 1, INBUFSIZE, infile);
520 if (incount < 8 || !readpng2_check_sig(inbuf, 8)) {
600 if (readpng2_decode_data(&rpng2_info, inbuf, incount))
624 incount = fread(inbuf, 1, INBUFSIZE, infile);
    [all...]
  /external/pdfium/core/src/fxcodec/codec/
fx_codec_jpx_opj.cpp 489 unsigned char *inbuf, *outbuf, *in, *out; local
492 in = inbuf = FX_Alloc(unsigned char, nr_samples);
502 cmsDoTransform(transform, inbuf, outbuf, (cmsUInt32Number)max);
511 FX_Free(inbuf);
514 unsigned short *inbuf, *outbuf, *in, *out; local
517 in = inbuf = FX_Alloc(unsigned short, nr_samples);
527 cmsDoTransform(transform, inbuf, outbuf, (cmsUInt32Number)max);
536 FX_Free(inbuf);
540 unsigned char *in, *inbuf, *out, *outbuf; local
544 in = inbuf = FX_Alloc(unsigned char, nr_samples)
    [all...]
  /external/speex/libspeex/
preprocess.c 228 spx_word16_t *inbuf; /**< Input buffer (overlapped analysis) */ member in struct:SpeexPreprocessState_
470 st->inbuf = (spx_word16_t*)speex_alloc(N3*sizeof(spx_word16_t));
499 st->inbuf[i]=0;
559 speex_free(st->inbuf);
628 st->frame[i]=st->inbuf[i];
632 /* Update inbuf */
634 st->inbuf[i]=x[N4+i];
    [all...]
  /external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/source/
structs.h 139 int16_t inbuf[QLOOKAHEAD]; member in struct:__anon26904
  /external/libpng/
pngtest.c 1680 char inbuf[256], outbuf[256]; local
    [all...]
  /external/ppp/pppd/
sys-linux.c 209 static unsigned char inbuf[512]; /* buffer for chars read from loopback */ variable
1175 while ((n = read(master_fd, inbuf, sizeof(inbuf))) > 0)
1176 if (loop_chars(inbuf, n))
    [all...]
  /external/webrtc/webrtc/modules/audio_coding/codecs/isac/main/source/
structs.h 138 double inbuf[QLOOKAHEAD]; member in struct:__anon26923
  /external/libxml2/
xmlreader.c 825 xmlBufPtr inbuf; local
835 inbuf = reader->input->buffer;
836 alloc = xmlBufGetAllocationScheme(inbuf);
839 if (xmlBufUse(inbuf) < reader->cur + CHUNK_SIZE) {
847 if (xmlBufUse(inbuf) == reader->cur) {
870 if (xmlBufUse(inbuf) >= reader->cur + CHUNK_SIZE) {
872 (const char *) xmlBufContent(inbuf) + reader->cur,
880 s = xmlBufUse(inbuf) - reader->cur;
882 (const char *) xmlBufContent(inbuf) + reader->cur,
897 (xmlBufUse(inbuf) - reader->cur <= CHUNK_SIZE))
    [all...]
  /external/valgrind/VEX/switchback/
test_bzip2.c 5935 uchar inbuf[M_BLOCK]; variable
    [all...]
  /external/valgrind/exp-sgcheck/tests/
hackedbz2.c 5960 char inbuf[M_BLOCK]; variable
    [all...]
  /external/valgrind/memcheck/tests/
origin5-bz2.c 5952 char inbuf[M_BLOCK]; variable
    [all...]
varinfo6.c 5989 char inbuf[M_BLOCK]; variable
    [all...]
  /external/valgrind/perf/
bz2.c 5949 char inbuf[M_BLOCK]; variable
    [all...]
test_input_for_tinycc.c 4433 char inbuf[1000000]; variable
    [all...]
  /external/slf4j/log4j-over-slf4j/compatibility/lib/
logback-core-0.9.8-SNAPSHOT.jar 
log4j-1.3alpha-8.jar 
  /prebuilts/tools/common/m2/repository/commons-io/commons-io/2.4/
commons-io-2.4.jar 
  /prebuilts/tools/common/offline-m2/commons-io/commons-io/2.4/
commons-io-2.4.jar 

Completed in 683 milliseconds

12 3