HomeSort by relevance Sort by last modified time
    Searched refs:out_length (Results 1 - 25 of 28) sorted by null

1 2

  /external/webrtc/webrtc/modules/audio_processing/transient/
dyadic_decimator.h 27 size_t out_length = in_length / 2; local
30 ++out_length;
33 return out_length;
42 // out: array of |out_length|. |out_length| must be large enough to
52 size_t out_length) {
55 if (!in || !out || in_length <= 0 || out_length < half_length) {
  /toolchain/binutils/binutils-2.25/gas/
flonum-copy.c 27 unsigned int out_length; /* 0 origin */ local
38 out_length = out->high - out->low;
41 if (in_length <= out_length)
47 if (in_length < out_length)
50 out_length - in_length);
62 shorten = in_length - out_length;
63 /* Assume out_length >= 0 ! */
65 ((out_length + 1) * sizeof (LITTLENUM_TYPE)));
  /external/webrtc/webrtc/modules/audio_coding/acm2/
acm_resampler.cc 51 int out_length = local
53 if (out_length == -1) {
59 return static_cast<int>(out_length / num_audio_channels);
  /external/webrtc/webrtc/common_audio/resampler/
resampler_unittest.cc 102 size_t out_length = 0; local
105 out_length));
106 EXPECT_EQ(static_cast<size_t>(kRates[j] / 100), out_length);
124 size_t out_length = 0; local
128 out_length));
129 EXPECT_EQ(static_cast<size_t>(kChannels * kRates[j] / 100), out_length);
  /external/webrtc/webrtc/voice_engine/
utility.cc 63 int out_length = resampler->Resample(audio_ptr, src_length, dst_frame->data_, local
65 if (out_length == -1) {
71 dst_frame->samples_per_channel_ = out_length / audio_ptr_num_channels;
  /build/make/tools/ijar/
ijar.cc 82 size_t out_length = q - classdata_out; local
83 builder->FinishFile(out_length);
122 size_t out_length = out->GetSize(); local
126 static_cast<int>(100.0 * out_length / in_length));
zip.cc 297 size_t out_length,
913 size_t out_length,
916 size_t compressed_size = out_length;
918 compressed_size = TryDeflate(q, out_length);
921 if (compressed_size < out_length) {
929 put_u4le(header_ptr, out_length); // uncompressed_size
    [all...]
  /external/webrtc/webrtc/modules/video_coding/codecs/h264/
h264_video_toolbox_nalu.h 57 bool ReadNalu(const uint8_t** out_nalu, size_t* out_length);
h264_video_toolbox_nalu.cc 281 size_t* out_length) {
283 RTC_DCHECK(out_length);
285 *out_length = 0;
292 *out_length = next_offset_ - data_offset;
  /system/tpm/trunks/
session_manager_impl.cc 202 size_t out_length = EVP_PKEY_size(salting_key.get()); local
203 encrypted_salt->resize(out_length);
207 &out_length, reinterpret_cast<const uint8_t*>(salt.data()),
212 encrypted_salt->resize(out_length);
  /bionic/libc/kernel/uapi/linux/
ndctl.h 92 __u32 out_length; member in struct:nd_cmd_vendor_tail
114 __u32 out_length; member in struct:nd_cmd_ars_status
  /system/update_engine/payload_generator/
payload_signer.h 95 uint64_t* out_length);
payload_signer.cc 419 uint64_t* out_length) {
420 DCHECK(out_length);
427 *out_length = sig_blob.size();
  /device/linaro/bootloader/arm-trusted-firmware/plat/hikey/
plat_io_storage.c 490 uint64_t out_blks = 0, out_length = 0; local
518 ptn->start + out_length, length);
524 out_length += length;
547 ptn->start + out_length, count);
553 out_length += count;
565 out_length += length;
  /external/kernel-headers/original/uapi/linux/
ndctl.h 98 __u32 out_length; member in struct:nd_cmd_vendor_tail
123 __u32 out_length; member in struct:nd_cmd_ars_status
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/
trees.c 1036 ulg out_length = (ulg)s->last_lit*8L; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/
trees.c 1048 ulg out_length = (ulg)s->last_lit*8L; local
    [all...]
  /external/pdfium/third_party/zlib_v128/
trees.c 1036 ulg out_length = (ulg)s->last_lit*8L; local
    [all...]
  /external/python/cpython2/Modules/zlib/
trees.c 1036 ulg out_length = (ulg)s->last_lit*8L; local
    [all...]
  /external/zlib/src/
trees.c 1036 ulg out_length = (ulg)s->last_lit*8L; local
    [all...]
  /external/protobuf/ruby/ext/google/protobuf_c/
map.c 63 // construct a key byte sequence if needed. |out_key| and |out_length| provide
69 size_t* out_length) {
77 *out_length = RSTRING_LEN(key);
87 *out_length = native_slot_size(self->key_type);
  /external/syslinux/com32/lib/zlib/
trees.c 1052 ulg out_length = (ulg)s->last_lit*8L; local
    [all...]
  /external/harfbuzz_ng/src/
hb-ot-layout.h 288 unsigned int *out_length /* OUT */);
  /art/runtime/
art_method-inl.h 250 inline const char* ArtMethod::GetShorty(uint32_t* out_length) {
253 return dex_file->GetMethodShorty(dex_file->GetMethodId(GetDexMethodIndex()), out_length);
  /toolchain/binutils/binutils-2.25/gas/config/
tc-vax.c 329 int out_length /* in sizeof(littlenum)s */)
333 if (out_length < in_length)
339 (unsigned int) out_length << LITTLENUM_SHIFT);
355 if (out_length > in_length)
357 (unsigned int) (out_length - in_length) << LITTLENUM_SHIFT);
    [all...]

Completed in 2331 milliseconds

1 2