OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:_adpcmstate
(Results
1 - 3
of
3
) sorted by null
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
aifc.py
432
if not hasattr(self, '
_adpcmstate
'):
434
self.
_adpcmstate
= None
435
data, self.
_adpcmstate
= audioop.adpcm2lin(data, 2,
436
self.
_adpcmstate
)
756
if not hasattr(self, '
_adpcmstate
'):
757
self.
_adpcmstate
= None
758
data, self.
_adpcmstate
= audioop.lin2adpcm(data, 2,
759
self.
_adpcmstate
)
[
all
...]
/external/python/cpython2/Lib/
aifc.py
456
if not hasattr(self, '
_adpcmstate
'):
458
self.
_adpcmstate
= None
459
data, self.
_adpcmstate
= audioop.adpcm2lin(data, 2,
460
self.
_adpcmstate
)
787
if not hasattr(self, '
_adpcmstate
'):
788
self.
_adpcmstate
= None
789
data, self.
_adpcmstate
= audioop.lin2adpcm(data, 2,
790
self.
_adpcmstate
)
[
all
...]
/external/python/cpython3/Lib/
aifc.py
459
if not hasattr(self, '
_adpcmstate
'):
461
self.
_adpcmstate
= None
462
data, self.
_adpcmstate
= audioop.adpcm2lin(data, 2, self.
_adpcmstate
)
776
if not hasattr(self, '
_adpcmstate
'):
777
self.
_adpcmstate
= None
778
data, self.
_adpcmstate
= audioop.lin2adpcm(data, 2, self.
_adpcmstate
)
[
all
...]
Completed in 2126 milliseconds