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

1 2 3

  /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/chromium_org/third_party/skia/tests/
Reader32Test.cpp 45 const size_t bufsize = sizeof(data) > sizeof(data2) ? local
47 char buffer[bufsize];
  /external/mesa3d/src/glx/
renderpix.c 167 const GLint bufsize = image1len + image2len; local
181 buf = (GLubyte *) Xmalloc(bufsize);
194 bufsize);
  /bionic/libc/upstream-openbsd/lib/libc/gdtoa/
hdtoa.c 129 int bufsize; local
163 bufsize = (sigfigs > ndigits) ? sigfigs : ndigits;
164 s0 = rv_alloc(bufsize);
176 for (s = s0 + bufsize - 1; s > s0 + sigfigs - 1; s--)
226 int bufsize; local
260 bufsize = (sigfigs > ndigits) ? sigfigs : ndigits;
261 s0 = rv_alloc(bufsize);
273 for (s = s0 + bufsize - 1; s > s0 + sigfigs - 1; s--)
  /bionic/libc/upstream-openbsd/lib/libc/locale/
_wcstod.h 108 size_t bufsize; local
112 bufsize = wcsnrtombs(NULL, &s, size, 0, &st);
114 buf = malloc(bufsize + 1);
122 size_converted = wcsnrtombs(buf, &s, size, bufsize, &st);
123 if (size_converted != bufsize) {
130 buf[bufsize] = 0;
  /external/chromium_org/third_party/leveldatabase/
chromium_logger.h 34 int bufsize; local
36 bufsize = sizeof(buffer);
39 bufsize = 30000;
40 base = new char[bufsize];
43 char* limit = base + bufsize;
  /external/chromium_org/third_party/boringssl/src/crypto/asn1/
f_enum.c 100 int i,j,k,m,n,again,bufsize; local
107 bufsize=BIO_gets(bp,buf,size);
110 if (bufsize < 1) goto err_sl;
111 i=bufsize;
190 bufsize=BIO_gets(bp,buf,size);
f_int.c 105 int i,j,k,m,n,again,bufsize; local
112 bufsize=BIO_gets(bp,buf,size);
115 if (bufsize < 1) goto err_sl;
116 i=bufsize;
194 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;
188 bufsize=BIO_gets(bp,buf,size);
bio_asn1.c 92 int bufsize; member in struct:BIO_ASN1_BUF_CTX_t
169 ctx->bufsize = size;
237 assert(ctx->buflen <= ctx->bufsize);
  /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/libjpeg_turbo/
jdatadst-tj.c 43 size_t bufsize; member in struct:__anon17354
95 nextsize = dest->bufsize * 2;
101 MEMCOPY(nextbuffer, dest->buffer, dest->bufsize);
108 dest->pub.next_output_byte = nextbuffer + dest->bufsize;
109 dest->pub.free_in_buffer = dest->bufsize;
112 dest->bufsize = nextsize;
133 *dest->outsize = (unsigned long)(dest->bufsize - dest->pub.free_in_buffer);
189 dest->pub.free_in_buffer = dest->bufsize = *outsize;
jdatadst.c 55 size_t bufsize; member in struct:__anon17356
137 nextsize = dest->bufsize * 2;
143 MEMCOPY(nextbuffer, dest->buffer, dest->bufsize);
150 dest->pub.next_output_byte = nextbuffer + dest->bufsize;
151 dest->pub.free_in_buffer = dest->bufsize;
154 dest->bufsize = nextsize;
194 *dest->outsize = (unsigned long)(dest->bufsize - dest->pub.free_in_buffer);
277 dest->pub.free_in_buffer = dest->bufsize = *outsize;
  /external/libpcap/tests/
opentest.c 54 int dorfmon, dopromisc, snaplen, useactivate, bufsize; local
63 bufsize = 0;
100 bufsize = atoi(optarg)*1024;
101 if (bufsize <= 0)
103 useactivate = 1; /* required for bufsize */
140 if (bufsize != 0) {
141 status = pcap_set_buffer_size(pd, bufsize);
177 "Usage: %s [ -Ipa ] [ -i interface ] [ -s snaplen ] [ -B bufsize ]\n",
  /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/chromium_org/third_party/tcmalloc/chromium/src/
libc_override_osx.h 157 int bufsize = 8192; local
159 bufsize = 102400; // I picked this size arbitrarily
160 char* buffer = new char[bufsize];
161 MallocExtension::instance()->GetStats(buffer, bufsize);
  /external/chromium_org/third_party/tcmalloc/vendor/src/
libc_override_osx.h 157 int bufsize = 8192; local
159 bufsize = 102400; // I picked this size arbitrarily
160 char* buffer = new char[bufsize];
161 MallocExtension::instance()->GetStats(buffer, bufsize);
  /external/jpeg/
ansi2knr.c 324 #define bufsize 5000 /* arbitrary size */ macro
370 buf = malloc(bufsize);
372 while ( fgets(line, (unsigned)(buf + bufsize - line), in) != NULL )
383 f: if ( line >= buf + (bufsize - 1) ) /* overflow check */
385 if ( fgets(line, (unsigned)(buf + bufsize - line), in) == NULL )
409 if ( line != buf + (bufsize - 1) ) /* overflow check */
  /external/chromium_org/net/base/
nss_memio.c 30 int bufsize; /* number of bytes allocated to buf */ member in struct:memio_buffer
94 mb->bufsize = size;
103 mb->bufsize = 0;
111 return (((mb->tail >= mb->head) ? mb->tail : mb->bufsize) - mb->head);
124 return mb->bufsize - mb->tail - (mb->head == 0);
139 if (mb->tail == mb->bufsize)
151 if (mb->tail == mb->bufsize)
172 if (mb->head == mb->bufsize)
183 if (mb->head == mb->bufsize)
228 PR_ASSERT(mb->bufsize);
    [all...]
  /external/chromium_org/third_party/libjpeg_turbo/simd/
jsimd_arm.c 65 parse_proc_cpuinfo (int bufsize)
67 char *buffer = (char *)malloc(bufsize);
76 while (fgets(buffer, bufsize, fd)) {
104 int bufsize = 1024; /* an initial guess for the line buffer size limit */ local
118 while (!parse_proc_cpuinfo(bufsize)) {
119 bufsize *= 2;
120 if (bufsize > SOMEWHAT_SANE_PROC_CPUINFO_SIZE_LIMIT)
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/preprocs/cpp/
cpp-preproc.c 238 int bufsize = BSIZE; local
253 buf = yasm_xmalloc((size_t)bufsize);
256 if (!fgets(p, bufsize-(p-buf), pp->f)) {
268 if ((p-buf) >= bufsize) {
271 bufsize *= 2;
272 buf = yasm_xrealloc(buf, (size_t)bufsize);
  /external/chromium_org/tools/win/link_limiter/
limiter.cc 104 DWORD bufsize = buffer.size(); local
107 &bufsize);
110 bufsize > buffer.size()) {
111 buffer.resize(bufsize);

Completed in 2625 milliseconds

1 2 3