HomeSort by relevance Sort by last modified time
    Searched defs:buffsize (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/third_party/skia/third_party/lua/src/
lzio.h 26 size_t buffsize; member in struct:Mbuffer
29 #define luaZ_initbuffer(L, buff) ((buff)->buffer = NULL, (buff)->buffsize = 0)
32 #define luaZ_sizebuffer(buff) ((buff)->buffsize)
39 (luaM_reallocvector(L, (buff)->buffer, (buff)->buffsize, size, char), \
40 (buff)->buffsize = size)
  /external/qemu/android/
async-utils.h 45 * 1/ setup the reader with asyncReader_init(ar, buffer, buffsize,io);
52 size_t buffsize; member in struct:__anon33631
64 size_t buffsize,
93 size_t buffsize; member in struct:__anon33632
105 size_t buffsize,
137 size_t buffsize; member in struct:__anon33633
143 /* Setup an AsyncLineReader to read at most 'buffsize' characters (bytes)
147 * NOTE: buffsize must be > 0. If not, asyncLineReader_getLine will return
150 * buffsize must also sufficiently big to hold the final '\n'.
156 size_t buffsize,
    [all...]
  /external/libedit/src/
chartype.c 211 static size_t buffsize = 0; local
219 buffsize = CT_BUFSIZ;
220 buff = el_malloc(buffsize * sizeof(*buff));
224 used = ct_visual_char(dst, buffsize - (size_t)(dst - buff), *s);
227 buffsize += CT_BUFSIZ;
228 p = el_realloc(buff, buffsize * sizeof(*buff));
239 if (dst >= (buff + buffsize)) { /* sigh */
240 buffsize += 1;
241 p = el_realloc(buff, buffsize * sizeof(*buff));
245 dst = buff + buffsize - 1
    [all...]
  /device/moto/shamu/qrngd/
qrngd.c 79 static unsigned long buffsize; /* size of data in buffer */ variable
390 if (buffsize == 0) {
401 buffsize = 0;
406 buffsize = MAX_BUFFER;
411 if (buffsize == 0) {
427 write_size = min(buffsize, MAX_ENT_POOL_WRITES);
434 buffsize -= write_size;

Completed in 2044 milliseconds