Home
last modified time | relevance | path

Searched refs:state_in (Results 1 – 7 of 7) sorted by relevance

/external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/source/
Dfilters.c92 … int32_t *state_in, /* array of size: 2*ALLPASSSECTIONS+1 */ in WebRtcIsacfix_DecimateAllpass32() argument
102 data_vec[0] = (int16_t)(state_in[2 * ALLPASSSECTIONS] >> 16); // z^-1 state. in WebRtcIsacfix_DecimateAllpass32()
103 state_in[2 * ALLPASSSECTIONS] = (uint32_t)in[N - 1] << 16; in WebRtcIsacfix_DecimateAllpass32()
107 AllpassFilterForDec32(data_vec+1, kApUpperQ15, N, state_in); in WebRtcIsacfix_DecimateAllpass32()
108 AllpassFilterForDec32(data_vec, kApLowerQ15, N, state_in+ALLPASSSECTIONS); in WebRtcIsacfix_DecimateAllpass32()
Dpitch_estimator.h57 … int32_t *state_in, /* array of size: 2*ALLPASSSECTIONS+1 */
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/main/source/
Dfilter_functions.c222 double* state_in, in WebRtcIsac_DecimateAllpass() argument
231 data_vec[0] = state_in[2*ALLPASSSECTIONS]; //the z^(-1) state in WebRtcIsac_DecimateAllpass()
232 state_in[2*ALLPASSSECTIONS] = in[N-1]; in WebRtcIsac_DecimateAllpass()
234 WebRtcIsac_AllpassFilterForDec(data_vec+1, APupper, N, state_in); in WebRtcIsac_DecimateAllpass()
235 WebRtcIsac_AllpassFilterForDec(data_vec, APlower, N, state_in+ALLPASSSECTIONS); in WebRtcIsac_DecimateAllpass()
Dpitch_estimator.h70 double *state_in, /* array of size:
/external/vulkan-validation-layers/layers/
Dxxhash.c436 XXH_PUBLIC_API XXH_errorcode XXH32_update (XXH32_state_t* state_in, const void* input, size_t len) in XXH32_update() argument
441 return XXH32_update_endian(state_in, input, len, XXH_littleEndian); in XXH32_update()
443 return XXH32_update_endian(state_in, input, len, XXH_bigEndian); in XXH32_update()
484 XXH_PUBLIC_API unsigned int XXH32_digest (const XXH32_state_t* state_in) in XXH32_digest() argument
489 return XXH32_digest_endian(state_in, XXH_littleEndian); in XXH32_digest()
491 return XXH32_digest_endian(state_in, XXH_bigEndian); in XXH32_digest()
802 XXH_PUBLIC_API XXH_errorcode XXH64_update (XXH64_state_t* state_in, const void* input, size_t len) in XXH64_update() argument
807 return XXH64_update_endian(state_in, input, len, XXH_littleEndian); in XXH64_update()
809 return XXH64_update_endian(state_in, input, len, XXH_bigEndian); in XXH64_update()
863 XXH_PUBLIC_API unsigned long long XXH64_digest (const XXH64_state_t* state_in) in XXH64_digest() argument
[all …]
/external/lz4/lib/
Dxxhash.c442 XXH_PUBLIC_API XXH_errorcode XXH32_update (XXH32_state_t* state_in, const void* input, size_t len) in XXH32_update() argument
447 return XXH32_update_endian(state_in, input, len, XXH_littleEndian); in XXH32_update()
449 return XXH32_update_endian(state_in, input, len, XXH_bigEndian); in XXH32_update()
490 XXH_PUBLIC_API unsigned int XXH32_digest (const XXH32_state_t* state_in) in XXH32_digest() argument
495 return XXH32_digest_endian(state_in, XXH_littleEndian); in XXH32_digest()
497 return XXH32_digest_endian(state_in, XXH_bigEndian); in XXH32_digest()
808 XXH_PUBLIC_API XXH_errorcode XXH64_update (XXH64_state_t* state_in, const void* input, size_t len) in XXH64_update() argument
813 return XXH64_update_endian(state_in, input, len, XXH_littleEndian); in XXH64_update()
815 return XXH64_update_endian(state_in, input, len, XXH_bigEndian); in XXH64_update()
869 XXH_PUBLIC_API unsigned long long XXH64_digest (const XXH64_state_t* state_in) in XXH64_digest() argument
[all …]
/external/boringssl/src/crypto/fipsmodule/rand/
Drand.c98 static void rand_thread_state_free(void *state_in) { in rand_thread_state_free() argument
99 struct rand_thread_state *state = state_in; in rand_thread_state_free()
101 if (state_in == NULL) { in rand_thread_state_free()