Searched defs:tell (Results 26 - 50 of 56) sorted by relevance

123

/external/libopus/celt/
H A Dquant_bands.c158 opus_int32 budget, opus_int32 tell,
168 if (tell+3 <= budget)
216 tell = ec_tell(enc);
217 bits_left = budget-tell-3*C*(end-i);
227 if (budget-tell >= 15)
234 else if(budget-tell >= 2)
239 else if(budget-tell >= 1)
271 opus_uint32 tell; local
281 tell = ec_tell(enc);
282 if (tell
156 quant_coarse_energy_impl(const CELTMode *m, int start, int end, const opus_val16 *eBands, opus_val16 *oldEBands, opus_int32 budget, opus_int32 tell, const unsigned char *prob_model, opus_val16 *error, ec_enc *enc, int C, int LM, int intra, opus_val16 max_decay, int lfe) argument
436 opus_int32 tell; local
[all...]
H A Dcelt_decoder.c408 opus_uint32 tell; local
411 tell = ec_tell(dec);
413 tf_select_rsv = LM>0 && tell+logp+1<=budget;
418 if (tell+logp<=budget)
421 tell = ec_tell(dec);
823 opus_int32 tell; local
922 tell = ec_tell(dec);
924 if (tell >= total_bits)
926 else if (tell==1)
933 tell
[all...]
H A Dbands.c712 opus_int32 tell; local
742 tell = ec_tell_frac(ec);
874 qalloc = ec_tell_frac(ec) - tell;
1475 opus_int32 tell; local
1495 tell = ec_tell_frac(ec);
1499 balance -= tell;
1500 remaining_bits = total_bits-tell-1;
1657 balance += pulses[i] + tell;
/external/llvm/include/llvm/Support/
H A Draw_ostream.h91 /// tell - Return the current offset with the file.
92 uint64_t tell() const { return current_pos() + GetNumBytesInBuffer(); } function in class:llvm::raw_ostream
328 uint64_t Pos = tell();
/external/llvm/lib/ProfileData/
H A DInstrProfWriter.cpp41 uint64_t tell() { return OS.tell(); } function in class:llvm::ProfOStream
242 uint64_t HashTableStartFieldOffset = OS.tell();
250 uint64_t SummaryOffset = OS.tell();
/external/python/cpython2/Lib/
H A Daifc.py81 tell() -- return the current position
83 The position returned by tell(), the position given to setpos() and
92 The open file pointer must have methods write(), tell(), seek(), and
109 tell() -- return current position in output file (useful
278 # available through the tell() method, set through the
368 def tell(self): member in class:Aifc_read
540 # _file -- the open file with methods write(), close(), tell(), seek()
718 def tell(self): member in class:Aifc_write
859 self._form_length_pos = self._file.tell()
874 self._nframes_pos = self._file.tell()
[all...]
H A D_pyio.py322 def tell(self): member in class:IOBase
329 Size defaults to the current IO position as reported by tell(). Return
374 If False, seek(), tell() and truncate() will raise IOError.
706 def tell(self): member in class:_BufferedIOMixin
707 pos = self.raw.tell()
709 raise IOError("tell() returned an invalid position")
719 pos = self.tell()
874 def tell(self): member in class:BytesIO
876 raise ValueError("tell on closed file")
1048 def tell(sel member in class:BufferedReader
1147 def tell(self): member in class:BufferedWriter
1266 def tell(self): member in class:BufferedRandom
1715 def tell(self): member in class:TextIOWrapper
[all...]
H A Dmailbox.py658 cur_len = self._file.tell()
672 new_start = new_file.tell()
675 stop - self._file.tell()))
679 new_toc[key] = (new_start, new_file.tell())
681 self._file_length = new_file.tell()
744 before = self._file.tell()
759 self._file_length = self._file.tell() # Record current length of mailbox
774 string = self._file.read(stop - self._file.tell())
785 string = self._file.read(stop - self._file.tell())
794 return _PartialFile(self._file, self._file.tell(), sto
1904 def tell(self): member in class:_ProxyFile
1941 def tell(self): member in class:_PartialFile
[all...]
H A Dtarfile.py547 def tell(self): member in class:_Stream
694 def tell(self): member in class:_BZ2Proxy
724 def tell(self): member in class:_FileInFile
877 def tell(self): member in class:ExFileObject
1253 obj.offset = tarfile.fileobj.tell() - BLOCKSIZE
1284 self.offset_data = tarfile.fileobj.tell()
1369 self.offset_data = tarfile.fileobj.tell()
1579 self.offset = self.fileobj.tell()
1673 saved_pos = fileobj.tell()
2140 methods: read(), readline(), readlines(), seek() and tell()
[all...]
/external/python/cpython3/Lib/
H A Daifc.py81 tell() -- return the current position
83 The position returned by tell(), the position given to setpos() and
92 The open file pointer must have methods write(), tell(), seek(), and
109 tell() -- return current position in output file (useful
293 # available through the tell() method, set through the
381 def tell(self): member in class:Aifc_read
527 # _file -- the open file with methods write(), close(), tell(), seek()
716 def tell(self): member in class:Aifc_write
819 self._form_length_pos = self._file.tell()
834 self._nframes_pos = self._file.tell()
[all...]
H A Dtempfile.py656 if max_size and file.tell() > max_size:
666 newfile.seek(file.tell(), 0)
753 def tell(self): member in class:SpooledTemporaryFile
754 return self._file.tell()
H A D_pyio.py343 def tell(self): member in class:IOBase
350 Size defaults to the current IO position as reported by tell(). Return
395 If False, seek(), tell() and truncate() will raise OSError.
747 def tell(self): member in class:_BufferedIOMixin
748 pos = self.raw.tell()
750 raise OSError("tell() returned an invalid position")
760 pos = self.tell()
923 def tell(self): member in class:BytesIO
925 raise ValueError("tell on closed file")
1140 def tell(sel member in class:BufferedReader
1232 def tell(self): member in class:BufferedWriter
1347 def tell(self): member in class:BufferedRandom
1637 def tell(self): member in class:FileIO
2168 def tell(self): member in class:TextIOWrapper
[all...]
H A Dmailbox.py667 cur_len = self._file.tell()
681 new_start = new_file.tell()
684 stop - self._file.tell()))
688 new_toc[key] = (new_start, new_file.tell())
690 self._file_length = new_file.tell()
749 before = self._file.tell()
764 self._file_length = self._file.tell() # Record current length of mailbox
779 string = self._file.read(stop - self._file.tell())
795 string = self._file.read(stop - self._file.tell())
804 return _PartialFile(self._file, self._file.tell(), sto
1962 def tell(self): member in class:_ProxyFile
2028 def tell(self): member in class:_PartialFile
[all...]
H A Dtarfile.py506 def tell(self): member in class:_Stream
652 def tell(self): member in class:_FileInFile
1091 obj.offset = tarfile.fileobj.tell() - BLOCKSIZE
1122 self.offset_data = tarfile.fileobj.tell()
1180 self.offset_data = tarfile.fileobj.tell()
1317 next.offset_data = tarfile.fileobj.tell()
1471 self.offset = self.fileobj.tell()
1566 saved_pos = fileobj.tell()
2285 if self.offset != self.fileobj.tell():
H A Dtyping.py2235 def tell(self) -> int: member in class:IO
H A Dzipfile.py242 filesize = fpin.tell()
705 self._pos = self._file.tell()
714 # Provide the tell method for unseekable stream
725 def tell(self): member in class:_Tellable
1010 self._zipfile.start_dir = self._fileobj.tell()
1023 self._zipfile.start_dir = self._fileobj.tell()
1107 self.start_dir = self.fp.tell()
1113 # Some file-like objects can provide tell() but not seek()
1131 self.start_dir = self._start_disk = self.fp.tell()
1457 zinfo.header_offset = self.fp.tell()
[all...]
/external/python/cpython3/Lib/test/
H A Dtest_gzip.py31 def tell(self): member in class:UnseekableIO
130 self.assertEqual(f.tell(), nread)
157 f.tell()
247 oldpos = f.tell()
250 newpos = f.tell()
457 self.assertLessEqual(decomp._buffer.raw.tell(), max_decomp,
H A Dtest_sax.py755 def tell(self): member in class:WriterXmlgenTest.ioclass
H A Dtest_zipfile.py309 end_offset = fp.tell()
1758 # Privide the tell() method but not seek()
1769 def tell(self): member in class:Tellable
/external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
H A Draw_ostream.h97 /// tell - Return the current offset with the file.
98 uint64_t tell() const { return current_pos() + GetNumBytesInBuffer(); } function in class:llvm::raw_ostream
341 uint64_t Pos = tell();
/external/chromium-trace/catapult/third_party/pyserial/serial/
H A Dserialutil.py211 def tell(self): member in class:FileLike
/external/avb/
H A Davbtool629 tell(), and read() methods. For writing, only truncation
674 self.image_size = self._image.tell()
706 chunk_offset = self._image.tell()
722 self._image.tell(),
759 self._sparse_end = self._image.tell()
806 self._image.truncate(self._image.tell() + num_bytes)
946 def tell(self): member in class:ImageHandler
/external/python/cpython3/Lib/xml/etree/
H A DElementTree.py825 file.tell = file_or_filename.tell
1152 def tell(self): member in class:_ListDataStream
/external/python/cpython2/Lib/plat-mac/lib-scriptpackages/StdSuites/
H A DAppleScript_Suite.py367 """end tell: Record or log an \xd4end tell\xd5 statement
639 def tell(self, _no_object=None, _attributes={}, **_arguments): member in class:AppleScript_Suite_Events
640 """tell: Record or log a \xd4tell\xd5 statement
644 _subcode = 'tell'
/external/python/cpython2/Lib/test/
H A Dpickletester.py101 def tell(self): member in class:UnseekableIO
1880 pos = f.tell()
1883 self.assertEqual(f.tell(), pos + len(pickled))

Completed in 755 milliseconds

123