Home
last modified time | relevance | path

Searched refs:k16 (Results 1 – 6 of 6) sorted by relevance

/external/webrtc/webrtc/common_audio/signal_processing/
Dlpc_to_refl_coef.c22 void WebRtcSpl_LpcToReflCoef(int16_t* a16, int use_order, int16_t* k16) in WebRtcSpl_LpcToReflCoef() argument
29 k16[use_order - 1] = a16[use_order] << 3; // Q12<<3 => Q15 in WebRtcSpl_LpcToReflCoef()
33 tmp_inv_denom32 = 1073741823 - k16[m] * k16[m]; in WebRtcSpl_LpcToReflCoef()
42 tmp32[k] = (a16[k] << 16) - (k16[m] * a16[m - k + 1] << 1); in WebRtcSpl_LpcToReflCoef()
53 k16[m - 1] = (int16_t)WEBRTC_SPL_LSHIFT_W32(tmp32[m], 2); //Q13<<2 => Q15 in WebRtcSpl_LpcToReflCoef()
/external/skia/src/gpu/
DGrProgramDesc.cpp65 uint16_t* k16 = SkTCast<uint16_t*>(b->add32n(word32Count)); in add_sampler_and_image_keys() local
71 k16[j] = sampler_key(tex->texturePriv().samplerType(), tex->config(), sampler.visibility(), in add_sampler_and_image_keys()
76 k16[j] = sampler_key(kBufferSampler_GrSLType, access.texelConfig(), access.visibility(), in add_sampler_and_image_keys()
81 k16[numUniforms] = 0; in add_sampler_and_image_keys()
/external/skqp/src/gpu/
DGrProgramDesc.cpp68 uint16_t* k16 = SkTCast<uint16_t*>(b->add32n(word32Count)); in add_sampler_and_image_keys() local
74 k16[j] = sampler_key(tex->texturePriv().samplerType(), tex->config(), sampler.visibility(), in add_sampler_and_image_keys()
79 k16[j] = sampler_key(kBufferSampler_GrSLType, access.texelConfig(), access.visibility(), in add_sampler_and_image_keys()
84 k16[numUniforms] = 0; in add_sampler_and_image_keys()
/external/boringssl/src/crypto/fipsmodule/modes/asm/
Dghash-armv4.pl388 my ($Hlo,$Hhi,$Hhl,$k48,$k32,$k16)=map("d$_",(26..31));
417 vand $t2#hi, $t2#hi, $k16
471 vmov.i64 $k16,#0x000000000000ffff
489 vmov.i64 $k16,#0x000000000000ffff
/external/icu/icu4c/source/common/
Dresource.h82 ResourceTable(const uint16_t *k16, const int32_t *k32, in ResourceTable() argument
84 keys16(k16), keys32(k32), items16(i16), items32(i32), length(len) {} in ResourceTable()
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/source/
Dlpc_masking_model.c29 int16_t *k16 /* Q15 */ in WebRtcSpl_AToK_JSK() argument
38 k16[useOrder-1] = a16[useOrder] << 4; // Q11<<4 => Q15 in WebRtcSpl_AToK_JSK()
42 tmp_inv_denum32 = 1073741823 - k16[m] * k16[m]; in WebRtcSpl_AToK_JSK()
46 tmp32b = (a16[k] << 16) - ((k16[m] * a16[m - k + 1]) << 1); in WebRtcSpl_AToK_JSK()
56 k16[m - 1] = (int16_t)(tmp32[m] << 3); // Q12<<3 => Q15 in WebRtcSpl_AToK_JSK()