Home
last modified time | relevance | path

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

/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/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/libvpx/vpx_scale/generic/
Dvpxscale.c167 unsigned int dest_length in scale1d_2t1_i() argument
180 …for (i = dest_step, j = source_step; i < dest_length * dest_step; i += dest_step, j += source_step) in scale1d_2t1_i()
223 unsigned int dest_length in scale1d_2t1_ps() argument
235 for (i = 0; i < dest_length * dest_step; i += dest_step, j += source_step) in scale1d_2t1_ps()
270 unsigned int dest_length in scale1d_c() argument
286 for (i = 0; i < dest_length * dest_step; i += dest_step) in scale1d_c()
362 … unsigned char * dest, int dest_step, unsigned int dest_scale, unsigned int dest_length); in Scale2D()