Searched refs:total_read (Results 1 - 6 of 6) sorted by relevance

/external/mesa3d/src/glsl/glcpp/
H A Dglcpp.c49 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/opencv/otherlibs/highgui/
H A Dcvcap_socket.cpp247 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/mesa3d/src/glsl/
H A Dmain.cpp69 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/boringssl/src/crypto/bio/
H A Dbio_test.cc213 size_t total_read = 0; local
237 total_read += BIO_read(bio2, bio2_application_recv_buffer + total_read,
260 total_read += BioReadZeroCopyWrapper(
261 bio2, bio2_application_recv_buffer + total_read, bytes_left);
263 if (total_read != total_write) {
268 if (total_read > kLengths[i] + kPartialLengths[j]) {
274 total_read) != 0) {
/external/google-breakpad/src/common/windows/
H A Dhttp_upload.cc214 DWORD total_read = 0; local
227 total_read += size_read;
235 (total_read == claimed_size));
/external/zlib/src/contrib/minizip/
H A Dminizip.c192 unsigned long total_read = 0; local
212 total_read += size_read;

Completed in 248 milliseconds