Searched refs:rfactor (Results 1 – 5 of 5) sorted by relevance
/external/scrypt/tests/ |
D | scrypt_test.cpp | 33 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/ |
D | audioop.c.h | 439 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/ |
D | audioop.rst | 211 .. 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/ |
D | audioop.rst | 219 .. 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/ |
D | audioop.c | 954 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()
|