Searched refs:bytecount (Results 1 - 25 of 25) sorted by relevance

/external/libxml2/os400/
H A Dlibxmlmain.c39 size_t bytecount = 0; local
65 bytecount += outbuf - dummybuf;
72 argv = (char * *) malloc((argc + 1) * sizeof *argv + bytecount);
76 outbytesleft = bytecount;
/external/curl/lib/
H A Dgopher.c80 curl_off_t *bytecount = &data->req.bytecount; local
163 Curl_setup_transfer(conn, FIRSTSOCKET, -1, FALSE, bytecount,
H A Dopenldap.c499 data->req.size = data->req.bytecount;
536 data->req.bytecount += bv.bv_len + 5;
570 data->req.bytecount += bv.bv_len + 2;
610 data->req.bytecount += 2;
619 data->req.bytecount += val_b64_sz;
636 data->req.bytecount += bvals[i].bv_len + 1;
644 data->req.bytecount++;
652 data->req.bytecount++;
659 data->req.bytecount++;
H A Dtransfer.c468 curl_off_t totalleft = k->size - k->bytecount;
491 if((k->bytecount == 0) && (k->writebytecount == 0)) {
714 DEBUGF(infof(data, "Increasing bytecount by %zu from hbuflen\n",
716 k->bytecount += k->hbuflen;
720 (k->bytecount + nread >= k->maxdownload)) {
722 excess = (size_t)(k->bytecount + nread - k->maxdownload);
729 ", bytecount = %" CURL_FORMAT_CURL_OFF_T ", nread = %zd)\n",
731 k->size, k->maxdownload, k->bytecount, nread);
740 ", bytecount = %" CURL_FORMAT_CURL_OFF_T "\n",
741 excess, k->size, k->maxdownload, k->bytecount);
[all...]
H A Dfile.c319 curl_off_t bytecount = 0; local
400 bytecount += nread;
402 Curl_pgrsSetUploadCounter(data, bytecount);
442 curl_off_t bytecount = 0; local
579 bytecount += nread;
587 Curl_pgrsSetDownloadCounter(data, bytecount);
H A Dsmb.c578 curl_off_t upload_size = conn->data->req.size - conn->data->req.bytecount;
818 conn->data->req.bytecount += len;
820 Curl_pgrsSetDownloadCounter(conn->data, conn->data->req.bytecount);
832 conn->data->req.bytecount += len;
834 Curl_pgrsSetUploadCounter(conn->data, conn->data->req.bytecount);
835 if(conn->data->req.bytecount >= conn->data->req.size)
H A Dcurl_rtmp.c290 conn->data->req.size = conn->data->req.bytecount;
H A Dssh-libssh.c1299 data->req.bytecount += sshc->readdir_len + 1;
1424 data->req.bytecount += sshc->readdir_currLen;
1742 curl_off_t bytecount; local
1753 bytecount = ssh_scp_request_get_size(sshc->scp_session);
1754 data->req.maxdownload = (curl_off_t) bytecount;
1755 Curl_setup_transfer(conn, FIRSTSOCKET, bytecount, FALSE, NULL, -1,
H A Dmime.c282 size_t bytecount = 0; local
288 bytecount++;
290 bytecount += i;
291 dst = malloc(bytecount + 1);
H A Dtftp.c1144 k->bytecount += state->rbytes-4;
1145 Curl_pgrsSetDownloadCounter(data, (curl_off_t) k->bytecount);
H A Dssh.c1956 data->req.bytecount += sshc->readdir_len + 1;
2072 data->req.bytecount += sshc->readdir_currLen;
2403 curl_off_t bytecount; local
2447 bytecount = (curl_off_t)sb.st_size;
2449 Curl_setup_transfer(conn, FIRSTSOCKET, bytecount, FALSE, NULL, -1, NULL);
H A Dimap.c1145 data->req.bytecount += chunk;
1167 if(data->req.bytecount == size)
H A Durldata.h512 curl_off_t bytecount; /* total number of bytes read */ member in struct:SingleRequest
H A Dmulti.c1363 k->bytecount, k->size);
1369 k->bytecount);
H A Dhttp.c1461 data->req.bytecount = http->readbytecount + http->writebytecount;
H A Dftp.c4460 ftp->bytecountp = &conn->data->req.bytecount;
H A Durl.c4728 k->bytecount = 0;
/external/ltp/testcases/kernel/mem/mtest01/
H A Dmtest01.c82 unsigned long bytecount, alloc_bytes, max_pids; local
257 bytecount = chunksize;
261 "stopped at %lu bytes", bytecount);
271 bytecount, chunksize);
272 bytecount += chunksize;
273 if (alloc_bytes && bytecount >= alloc_bytes)
278 bytecount);
281 bytecount);
/external/pdfium/third_party/libtiff/
H A Dtif_read.c695 uint64 bytecount; local
713 bytecount = td->td_stripbytecount[strip];
714 if ((int64)bytecount <= 0) {
718 (unsigned __int64) bytecount,
723 (unsigned long long) bytecount,
728 bytecountm = (tmsize_t)bytecount;
729 if ((uint64)bytecountm!=bytecount) {
753 uint64 bytecount = td->td_stripbytecount[strip]; local
754 if ((int64)bytecount <= 0) {
758 (unsigned __int64) bytecount,
1198 uint64 bytecount = td->td_stripbytecount[tile]; local
[all...]
H A Dtif_strip.c153 uint64 bytecount = td->td_stripbytecount[strip]; local
155 if (bytecount == 0)
160 (unsigned __int64) bytecount,
165 (unsigned long long) bytecount,
168 bytecount = (uint64) -1;
171 return bytecount;
H A Dtif_dirread.c5537 uint64 bytecount; local
5548 bytecount = td->td_stripbytecount[0];
5602 if (stripbytes > bytecount)
5603 stripbytes = bytecount;
5607 bytecount -= stripbytes;
/external/scapy/scapy/contrib/
H A Disis.py149 self.bytecount = template.count("*")
153 if self.bytecount == 0:
158 for _ in range(self.bytecount):
165 def __init__(self, bytecount= None):
166 self.bytecount = random.randint(1, 13) if bytecount is None else bytecount
167 self.format = "%02X" + (".%02X%02X" * ((self.bytecount-1) // 2)) + ("" if ((self.bytecount-1) % 2) == 0 else ".%02X")
/external/valgrind/coregrind/m_syswrap/
H A Dsyswrap-x86-linux.c402 SysRes read_ldt ( ThreadId tid, UChar* ptr, UInt bytecount )
409 VG_(printf)("read_ldt: tid = %u, ptr = %p, bytecount = %u\n",
410 tid, ptr, bytecount );
422 if (size > bytecount)
423 size = bytecount;
435 SysRes write_ldt ( ThreadId tid, void* ptr, UInt bytecount, Int oldmode ) argument
443 "bytecount = %u, oldmode = %d\n",
444 tid, ptr, bytecount, oldmode );
453 if (bytecount != sizeof(vki_modify_ldt_t))
483 Int func, void* ptr, UInt bytecount )
[all...]
/external/linux-kselftest/tools/testing/selftests/x86/
H A Dldt_gdt.c224 unsigned long bytecount)
226 int ret = syscall(SYS_modify_ldt, 0x11, ptr, bytecount);
223 safe_modify_ldt(int func, struct user_desc *ptr, unsigned long bytecount) argument
/external/valgrind/memcheck/tests/x86-linux/
H A Dscalar.stderr.exp1543 Syscall param modify_ldt(bytecount) contains uninitialised byte(s)

Completed in 543 milliseconds