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

  /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:__anon32745
64 size_t buffsize,
93 size_t buffsize; member in struct:__anon32746
105 size_t buffsize,
137 size_t buffsize; member in struct:__anon32747
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...]
async-utils.c 23 size_t buffsize,
27 ar->buffsize = buffsize;
30 if (buffsize > 0)
39 if (ar->pos >= ar->buffsize) {
47 ar->buffsize - ar->pos));
62 } while (ar->pos < ar->buffsize);
71 size_t buffsize,
75 aw->buffsize = buffsize;
    [all...]
opengles.h 64 void android_gles_server_path(char* buff, size_t buffsize);
opengles.c 301 android_gles_server_path(char* buff, size_t buffsize)
303 strncpy_safe(buff, rendererAddress, buffsize);
  /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)
lzio.c 69 if (n > buff->buffsize) {
  /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;
  /external/webp/src/dsp/
cpu-features.c 68 * than 'buffsize' bytes.
71 read_file(const char* pathname, char* buffer, size_t buffsize)
80 len = read(fd, buffer, buffsize);
  /external/webrtc/src/system_wrappers/source/android/
cpu-features.c 68 * than 'buffsize' bytes.
71 read_file(const char* pathname, char* buffer, size_t buffsize)
80 len = read(fd, buffer, buffsize);
  /external/chromium_org/third_party/skia/platform_tools/android/third_party/cpufeatures/
cpu-features.c 150 * than 'buffsize' bytes.
153 read_file(const char* pathname, char* buffer, size_t buffsize)
163 while (count < (int)buffsize) {
164 int ret = read(fd, buffer + count, buffsize - count);
  /external/skia/platform_tools/android/third_party/cpufeatures/
cpu-features.c 150 * than 'buffsize' bytes.
153 read_file(const char* pathname, char* buffer, size_t buffsize)
163 while (count < (int)buffsize) {
164 int ret = read(fd, buffer + count, buffsize - count);
  /system/core/init/
bootchart.c 66 proc_read(const char* filename, char* buff, size_t buffsize)
71 len = unix_read(fd, buff, buffsize-1);
  /ndk/sources/android/cpufeatures/
cpu-features.c 155 * than 'buffsize' bytes.
158 read_file(const char* pathname, char* buffer, size_t buffsize)
168 while (count < (int)buffsize) {
169 int ret = read(fd, buffer + count, buffsize - count);
    [all...]
  /frameworks/rs/cpu_ref/
rsCpuCore.cpp 208 read_file(const char* pathname, char* buffer, size_t buffsize)
217 len = read(fd, buffer, buffsize);

Completed in 1458 milliseconds