Searched refs:ochunk (Results 1 - 3 of 3) sorted by relevance

/external/chromium_org/third_party/openssl/openssl/crypto/rc4/
H A Drc4_enc.c180 RC4_CHUNK mask=(RC4_CHUNK)-1, ochunk; local
183 ochunk = *(RC4_CHUNK *)outdata;
202 ochunk &= ~mask;
203 ochunk |= (otp^ichunk) & mask;
204 *(RC4_CHUNK *)outdata = ochunk;
233 RC4_CHUNK mask=(RC4_CHUNK)-1, ochunk; local
236 ochunk = *(RC4_CHUNK *)outdata;
255 ochunk &= ~mask;
256 ochunk |= (otp^ichunk) & mask;
257 *(RC4_CHUNK *)outdata = ochunk;
[all...]
/external/openssl/crypto/rc4/
H A Drc4_enc.c180 RC4_CHUNK mask=(RC4_CHUNK)-1, ochunk; local
183 ochunk = *(RC4_CHUNK *)outdata;
202 ochunk &= ~mask;
203 ochunk |= (otp^ichunk) & mask;
204 *(RC4_CHUNK *)outdata = ochunk;
233 RC4_CHUNK mask=(RC4_CHUNK)-1, ochunk; local
236 ochunk = *(RC4_CHUNK *)outdata;
255 ochunk &= ~mask;
256 ochunk |= (otp^ichunk) & mask;
257 *(RC4_CHUNK *)outdata = ochunk;
[all...]
/external/speex/libspeex/
H A Dresample.c867 spx_uint32_t ochunk = olen; local
876 speex_resampler_process_native(st, channel_index, &ichunk, out, &ochunk);
878 olen -= ochunk;
879 out += ochunk * st->out_stride;
916 spx_uint32_t ochunk = (olen > ylen) ? ylen : olen; local
920 omagic = speex_resampler_magic(st, channel_index, &y, ochunk);
921 ochunk -= omagic;
937 speex_resampler_process_native(st, channel_index, &ichunk, y, &ochunk);
940 ochunk = 0;
943 for (j=0;j<ochunk
[all...]

Completed in 177 milliseconds