Searched refs:buffsize (Results 1 – 11 of 11) sorted by relevance
/external/qemu/android/ |
D | async-utils.c | 23 size_t buffsize, in asyncReader_init() argument 27 ar->buffsize = buffsize; in asyncReader_init() 30 if (buffsize > 0) in asyncReader_init() 39 if (ar->pos >= ar->buffsize) { in asyncReader_read() 47 ar->buffsize - ar->pos)); in asyncReader_read() 62 } while (ar->pos < ar->buffsize); in asyncReader_read() 71 size_t buffsize, in asyncWriter_init() argument 75 aw->buffsize = buffsize; in asyncWriter_init() 78 if (buffsize > 0) in asyncWriter_init() 87 if (aw->pos >= aw->buffsize) { in asyncWriter_write() [all …]
|
D | async-utils.h | 52 size_t buffsize; member 64 size_t buffsize, 93 size_t buffsize; member 105 size_t buffsize, 137 size_t buffsize; member 156 size_t buffsize,
|
D | opengles.h | 64 void android_gles_server_path(char* buff, size_t buffsize);
|
D | opengles.c | 301 android_gles_server_path(char* buff, size_t buffsize) in android_gles_server_path() argument 303 strncpy_safe(buff, rendererAddress, buffsize); in android_gles_server_path()
|
/external/libedit/src/ |
D | chartype.c | 211 static size_t buffsize = 0; in ct_visual_string() local 219 buffsize = CT_BUFSIZ; in ct_visual_string() 220 buff = el_malloc(buffsize * sizeof(*buff)); in ct_visual_string() 224 used = ct_visual_char(dst, buffsize - (size_t)(dst - buff), *s); in ct_visual_string() 227 buffsize += CT_BUFSIZ; in ct_visual_string() 228 p = el_realloc(buff, buffsize * sizeof(*buff)); in ct_visual_string() 239 if (dst >= (buff + buffsize)) { /* sigh */ in ct_visual_string() 240 buffsize += 1; in ct_visual_string() 241 p = el_realloc(buff, buffsize * sizeof(*buff)); in ct_visual_string() 245 dst = buff + buffsize - 1; in ct_visual_string() [all …]
|
/external/chromium_org/third_party/skia/third_party/lua/src/ |
D | lzio.h | 26 size_t buffsize; member 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)
|
D | lzio.c | 69 if (n > buff->buffsize) { in luaZ_openspace()
|
/external/webp/src/dsp/ |
D | cpu-features.c | 71 read_file(const char* pathname, char* buffer, size_t buffsize) in read_file() argument 80 len = read(fd, buffer, buffsize); in read_file()
|
/external/webrtc/src/system_wrappers/source/android/ |
D | cpu-features.c | 71 read_file(const char* pathname, char* buffer, size_t buffsize) in read_file() argument 80 len = read(fd, buffer, buffsize); in read_file()
|
/external/skia/platform_tools/android/third_party/cpufeatures/ |
D | cpu-features.c | 153 read_file(const char* pathname, char* buffer, size_t buffsize) in read_file() argument 163 while (count < (int)buffsize) { in read_file() 164 int ret = read(fd, buffer + count, buffsize - count); in read_file()
|
/external/chromium_org/third_party/skia/platform_tools/android/third_party/cpufeatures/ |
D | cpu-features.c | 153 read_file(const char* pathname, char* buffer, size_t buffsize) in read_file() argument 163 while (count < (int)buffsize) { in read_file() 164 int ret = read(fd, buffer + count, buffsize - count); in read_file()
|