Home
last modified time | relevance | path

Searched refs:dest_length (Results 1 – 6 of 6) sorted by relevance

/external/chromium_org/chrome/browser/metrics/
Dcompression_utils.cc30 uLongf* dest_length, in GzipCompressHelper() argument
38 stream.avail_out = static_cast<uInt>(*dest_length); in GzipCompressHelper()
39 if (static_cast<uLong>(stream.avail_out) != *dest_length) in GzipCompressHelper()
68 *dest_length = stream.total_out; in GzipCompressHelper()
/external/regex-re2/util/
Dstrutil.cc63 const int dest_length = src.size() * 4 + 1; // Maximum possible expansion in CEscape() local
64 char* dest = new char[dest_length]; in CEscape()
66 dest, dest_length); in CEscape()
/external/chromium_org/third_party/re2/util/
Dstrutil.cc63 const int dest_length = src.size() * 4 + 1; // Maximum possible expansion in CEscape() local
64 char* dest = new char[dest_length]; in CEscape()
66 dest, dest_length); in CEscape()
/external/libvpx/libvpx/vpx_scale/generic/
Dvpx_scale.c73 unsigned int dest_length in scale1d_2t1_i() argument
85 …for (i = dest_step, j = source_step; i < dest_length * dest_step; i += dest_step, j += source_step… in scale1d_2t1_i()
127 unsigned int dest_length in scale1d_2t1_ps() argument
138 for (i = 0; i < dest_length * dest_step; i += dest_step, j += source_step) in scale1d_2t1_ps()
173 unsigned int dest_length in scale1d_c() argument
188 for (i = 0; i < dest_length * dest_step; i += dest_step) { in scale1d_c()
261 … unsigned char * dest, int dest_step, unsigned int dest_scale, unsigned int dest_length); in Scale2D()
/external/protobuf/src/google/protobuf/stubs/
Dstrutil.cc488 const int dest_length = src.size() * 4 + 1; // Maximum possible expansion in CEscape() local
489 scoped_array<char> dest(new char[dest_length]); in CEscape()
491 dest.get(), dest_length, false, false); in CEscape()
499 const int dest_length = src.size() * 4 + 1; // Maximum possible expansion in Utf8SafeCEscape() local
500 scoped_array<char> dest(new char[dest_length]); in Utf8SafeCEscape()
502 dest.get(), dest_length, false, true); in Utf8SafeCEscape()
508 const int dest_length = src.size() * 4 + 1; // Maximum possible expansion in CHexEscape() local
509 scoped_array<char> dest(new char[dest_length]); in CHexEscape()
511 dest.get(), dest_length, true, false); in CHexEscape()
/external/chromium_org/third_party/protobuf/src/google/protobuf/stubs/
Dstrutil.cc526 const int dest_length = src.size() * 4 + 1; // Maximum possible expansion in CEscape() local
527 scoped_array<char> dest(new char[dest_length]); in CEscape()
529 dest.get(), dest_length, false, false); in CEscape()
537 const int dest_length = src.size() * 4 + 1; // Maximum possible expansion in Utf8SafeCEscape() local
538 scoped_array<char> dest(new char[dest_length]); in Utf8SafeCEscape()
540 dest.get(), dest_length, false, true); in Utf8SafeCEscape()
546 const int dest_length = src.size() * 4 + 1; // Maximum possible expansion in CHexEscape() local
547 scoped_array<char> dest(new char[dest_length]); in CHexEscape()
549 dest.get(), dest_length, true, false); in CHexEscape()