Searched refs:this_len (Results 1 - 18 of 18) sorted by relevance

/external/fio/lib/
H A Drand.c104 int this_len; local
108 this_len = sizeof(int64_t);
111 this_len = sizeof(int32_t);
114 this_len = sizeof(int16_t);
117 this_len = sizeof(int8_t);
119 ptr += this_len;
120 len -= this_len;
143 unsigned int this_len; local
160 this_len = (segment * (100 - percentage)) / 100;
161 if (this_len > le
[all...]
/external/syslinux/lzo/src/
H A Dlzo_mchw.ch148 lzo_uint this_len, lzo_uint skip )
154 assert(this_len >= skip);
155 swd_accept(s, this_len - skip);
156 c->textsize += this_len - skip + 1;
160 assert(this_len <= 1);
161 c->textsize += this_len - skip;
/external/fio/engines/
H A Dsplice.c41 int this_len = buflen; local
43 if (this_len > SPLICE_DEF_SIZE)
44 this_len = SPLICE_DEF_SIZE;
46 ret = splice(f->fd, &offset, sd->pipe[1], NULL, this_len, SPLICE_F_MORE);
100 int this_len = buflen; local
103 if (this_len > SPLICE_DEF_SIZE) {
104 this_len = SPLICE_DEF_SIZE;
108 ret = splice(f->fd, &offset, sd->pipe[1], NULL, this_len,flags);
/external/blktrace/btt/
H A Dmmap.c132 size_t this_len; local
141 this_len = convert_to_cpu(next_t, t, pdu);
142 cur += this_len;
/external/libvncserver/utils/
H A Dgit2cl.pl163 my $this_len = length ($this_line);
164 if ($this_len == 0)
170 elsif ($this_len >= $length_remaining) # Line too long, try breaking it.
250 else # $this_len < $length_remaining, so tack on what we can.
253 $length_remaining = $length_remaining - $this_len;
/external/fio/t/
H A Dread-to-pipe-async.c612 size_t this_len; local
618 this_len = sb.st_size;
619 if (this_len > bs)
620 this_len = bs;
623 work->buf = malloc(this_len);
624 work->buf_size = this_len;
648 off += this_len;
649 sb.st_size -= this_len;
650 bytes += this_len;
/external/fio/
H A Dserver.c475 size_t this_len, cur_len = 0; local
486 this_len = size;
487 if (this_len > FIO_SERVER_MAX_FRAGMENT_PDU)
488 this_len = FIO_SERVER_MAX_FRAGMENT_PDU;
490 if (!cmd || cur_len < sizeof(*cmd) + this_len) {
494 cur_len = sizeof(*cmd) + this_len;
498 fio_init_net_cmd(cmd, opcode, buf, this_len, tag);
500 if (this_len < size)
505 ret = fio_send_data(fd, cmd, sizeof(*cmd) + this_len);
506 size -= this_len;
1059 size_t this_len; local
1685 unsigned int this_len = FIO_SERVER_MAX_FRAGMENT_PDU - stream->avail_out; local
1779 unsigned int this_len; local
1846 unsigned int this_len; local
[all...]
H A Dclient.c1485 unsigned int this_len; local
1502 this_len = this_chunk - stream.avail_out;
1503 p += this_len;
1504 total -= this_len;
/external/dtc/
H A Dfdtdump.c226 off_t this_len = endp - p; local
227 if (valid_header(p, this_len))
/external/protobuf/conformance/third_party/jsoncpp/
H A Djsoncpp.cpp2678 unsigned this_len = this->storage_.length_; local
2680 unsigned min_len = std::min(this_len, other_len);
2684 return (this_len < other_len);
2691 unsigned this_len = this->storage_.length_; local
2693 if (this_len != other_len) return false;
2694 int comp = memcmp(this->cstr_, other.cstr_, this_len);
2932 unsigned this_len; local
2936 decodePrefixedString(this->allocated_, this->value_.string_, &this_len, &this_str);
2938 unsigned min_len = std::min(this_len, other_len);
2942 return (this_len < other_le
2987 unsigned this_len; local
3013 unsigned this_len; local
3035 unsigned this_len; local
[all...]
/external/syslinux/gpxe/src/util/
H A Dnrv2b.c744 unsigned int this_len, unsigned int skip )
750 assert(this_len >= skip);
751 swd_accept(s, this_len - skip);
752 c->textsize += this_len - skip + 1;
756 assert(this_len <= 1);
757 c->textsize += this_len - skip;
743 find_match( struct ucl_compress *c, struct ucl_swd *s, unsigned int this_len, unsigned int skip ) argument
/external/pdfium/core/fxcrt/
H A Dbytestring.cpp708 size_t this_len = m_pData->m_nDataLength;
710 size_t min_len = std::min(this_len, that_len);
714 if (this_len == that_len)
716 return this_len < that_len ? -1 : 1;
H A Dwidestring.cpp919 size_t this_len = m_pData->m_nDataLength;
921 size_t min_len = std::min(this_len, that_len);
925 if (this_len == that_len)
927 return this_len < that_len;
/external/google-breakpad/src/testing/gtest/src/
H A Dgtest.cc1672 const size_t this_len = strlen(c_str()); local
1674 return (this_len >= suffix_len) &&
1675 CStringEquals(c_str() + this_len - suffix_len, suffix);
1685 const size_t this_len = strlen(c_str()); local
1687 return (this_len >= suffix_len) &&
1688 CaseInsensitiveCStringEquals(c_str() + this_len - suffix_len, suffix);
/external/llvm/utils/unittest/googletest/src/
H A Dgtest.cc1671 const size_t this_len = strlen(c_str()); local
1673 return (this_len >= suffix_len) &&
1674 CStringEquals(c_str() + this_len - suffix_len, suffix);
1684 const size_t this_len = strlen(c_str()); local
1686 return (this_len >= suffix_len) &&
1687 CaseInsensitiveCStringEquals(c_str() + this_len - suffix_len, suffix);
/external/protobuf/gtest/src/
H A Dgtest.cc1694 const size_t this_len = strlen(c_str()); local
1696 return (this_len >= suffix_len) &&
1697 CStringEquals(c_str() + this_len - suffix_len, suffix);
1707 const size_t this_len = strlen(c_str()); local
1709 return (this_len >= suffix_len) &&
1710 CaseInsensitiveCStringEquals(c_str() + this_len - suffix_len, suffix);
/external/swiftshader/third_party/LLVM/utils/unittest/googletest/
H A Dgtest.cc1671 const size_t this_len = strlen(c_str()); local
1673 return (this_len >= suffix_len) &&
1674 CStringEquals(c_str() + this_len - suffix_len, suffix);
1684 const size_t this_len = strlen(c_str()); local
1686 return (this_len >= suffix_len) &&
1687 CaseInsensitiveCStringEquals(c_str() + this_len - suffix_len, suffix);
/external/protobuf/gtest/fused-src/gtest/
H A Dgtest-all.cc3034 const size_t this_len = strlen(c_str()); local
3036 return (this_len >= suffix_len) &&
3037 CStringEquals(c_str() + this_len - suffix_len, suffix);
3047 const size_t this_len = strlen(c_str()); local
3049 return (this_len >= suffix_len) &&
3050 CaseInsensitiveCStringEquals(c_str() + this_len - suffix_len, suffix);

Completed in 717 milliseconds