Searched refs:int16_t (Results 201 - 225 of 1591) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/isac/fix/source/
H A Dlattice_c.c24 void WebRtcIsacfix_FilterArLoop(int16_t* ar_g_Q0, // Input samples
25 int16_t* ar_f_Q0, // Input samples
26 int16_t* cth_Q15, // Filter coefficients
27 int16_t* sth_Q15, // Filter coefficients
28 int16_t order_coef) { // order of the filter
33 int16_t tmpAR = 0;
43 tmpAR = (int16_t)WebRtcSpl_SatW32ToW16(tmp32);
44 ar_g_Q0[k + 1] = (int16_t)WebRtcSpl_SatW32ToW16(tmp32_2);
/external/clang/test/CXX/dcl.decl/dcl.init/dcl.init.list/
H A Dp7-0x-fixits.cpp6 typedef short int16_t; typedef
14 struct {int16_t i;} i16 = {70000};
16 // CHECK: fix-it:{{.*}}:30}:"static_cast<int16_t>("
/external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/g711/
H A Dg711_interface.c15 int16_t WebRtcG711_EncodeA(void* state,
16 int16_t* speechIn,
17 int16_t len,
18 int16_t* encoded) {
53 int16_t WebRtcG711_EncodeU(void* state,
54 int16_t* speechIn,
55 int16_t len,
56 int16_t* encoded) {
89 int16_t WebRtcG711_DecodeA(void* state,
90 int16_t* encode
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/common/
H A Dvp9_convolve.h22 const int16_t *filter_x, int x_step_q4,
23 const int16_t *filter_y, int y_step_q4,
29 const int16_t *filter_x, int x_step_q4,
30 const int16_t *filter_y, int y_step_q4,
H A Dvp9_scan.h29 const int16_t *scan;
30 const int16_t *iscan;
31 const int16_t *neighbors;
37 static INLINE int get_coef_context(const int16_t *neighbors,
/external/chromium_org/third_party/webrtc/common_audio/signal_processing/
H A Dfilter_ar.c20 int WebRtcSpl_FilterAR(const int16_t* a,
22 const int16_t* x,
24 int16_t* state,
26 int16_t* state_low,
28 int16_t* filtered,
29 int16_t* filtered_low,
35 const int16_t* x_ptr = &x[0];
36 int16_t* filteredFINAL_ptr = filtered;
37 int16_t* filteredFINAL_LOW_ptr = filtered_low;
42 const int16_t* a_pt
[all...]
H A Dget_hanning_window.c21 static const int16_t kHanningTable[] = {
56 void WebRtcSpl_GetHanningWindow(int16_t *v, int16_t size)
59 int16_t *vptr1;
H A Ddivision_operations.c38 int32_t WebRtcSpl_DivW32W16(int32_t num, int16_t den)
50 int16_t WebRtcSpl_DivW32W16ResW16(int32_t num, int16_t den)
55 return (int16_t)(num / den);
58 return (int16_t)0x7FFF;
100 int32_t WebRtcSpl_DivW32HiLow(int32_t num, int16_t den_hi, int16_t den_low)
102 int16_t approx, tmp_hi, tmp_low, num_hi, num_low;
105 approx = (int16_t)WebRtcSpl_DivW32W16((int32_t)0x1FFFFFFF, den_hi);
116 tmp_hi = (int16_t)WEBRTC_SPL_RSHIFT_W3
[all...]
/external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/ilbc/
H A Dencode.h30 const int16_t *block, /* (i) speech vector to encode */
H A Dpack_bits.h31 int16_t mode /* (i) Codec mode (20 or 30) */
H A Dstate_search.c32 int16_t *residual, /* (i) target residual vector */
33 int16_t *syntDenum, /* (i) lpc synthesis filter */
34 int16_t *weightDenum /* (i) weighting filter denuminator */
36 int16_t k, index;
37 int16_t maxVal;
38 int16_t scale, shift;
40 int16_t scaleRes;
41 int16_t max;
44 int16_t numerator[1+LPC_FILTERORDER];
45 int16_t residualLongVe
[all...]
H A Dswap_bytes.h30 int16_t wordLength, /* (i) number or uint16_t to swap */
H A Dcb_construct.c28 int16_t *decvector, /* (o) Decoded vector */
29 int16_t *index, /* (i) Codebook indices */
30 int16_t *gain_index, /* (i) Gain quantization indices */
31 int16_t *mem, /* (i) Buffer for codevector construction */
32 int16_t lMem, /* (i) Length of buffer */
33 int16_t veclen /* (i) Length of vector */
36 int16_t gain[CB_NSTAGES];
38 int16_t cbvec0[SUBL];
39 int16_t cbvec1[SUBL];
40 int16_t cbvec
[all...]
H A Dcb_mem_energy_augmentation.c23 int16_t *interpSamples, /* (i) The interpolated samples */
24 int16_t *CBmem, /* (i) The CB memory */
25 int16_t scale, /* (i) The scaling of all energy values */
26 int16_t base_size, /* (i) Index to where the energy values should be stored */
27 int16_t *energyW16, /* (o) Energy in the CB vectors */
28 int16_t *energyShifts /* (o) Shift value of the energy */
31 int16_t *ppe, *pp, *interpSamplesPtr;
32 int16_t *CBmemPtr, lagcount;
33 int16_t *enPtr=&energyW16[base_size-20];
34 int16_t *enShPt
[all...]
/external/chromium_org/third_party/webrtc/voice_engine/
H A Dlevel_indicator.h32 int16_t LevelFullRange() const;
45 int16_t _absMax;
46 int16_t _count;
48 int16_t _currentLevelFullRange;
/external/libvpx/libvpx/vp9/common/
H A Dvp9_scan.h29 const int16_t *scan;
30 const int16_t *iscan;
31 const int16_t *neighbors;
37 static INLINE int get_coef_context(const int16_t *neighbors,
/external/chromium_org/third_party/ots/src/
H A Dhead.h19 int16_t xmin, xmax;
20 int16_t ymin, ymax;
24 int16_t index_to_loc_format;
/external/chromium_org/third_party/webrtc/modules/audio_coding/main/acm2/
H A Dacm_resampler.h25 int Resample10Msec(const int16_t* in_audio,
30 int16_t* out_audio);
33 PushResampler<int16_t> resampler_;
H A Dacm_g729.cc29 ACMG729::ACMG729(int16_t /* codec_id */) : encoder_inst_ptr_(NULL) {}
33 int16_t ACMG729::InternalEncode(uint8_t* /* bitstream */,
34 int16_t* /* bitstream_len_byte */) {
38 int16_t ACMG729::EnableDTX() { return -1; }
40 int16_t ACMG729::DisableDTX() { return -1; }
50 int16_t ACMG729::InternalInitEncoder(WebRtcACMCodecParams* /* codec_params */) {
56 int16_t ACMG729::InternalCreateEncoder() { return -1; }
61 ACMG729::ACMG729(int16_t codec_id)
75 int16_t ACMG729::InternalEncode(uint8_t* bitstream,
76 int16_t* bitstream_len_byt
[all...]
H A Dacm_isac.h34 explicit ACMISAC(int16_t codec_id);
37 int16_t InternalInitDecoder(WebRtcACMCodecParams* codec_params)
43 int16_t InternalEncode(uint8_t* bitstream,
44 int16_t* bitstream_len_byte) OVERRIDE
47 int16_t InternalInitEncoder(WebRtcACMCodecParams* codec_params) OVERRIDE
50 int16_t UpdateDecoderSampFreq(int16_t codec_id) OVERRIDE;
52 int16_t UpdateEncoderSampFreq(uint16_t samp_freq_hz) OVERRIDE
55 int16_t EncoderSampFreq(uint16_t* samp_freq_hz) OVERRIDE;
65 int16_t REDPayloadISA
[all...]
H A Dacm_generic_codec.h57 // int16_t Encode()
109 int16_t Encode(uint8_t* bitstream,
110 int16_t* bitstream_len_byte,
124 // int16_t EncoderParams()
137 int16_t EncoderParams(WebRtcACMCodecParams* enc_params);
140 // int16_t InitEncoder(...)
155 int16_t InitEncoder(WebRtcACMCodecParams* codec_params,
178 const int16_t* data,
202 // int16_t SetBitRate()
213 int16_t SetBitRat
[all...]
H A Dacm_speex.cc27 ACMSPEEX::ACMSPEEX(int16_t /* codec_id */)
39 int16_t ACMSPEEX::InternalEncode(uint8_t* /* bitstream */,
40 int16_t* /* bitstream_len_byte */) {
44 int16_t ACMSPEEX::EnableDTX() { return -1; }
46 int16_t ACMSPEEX::DisableDTX() { return -1; }
48 int16_t ACMSPEEX::InternalInitEncoder(
55 int16_t ACMSPEEX::InternalCreateEncoder() { return -1; }
59 int16_t ACMSPEEX::SetBitRateSafe(const int32_t /* rate */) { return -1; }
62 int16_t ACMSPEEX::EnableVBR() { return -1; }
64 int16_t ACMSPEE
[all...]
/external/compiler-rt/test/ubsan/TestCases/Integer/
H A Dmul-overflow.cpp8 (void)(int16_t(0x7fff) * int16_t(0x7fff));
9 (void)(uint16_t(0xffff) * int16_t(0x7fff));
H A Dumul-overflow.cpp8 (void)(int16_t(0x7fff) * int16_t(0x7fff));
9 (void)(uint16_t(0xffff) * int16_t(0x7fff));
/external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/
H A Dexpand.h76 void SetMuteFactor(int16_t value, size_t channel) {
82 int16_t MuteFactor(size_t channel) {
89 int16_t max_lag() const { return max_lag_; }
95 int16_t* random_vector);
97 void GenerateBackgroundNoise(int16_t* random_vector,
99 int16_t mute_slope,
102 int16_t* buffer);
111 void AnalyzeSignal(int16_t* random_vector);
141 int16_t mute_factor;
142 int16_t ar_filte
[all...]

Completed in 3408 milliseconds

1234567891011>>