HomeSort by relevance Sort by last modified time
    Searched full:shl16 (Results 1 - 25 of 35) sorted by null

1 2

  /external/llvm/test/CodeGen/MSP430/
shifts.ll 45 define zeroext i16 @shl16(i16 zeroext %a, i16 zeroext %cnt) nounwind readnone {
47 ; CHECK-LABEL: shl16:
  /external/swiftshader/third_party/LLVM/test/CodeGen/MSP430/
shifts.ll 45 define zeroext i16 @shl16(i16 zeroext %a, i16 zeroext %cnt) nounwind readnone {
47 ; CHECK: shl16:
  /external/speex/libspeex/
quant_lsp.c 52 #define LSP_LINEAR(i) (SHL16(i+1,11))
54 #define LSP_DIV_256(x) (SHL16((spx_word16_t)x, 5))
55 #define LSP_DIV_512(x) (SHL16((spx_word16_t)x, 4))
56 #define LSP_DIV_1024(x) (SHL16((spx_word16_t)x, 3))
111 tmp=SUB16(x[j],SHL16((spx_word16_t)*ptr++,5));
122 x[j] = SUB16(x[j],SHL16((spx_word16_t)cdbk[best_id*nbDim+j],5));
143 tmp=SUB16(x[j],SHL16((spx_word16_t)*ptr++,5));
154 x[j] = SUB16(x[j],SHL16((spx_word16_t)cdbk[best_id*nbDim+j],5));
ltp.c 255 sw[i]=SHL16(sw[i],1);
509 exc[j]=MAC16_16(exc[j],SHL16(gain[2-i],7),exc2[j-pp]);
514 exc[j]=MAC16_16(exc[j],SHL16(gain[2-i],7),exc2[j-pp-pitch]);
636 *cumul_gain = MULT16_32_Q13(SHL16(params->gain_cdbk[4*best_gain_index+3],8), MAX32(1024,*cumul_gain));
649 target[i]=SHL16(target[i],1);
729 gain[0] = SHL16(gain[0],7);
730 gain[1] = SHL16(gain[1],7);
731 gain[2] = SHL16(gain[2],7);
790 exc[i]=MULT16_16(SHL16(pitch_coef, 7),exc2[i-start]);
794 exc[i]=MULT16_32_Q15(SHL16(pitch_coef, 9),exc[i-start])
    [all...]
filters.c 140 y[i] = PSHR32(MULT16_16(scale_1, SHL16(x[i],2)),8);
150 y[i] = PSHR32(MULT16_16(scale_1, SHL16(x[i],2)),6);
245 return SHL16(spx_sqrt(DIV32(sum,len)),4);
258 sum2 = MAC16_16(sum2,SHL16(x[i],sig_shift),SHL16(x[i],sig_shift));
259 sum2 = MAC16_16(sum2,SHL16(x[i+1],sig_shift),SHL16(x[i+1],sig_shift));
260 sum2 = MAC16_16(sum2,SHL16(x[i+2],sig_shift),SHL16(x[i+2],sig_shift));
261 sum2 = MAC16_16(sum2,SHL16(x[i+3],sig_shift),SHL16(x[i+3],sig_shift))
    [all...]
quant_lsp_bfin.h 91 x[j] = SUB16(x[j],SHL16((spx_word16_t)cdbk[best_id*nbDim+j],5));
161 x[j] = SUB16(x[j],SHL16((spx_word16_t)cdbk[best_id*nbDim+j],5));
math_approx.h 259 frac = SHL16(x-SHL16(integer,11),3);
fixed_generic.h 46 #define SHL16(a,shift) ((a) << (shift))
arch.h 166 #define SHL16(a,shift) (a)
fixed_debug.h 117 #define SHL16(a, shift) _SHL16(a, shift, __FILE__, __LINE__)
123 fprintf (stderr, "SHL16: inputs are not short: %d %d in %s: line %d\n", a, shift, file, line);
127 fprintf (stderr, "SHL16: output is not short: %d in %s: line %d\n", res, file, line);
fftwrap.c 64 out[i] = SHL16(in[i], shift);
stereo.c 290 stereo->balance = spx_exp(MULT16_16(sign, SHL16(dexp, 9)));
preprocess.c 491 st->post[i]=SHL16(1, SNR_SHIFT);
492 st->prior[i]=SHL16(1, SNR_SHIFT);
647 st->frame[i] = SHL16(st->frame[i], st->frame_shift);
    [all...]
mdf.c 474 st->window[i] = (16383-SHL16(spx_cos(DIV32_16(MULT16_16(25736,i<<1),N)),1));
854 st->wtmp[i]=SHL16(st->wtmp[i],NORMALIZE_SCALEUP);
    [all...]
  /external/libopus/celt/
mathops.h 213 return SHL16(i-13,DB_SHIFT)+SHR16(frac,14-DB_SHIFT);
230 frac = SHL16(x, 4);
243 frac = celt_exp2_frac(x-SHL16(integer,10));
quant_bands.c 246 error[i+c*m->nbEBands] = PSHR32(f,7) - SHL16(qi,DB_SHIFT);
416 offset = SHR16(SHL16(q2,DB_SHIFT)-QCONST16(.5f,DB_SHIFT),fine_quant[i]+1);
533 offset = SHR16(SHL16(q2,DB_SHIFT)-QCONST16(.5f,DB_SHIFT),fine_quant[i]+1);
554 - SHL16((opus_val16)eMeans[i],6);
arch.h 206 #define SHL16(a,shift) (a)
mathops.c 108 y = SHL16(SUB16(ADD16(MULT16_16_Q15(r2, n), r2), 16384), 1);
fixed_debug.h 167 #define SHL16(a, shift) SHL16_(a, shift, __FILE__, __LINE__)
173 fprintf (stderr, "SHL16: inputs are not short: %d %d in %s: line %d\n", a, shift, file, line);
181 fprintf (stderr, "SHL16: output is not short: %d in %s: line %d\n", res, file, line);
fixed_generic.h 86 #define SHL16(a,shift) ((opus_int16)((opus_uint16)(a)<<(shift)))
  /external/llvm/test/CodeGen/BPF/
shifts.ll 43 define zeroext i16 @shl16(i16 zeroext %a, i16 zeroext %cnt) nounwind readnone {
45 ; CHECK-LABEL: shl16:
  /external/valgrind/VEX/priv/
host_generic_simd64.c 343 static inline UShort shl16 ( UShort v, UInt n ) function
1014 shl16( sel16x4_3(xx), nn ),
1015 shl16( sel16x4_2(xx), nn ),
1016 shl16( sel16x4_1(xx), nn ),
1017 shl16( sel16x4_0(xx), nn )
    [all...]
  /external/llvm/test/CodeGen/AArch64/
arm64-bitfield-extract.ll 526 %shl16 = shl i32 %insertion, 8
527 %or18 = or i32 %shl16, %insertion
  /external/libopus/doc/
opus_update.patch 46 SHL16((opus_val16)eMeans[i],6));
  /external/libopus/src/
opus_multistream_encoder.c 241 frac = SHL16(diff - SHL16(low, DB_SHIFT-1), 16-DB_SHIFT);
    [all...]

Completed in 1051 milliseconds

1 2