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

1 2 3 4 5

  /external/chromium_org/third_party/mesa/src/src/glx/
renderpix.c 167 const GLint bufsize = image1len + image2len; local
181 buf = (GLubyte *) Xmalloc(bufsize);
194 bufsize);
  /external/mesa3d/src/glx/
renderpix.c 167 const GLint bufsize = image1len + image2len; local
181 buf = (GLubyte *) Xmalloc(bufsize);
194 bufsize);
  /external/skia/tests/
Reader32Test.cpp 46 const size_t bufsize = sizeof(data) > sizeof(data2) ? local
48 char buffer[bufsize];
  /external/chromium_org/third_party/leveldatabase/
chromium_logger.h 32 int bufsize; local
34 bufsize = sizeof(buffer);
37 bufsize = 30000;
38 base = new char[bufsize];
41 char* limit = base + bufsize;
  /frameworks/base/tools/aapt/
printapk.cpp 36 int bufsize; local
90 bufsize = size + (size / 1000) + 1;
91 resfile = malloc(bufsize);
93 err = decompress_zipentry(entry, resfile, bufsize);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/sound/
seq_midi_event.h 36 int bufsize; /* allocated buffer size */ member in struct:snd_midi_event
41 int snd_midi_event_new(int bufsize, struct snd_midi_event **rdev);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/sound/
seq_midi_event.h 36 int bufsize; /* allocated buffer size */ member in struct:snd_midi_event
41 int snd_midi_event_new(int bufsize, struct snd_midi_event **rdev);
  /system/core/sh/
output.h 45 int bufsize; member in struct:output
  /external/chromium_org/third_party/leveldatabase/src/util/
posix_logger.h 36 int bufsize; local
38 bufsize = sizeof(buffer);
41 bufsize = 30000;
42 base = new char[bufsize];
45 char* limit = base + bufsize;
  /external/chromium_org/third_party/openssl/openssl/crypto/asn1/
f_enum.c 102 int i,j,k,m,n,again,bufsize; local
109 bufsize=BIO_gets(bp,buf,size);
112 if (bufsize < 1) goto err_sl;
113 i=bufsize;
192 bufsize=BIO_gets(bp,buf,size);
f_int.c 106 int i,j,k,m,n,again,bufsize; local
113 bufsize=BIO_gets(bp,buf,size);
116 if (bufsize < 1) goto err_sl;
117 i=bufsize;
204 bufsize=BIO_gets(bp,buf,size);
f_string.c 100 int i,j,k,m,n,again,bufsize; local
105 bufsize=BIO_gets(bp,buf,size);
108 if (bufsize < 1)
117 i=bufsize;
197 bufsize=BIO_gets(bp,buf,size);
  /external/openssl/crypto/asn1/
f_enum.c 102 int i,j,k,m,n,again,bufsize; local
109 bufsize=BIO_gets(bp,buf,size);
112 if (bufsize < 1) goto err_sl;
113 i=bufsize;
192 bufsize=BIO_gets(bp,buf,size);
f_int.c 106 int i,j,k,m,n,again,bufsize; local
113 bufsize=BIO_gets(bp,buf,size);
116 if (bufsize < 1) goto err_sl;
117 i=bufsize;
204 bufsize=BIO_gets(bp,buf,size);
f_string.c 100 int i,j,k,m,n,again,bufsize; local
105 bufsize=BIO_gets(bp,buf,size);
108 if (bufsize < 1)
117 i=bufsize;
197 bufsize=BIO_gets(bp,buf,size);
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/preprocs/raw/
raw-preproc.c 77 int bufsize = BSIZE; local
78 char *buf = yasm_xmalloc((size_t)bufsize);
84 if (!fgets(p, bufsize-(p-buf), preproc_raw->in)) {
96 if ((p-buf)+1 >= bufsize) {
99 bufsize *= 2;
100 buf = yasm_xrealloc(buf, (size_t)bufsize);
  /external/dropbear/
packet.c 320 unsigned long bufsize; local
349 bufsize = sizeof(tempbuf);
350 if (hmac_done(&hmac, tempbuf, &bufsize) != CRYPT_OK) {
525 unsigned long bufsize; local
555 bufsize = sizeof(tempbuf);
556 if (hmac_done(&hmac, tempbuf, &bufsize)
  /system/core/libzipfile/
private.h 24 ssize_t bufsize; member in struct:Zipfile