Home
last modified time | relevance | path

Searched refs:_s2 (Results 1 – 3 of 3) sorted by relevance

/third_party/pulseaudio/src/tests/
Druntime-test-util.h33 double _s1 = 0, _s2 = 0; \
46 _s2 += (_stop - _start) * (_stop - _start); \
53 sqrt(_times2 * _s2 - _s1 * _s1) / _times2); \
/third_party/python/Lib/test/test_asyncio/
Dfunctional.py206 self._s1, self._s2 = socket.socketpair()
213 if self._s2 and self._s2.fileno() != -1:
215 self._s2.send(b'stop')
228 self._s2.close()
/third_party/openssl/crypto/camellia/
Dcamellia.c253 #define Camellia_Feistel(_s0,_s1,_s2,_s3,_key) do {\ argument
269 _s2 ^= _t2; \
278 #define RotLeft128(_s0,_s1,_s2,_s3,_n) do {\ argument
281 _s1 = (_s1<<_n) | (_s2>>(32-_n));\
282 _s2 = (_s2<<_n) | (_s3>>(32-_n));\