Home
last modified time | relevance | path

Searched refs:rfactor (Results 1 – 5 of 5) sorted by relevance

/external/scrypt/tests/
Dscrypt_test.cpp33 uint32_t Nfactor, rfactor, pfactor; member
70 strlen(s.salt), s.Nfactor, s.rfactor, s.pfactor, output, sizeof(output))) in TEST_F()
/external/python/cpython3/Modules/clinic/
Daudioop.c.h439 double lfactor, double rfactor);
448 double rfactor; in audioop_tomono() local
451 &fragment, &width, &lfactor, &rfactor)) { in audioop_tomono()
454 return_value = audioop_tomono_impl(module, &fragment, width, lfactor, rfactor); in audioop_tomono()
476 double lfactor, double rfactor);
485 double rfactor; in audioop_tostereo() local
488 &fragment, &width, &lfactor, &rfactor)) { in audioop_tostereo()
491 return_value = audioop_tostereo_impl(module, &fragment, width, lfactor, rfactor); in audioop_tostereo()
/external/python/cpython2/Doc/library/
Daudioop.rst211 .. function:: tomono(fragment, width, lfactor, rfactor)
214 *lfactor* and the right channel by *rfactor* before adding the two channels to
218 .. function:: tostereo(fragment, width, lfactor, rfactor)
222 are multiplied by *lfactor* and right channel samples by *rfactor*.
236 def mul_stereo(sample, width, lfactor, rfactor):
240 rsample = audioop.mul(rsample, width, rfactor)
/external/python/cpython3/Doc/library/
Daudioop.rst219 .. function:: tomono(fragment, width, lfactor, rfactor)
222 *lfactor* and the right channel by *rfactor* before adding the two channels to
226 .. function:: tostereo(fragment, width, lfactor, rfactor)
230 are multiplied by *lfactor* and right channel samples by *rfactor*.
244 def mul_stereo(sample, width, lfactor, rfactor):
248 rsample = audioop.mul(rsample, width, rfactor)
/external/python/cpython3/Modules/
Daudioop.c954 double lfactor, double rfactor) in audioop_tomono_impl() argument
982 double val = val1 * lfactor + val2 * rfactor; in audioop_tomono_impl()
1003 double lfactor, double rfactor) in audioop_tostereo_impl() argument
1031 int val2 = fbound(val * rfactor, minval, maxval); in audioop_tostereo_impl()