/external/angle/third_party/zlib/google/ |
D | compression_utils_portable.cc | 63 uLongf* dest_length, in GzipCompressHelper() argument 68 return CompressHelper(GZIP, dest, dest_length, source, source_length, in GzipCompressHelper() 81 uLongf* dest_length, in CompressHelper() argument 97 stream.avail_out = static_cast<uInt>(*dest_length); in CompressHelper() 98 if (static_cast<uLong>(stream.avail_out) != *dest_length) in CompressHelper() 150 *dest_length = stream.total_out; in CompressHelper() 157 uLongf* dest_length, in GzipUncompressHelper() argument 160 return UncompressHelper(GZIP, dest, dest_length, source, source_length); in GzipUncompressHelper() 169 uLongf* dest_length, in UncompressHelper() argument 181 stream.avail_out = static_cast<uInt>(*dest_length); in UncompressHelper() [all …]
|
D | compression_utils_portable.h | 35 uLongf* dest_length, 43 uLongf* dest_length, 51 uLongf* dest_length, 57 uLongf* dest_length,
|
/external/zlib/google/ |
D | compression_utils_portable.cc | 63 uLongf* dest_length, in GzipCompressHelper() argument 68 return CompressHelper(GZIP, dest, dest_length, source, source_length, in GzipCompressHelper() 81 uLongf* dest_length, in CompressHelper() argument 97 stream.avail_out = static_cast<uInt>(*dest_length); in CompressHelper() 98 if (static_cast<uLong>(stream.avail_out) != *dest_length) in CompressHelper() 150 *dest_length = stream.total_out; in CompressHelper() 157 uLongf* dest_length, in GzipUncompressHelper() argument 160 return UncompressHelper(GZIP, dest, dest_length, source, source_length); in GzipUncompressHelper() 169 uLongf* dest_length, in UncompressHelper() argument 181 stream.avail_out = static_cast<uInt>(*dest_length); in UncompressHelper() [all …]
|
D | compression_utils_portable.h | 35 uLongf* dest_length, 43 uLongf* dest_length, 51 uLongf* dest_length, 57 uLongf* dest_length,
|
/external/llvm-project/clang-tools-extra/test/clang-tidy/checkers/ |
D | bugprone-not-null-terminated-result-memcpy-safe-other.c | 60 void bad_memcpy_variable_array(int dest_length) { in bad_memcpy_variable_array() argument 61 char dest02[dest_length + 1]; in bad_memcpy_variable_array() 67 void good_memcpy_variable_array(int dest_length) { in good_memcpy_variable_array() argument 68 char dst02[dest_length + 1]; in good_memcpy_variable_array()
|
/external/libaom/libaom/aom_scale/generic/ |
D | aom_scale.c | 71 unsigned int dest_scale, unsigned int dest_length) { in scale1d_2t1_i() argument 72 const unsigned char *const dest_end = dest + dest_length * dest_step; in scale1d_2t1_i() 122 unsigned int dest_length) { in scale1d_2t1_ps() argument 123 const unsigned char *const dest_end = dest + dest_length * dest_step; in scale1d_2t1_ps() 163 unsigned int dest_scale, unsigned int dest_length) { in scale1d_c() argument 164 const unsigned char *const dest_end = dest + dest_length * dest_step; in scale1d_c() 249 unsigned int dest_scale, unsigned int dest_length); in Scale2D()
|
/external/libvpx/libvpx/vpx_scale/generic/ |
D | vpx_scale.c | 69 unsigned int dest_scale, unsigned int dest_length) { in scale1d_2t1_i() argument 80 for (i = dest_step, j = source_step; i < dest_length * dest_step; in scale1d_2t1_i() 120 unsigned int dest_length) { in scale1d_2t1_ps() argument 130 for (i = 0; i < dest_length * dest_step; i += dest_step, j += source_step) in scale1d_2t1_ps() 160 unsigned int dest_scale, unsigned int dest_length) { in scale1d_c() argument 175 for (i = 0; i < dest_length * dest_step; i += dest_step) { in scale1d_c() 247 unsigned int dest_scale, unsigned int dest_length); in Scale2D()
|
/external/protobuf/src/google/protobuf/stubs/ |
D | strutil.cc | 624 const int dest_length = src.size() * 4 + 1; // Maximum possible expansion in Utf8SafeCEscape() local 625 std::unique_ptr<char[]> dest(new char[dest_length]); in Utf8SafeCEscape() 627 dest.get(), dest_length, false, true); in Utf8SafeCEscape() 633 const int dest_length = src.size() * 4 + 1; // Maximum possible expansion in CHexEscape() local 634 std::unique_ptr<char[]> dest(new char[dest_length]); in CHexEscape() 636 dest.get(), dest_length, true, false); in CHexEscape()
|