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

/external/python/cpython2/Lib/
H A Dbase64.py150 quanta, leftover = divmod(len(s), 5)
154 quanta += 1
155 for i in range(quanta):
174 # Adjust for any leftover partial quanta
205 quanta, leftover = divmod(len(s), 8)
224 # Now decode the full quanta
238 # Process the last, partial quanta
/external/python/cpython3/Lib/
H A Dbase64.py169 # Adjust for any leftover partial quanta
221 # Now decode the full quanta
225 quanta = s[i: i + 8]
228 for c in quanta:
233 # Process the last, partial quanta
/external/libopus/celt/
H A Dcelt_decoder.c993 int width, quanta; local
997 /* quanta is 6 bits, but no more than 1 bit/sample
999 quanta = IMIN(width<<BITRES, IMAX(6<<BITRES, width));
1009 boost += quanta;
1010 total_bits -= quanta;
H A Dcelt_encoder.c1921 int width, quanta; local
1926 /* quanta is 6 bits, but no more than 1 bit/sample
1928 quanta = IMIN(width<<BITRES, IMAX(6<<BITRES, width));
1940 boost += quanta;
1941 total_boost += quanta;

Completed in 567 milliseconds