/external/chromium_org/third_party/mesa/src/src/glsl/glcpp/ |
glcpp.c | 49 size_t total_read = 0; local 53 if (total_read + CHUNK + 1 > text_size) { 61 bytes = fread (text + total_read, 1, CHUNK, fp); 62 total_read += bytes; 69 text[total_read] = '\0';
|
/external/mesa3d/src/glsl/glcpp/ |
glcpp.c | 49 size_t total_read = 0; local 53 if (total_read + CHUNK + 1 > text_size) { 61 bytes = fread (text + total_read, 1, CHUNK, fp); 62 total_read += bytes; 69 text[total_read] = '\0';
|
/external/chromium_org/third_party/mesa/src/src/glsl/ |
main.cpp | 69 size_t total_read = 0; local 83 size_t bytes = fread(text + total_read, 84 1, size - total_read, fp); 85 if (bytes < size - total_read) { 95 total_read += bytes; 96 } while (total_read < size); 98 text[total_read] = '\0';
|
/external/mesa3d/src/glsl/ |
main.cpp | 69 size_t total_read = 0; local 83 size_t bytes = fread(text + total_read, 84 1, size - total_read, fp); 85 if (bytes < size - total_read) { 95 total_read += bytes; 96 } while (total_read < size); 98 text[total_read] = '\0';
|
/external/chromium_org/ppapi/tests/ |
test_broker.cc | 92 size_t total_read = 0; 93 while (total_read < message_len) { 94 ssize_t read = HANDLE_EINTR(::read(file, message + total_read, 95 message_len - total_read)); 98 total_read += read; 100 return total_read == message_len;
|
/external/opencv/otherlibs/highgui/ |
cvcap_socket.cpp | 247 long read_count, total_read = 0; local 248 while (total_read < readBufSize) 250 read_count = read(sockd, &readBuf[total_read], readBufSize); 258 total_read += read_count; 262 if (total_read == readBufSize)
|
/external/chromium/base/ |
file_util_posix.cc | 365 size_t total_read = 0; local 366 while (total_read < bytes) { 368 HANDLE_EINTR(read(fd, buffer + total_read, bytes - total_read)); 371 total_read += bytes_read; 373 return total_read == bytes;
|
file_util_win.cc | 1136 size_t total_read = 0; local [all...] |
/external/chromium/third_party/libjingle/source/talk/base/ |
stream.cc | 85 size_t total_read = 0, current_read; local 86 while (total_read < buffer_len) { 87 result = Read(static_cast<char*>(buffer) + total_read, 88 buffer_len - total_read, ¤t_read, error); 91 total_read += current_read; 94 *read = total_read;
|
/external/qemu/distrib/sdl-1.2.15/src/file/ |
SDL_rwops.c | 225 int total_read = 0; local 247 total_read += read_ahead; 259 total_read += read_ahead; 265 total_read += byte_read; 267 return (total_read/size);
|
/external/chromium_org/chrome/app/ |
image_pre_reader_win.cc | 359 size_t total_read = 0; local 362 (size_to_read ? total_read < size_to_read : true)) { 363 total_read += static_cast<size_t>(len);
|
/external/chromium_org/base/ |
file_util_posix.cc | 381 size_t total_read = 0; local 382 while (total_read < bytes) { 384 HANDLE_EINTR(read(fd, buffer + total_read, bytes - total_read)); 387 total_read += bytes_read; 389 return total_read == bytes;
|
/external/chromium_org/third_party/libjingle/source/talk/base/ |
stream.cc | 77 size_t total_read = 0, current_read; local 78 while (total_read < buffer_len) { 79 result = Read(static_cast<char*>(buffer) + total_read, 80 buffer_len - total_read, ¤t_read, error); 83 total_read += current_read; 86 *read = total_read; [all...] |
/external/chromium/net/socket/ |
ssl_client_socket_mac.cc | 1313 size_t total_read = us->recv_buffer_.size(); local [all...] |
/external/chromium_org/third_party/zlib/contrib/minizip/ |
minizip.c | 178 unsigned long total_read = 0; local 198 total_read += size_read;
|
/external/zlib/src/contrib/minizip/ |
minizip.c | 192 unsigned long total_read = 0; local 212 total_read += size_read;
|
/external/libvpx/libvpx/examples/includes/geshi/geshi/ |
tsql.php | 139 '@@TOTAL_READ','@@PACKET_ERRORS','@@TOTAL_WRITE',
|