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

  /external/libxml2/os400/
libxmlmain.c 39 size_t bytecount = 0; local
65 bytecount += outbuf - dummybuf;
72 argv = (char * *) malloc((argc + 1) * sizeof *argv + bytecount);
76 outbytesleft = bytecount;
  /external/curl/lib/
gopher.c 79 curl_off_t *bytecount = &data->req.bytecount; local
162 Curl_setup_transfer(conn, FIRSTSOCKET, -1, FALSE, bytecount,
openldap.c 469 data->req.size = data->req.bytecount;
506 data->req.bytecount += bv.bv_len + 5;
540 data->req.bytecount += bv.bv_len + 2;
580 data->req.bytecount += 2;
589 data->req.bytecount += val_b64_sz;
606 data->req.bytecount += bvals[i].bv_len + 1;
614 data->req.bytecount++;
622 data->req.bytecount++;
629 data->req.bytecount++;
transfer.c 427 curl_off_t totalleft = k->size - k->bytecount;
450 if((k->bytecount == 0) && (k->writebytecount == 0)) {
673 DEBUGF(infof(data, "Increasing bytecount by %zu from hbuflen\n",
675 k->bytecount += k->hbuflen;
679 (k->bytecount + nread >= k->maxdownload)) {
681 excess = (size_t)(k->bytecount + nread - k->maxdownload);
690 ", bytecount = %" CURL_FORMAT_CURL_OFF_T ", nread = %zd)\n",
692 k->size, k->maxdownload, k->bytecount, nread);
701 ", bytecount = %" CURL_FORMAT_CURL_OFF_T "\n",
702 excess, k->size, k->maxdownload, k->bytecount);
    [all...]
file.c 313 curl_off_t bytecount = 0; local
396 bytecount += nread;
398 Curl_pgrsSetUploadCounter(data, bytecount);
438 curl_off_t bytecount = 0; local
577 bytecount += nread;
585 Curl_pgrsSetDownloadCounter(data, bytecount);
smb.c 578 curl_off_t upload_size = conn->data->req.size - conn->data->req.bytecount;
803 conn->data->req.bytecount += len;
805 Curl_pgrsSetDownloadCounter(conn->data, conn->data->req.bytecount);
817 conn->data->req.bytecount += len;
819 Curl_pgrsSetUploadCounter(conn->data, conn->data->req.bytecount);
820 if(conn->data->req.bytecount >= conn->data->req.size)
curl_rtmp.c 283 conn->data->req.size = conn->data->req.bytecount;
tftp.c     [all...]
ssh.c 2477 curl_off_t bytecount; local
    [all...]
imap.c     [all...]
urldata.h 659 curl_off_t bytecount; /* total number of bytes read */ member in struct:SingleRequest
    [all...]
http.c     [all...]
multi.c     [all...]
ftp.c     [all...]
url.c     [all...]
  /external/ltp/testcases/kernel/mem/mtest01/
mtest01.c 82 unsigned long bytecount, alloc_bytes, max_pids; local
260 bytecount = chunksize;
264 "stopped at %lu bytes", bytecount);
274 bytecount, chunksize);
275 bytecount += chunksize;
276 if (alloc_bytes && bytecount >= alloc_bytes)
281 bytecount);
284 bytecount);
  /external/pdfium/third_party/libtiff/
tif_read.c 442 uint64 bytecount; local
460 bytecount = td->td_stripbytecount[strip];
461 if ((int64)bytecount <= 0) {
465 (unsigned __int64) bytecount,
470 (unsigned long long) bytecount,
475 bytecountm = (tmsize_t)bytecount;
476 if ((uint64)bytecountm!=bytecount) {
500 uint64 bytecount = td->td_stripbytecount[strip]; local
501 if ((int64)bytecount <= 0) {
505 (unsigned __int64) bytecount,
803 uint64 bytecount = td->td_stripbytecount[tile]; local
    [all...]
tif_strip.c 153 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;
tif_dirread.c 5495 uint64 bytecount; local
    [all...]
  /external/valgrind/coregrind/m_syswrap/
syswrap-x86-linux.c 402 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 )
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/
ldt_gdt.c 187 unsigned long bytecount)
189 int ret = syscall(SYS_modify_ldt, 0x11, ptr, bytecount);
  /toolchain/binutils/binutils-2.25/gold/
object.cc 112 section_size_type bytecount; local
115 contents = object->section_contents(xindex_shndx, &bytecount, false);
122 bytecount = convert_to_section_size_type(shdr.get_sh_size());
123 contents = object->get_view(shdr.get_sh_offset(), bytecount, true, false);
127 this->symtab_xindex_.reserve(bytecount / 4);
128 for (section_size_type i = 0; i < bytecount; i += 4)
    [all...]
  /external/valgrind/memcheck/tests/x86-linux/
scalar.stderr.exp     [all...]

Completed in 844 milliseconds