Searched defs:this_len (Results 1 - 13 of 13) sorted by relevance

/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/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/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/fio/
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;
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...]
/external/pdfium/core/src/fxcrt/
H A Dfx_basic_bstring.cpp936 int this_len = m_pData->m_nDataLength; local
938 int min_len = this_len < that_len ? this_len : that_len;
947 if (this_len < that_len) {
950 if (this_len > that_len) {
H A Dfx_basic_wstring.cpp475 int this_len = m_pData->m_nDataLength; local
477 int min_len = this_len < that_len ? this_len : that_len;
486 if (this_len < that_len) {
489 if (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/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/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 296 milliseconds