Searched defs:out_length (Results 1 - 10 of 10) sorted by relevance

/external/webrtc/src/common_audio/signal_processing/
H A Ddownsample_fast.c21 WebRtc_Word16 *out_ptr, WebRtc_Word16 out_length,
32 + (WebRtc_Word16)WEBRTC_SPL_MUL_16_16(factor, (out_length - 1)) + 1;
20 WebRtcSpl_DownsampleFast(WebRtc_Word16 *in_ptr, WebRtc_Word16 in_length, WebRtc_Word16 *out_ptr, WebRtc_Word16 out_length, WebRtc_Word16 *B, WebRtc_Word16 B_length, WebRtc_Word16 factor, WebRtc_Word16 delay) argument
/external/webrtc/src/common_audio/resampler/
H A Dresampler_unittest.cc106 int out_length = 0; local
109 out_length));
110 EXPECT_EQ(kRates[j] / 100, out_length);
129 int out_length = 0; local
133 out_length));
134 EXPECT_EQ(kChannels * kRates[j] / 100, out_length);
/external/harfbuzz/src/
H A Dharfbuzz-buffer.h69 HB_UInt out_length; member in struct:HB_BufferRec_
/external/harfbuzz_ng/src/hb-old/
H A Dharfbuzz-buffer.h69 HB_UInt out_length; member in struct:HB_BufferRec_
/external/chromium_org/net/quic/
H A Dquic_config.cc149 size_t* out_length,
152 QuicErrorCode error = msg.GetTaglist(tag_, out, out_length);
160 *out_length = 1;
146 ReadVector( const CryptoHandshakeMessage& msg, const QuicTag** out, size_t* out_length, string* error_details) const argument
/external/chromium_org/third_party/qcms/src/
H A Dtransform_util.c411 static uint16_t *invert_lut(uint16_t *table, int length, size_t out_length) argument
414 /* for now we invert the lut by creating a lut of size out_length
416 uint16_t *output = malloc(sizeof(uint16_t)*out_length);
420 for (i = 0; i < out_length; i++) {
421 double x = ((double) i * 65535.) / (double) (out_length - 1);
/external/chromium_org/third_party/zlib/
H A Dtrees.c1052 ulg out_length = (ulg)s->last_lit*8L; local
1056 out_length += (ulg)s->dyn_dtree[dcode].Freq *
1059 out_length >>= 3;
1061 s->last_lit, in_length, out_length,
1062 100L - out_length*100L/in_length));
1063 if (s->matches < s->last_lit/2 && out_length < in_length/2) return 1;
/external/qemu/distrib/zlib-1.2.3/
H A Dtrees.c1048 ulg out_length = (ulg)s->last_lit*8L; local
1052 out_length += (ulg)s->dyn_dtree[dcode].Freq *
1055 out_length >>= 3;
1057 s->last_lit, in_length, out_length,
1058 100L - out_length*100L/in_length));
1059 if (s->matches < s->last_lit/2 && out_length < in_length/2) return 1;
/external/zlib/src/
H A Dtrees.c1036 ulg out_length = (ulg)s->last_lit*8L; local
1040 out_length += (ulg)s->dyn_dtree[dcode].Freq *
1043 out_length >>= 3;
1045 s->last_lit, in_length, out_length,
1046 100L - out_length*100L/in_length));
1047 if (s->matches < s->last_lit/2 && out_length < in_length/2) return 1;
/external/chromium_org/crypto/
H A Dopenpgp_symmetric_encryption.cc341 bool ParseLength(Reader *reader, size_t *out_length, bool *out_is_prefix) { argument
348 *out_length = length_spec;
355 *out_length = (length_spec - 192) << 8;
356 *out_length += next_byte;
359 *out_length = 1u << (length_spec & 0x1f);
366 *out_length = length32;

Completed in 2553 milliseconds