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

/external/fio/lib/
H A Drand.c75 int this_len; local
79 this_len = sizeof(int64_t);
82 this_len = sizeof(int32_t);
85 this_len = sizeof(int16_t);
88 this_len = sizeof(int8_t);
90 ptr += this_len;
91 len -= this_len;
140 unsigned int this_len; local
157 this_len = (segment * (100 - percentage)) / 100;
158 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/dtc/
H A Dfdtdump.c221 off_t this_len = endp - p; local
222 if (valid_header(p, this_len))
/external/fio/
H A Dserver.c370 size_t this_len, cur_len = 0; local
381 this_len = size;
382 if (this_len > FIO_SERVER_MAX_FRAGMENT_PDU)
383 this_len = FIO_SERVER_MAX_FRAGMENT_PDU;
385 if (!cmd || cur_len < sizeof(*cmd) + this_len) {
389 cur_len = sizeof(*cmd) + this_len;
393 fio_init_net_cmd(cmd, opcode, buf, this_len, tag);
395 if (this_len < size)
400 ret = fio_send_data(fd, cmd, sizeof(*cmd) + this_len);
401 size -= this_len;
1280 unsigned int this_len, flags = 0; local
[all...]
H A Dverify.c672 unsigned int this_len, len; local
682 this_len = sizeof(zero_buf);
683 if (this_len > len)
684 this_len = len;
685 if (memcmp(p, zero_buf, this_len)) {
689 len -= this_len;
690 p += this_len;
H A Dclient.c1260 unsigned int this_len; local
1277 this_len = this_chunk - stream.avail_out;
1278 p += this_len;
1279 total -= this_len;
/external/pdfium/core/fxcrt/
H A Dfx_basic_bstring.cpp869 int this_len = m_pData->m_nDataLength; local
871 int min_len = this_len < that_len ? this_len : that_len;
880 if (this_len < that_len) {
883 if (this_len > that_len) {
H A Dfx_basic_wstring.cpp852 int this_len = m_pData->m_nDataLength; local
854 int min_len = this_len < that_len ? this_len : that_len;
863 if (this_len < that_len) {
866 if (this_len > that_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/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/mesa3d/src/gtest/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 1517 milliseconds