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

/external/chromium_org/third_party/boringssl/src/crypto/rc4/
H A Drc4.c171 RC4_CHUNK mask = (RC4_CHUNK) - 1, ochunk; local
174 ochunk = *(RC4_CHUNK *)out;
194 ochunk &= ~mask;
195 ochunk |= (otp ^ ichunk) & mask;
196 *(RC4_CHUNK *)out = ochunk;
220 RC4_CHUNK mask = (RC4_CHUNK) - 1, ochunk; local
223 ochunk = *(RC4_CHUNK *)out;
243 ochunk &= ~mask;
244 ochunk |= (otp ^ ichunk) & mask;
245 *(RC4_CHUNK *)out = 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/chromium_org/third_party/speex/libspeex/
H A Dresample.c857 spx_uint32_t ochunk = olen; local
866 speex_resampler_process_native(st, channel_index, &ichunk, out, &ochunk);
868 olen -= ochunk;
869 out += ochunk * st->out_stride;
906 spx_uint32_t ochunk = (olen > ylen) ? ylen : olen; local
910 omagic = speex_resampler_magic(st, channel_index, &y, ochunk);
911 ochunk -= omagic;
927 speex_resampler_process_native(st, channel_index, &ichunk, y, &ochunk);
930 ochunk = 0;
933 for (j=0;j<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 123 milliseconds