HomeSort by relevance Sort by last modified time
    Searched refs:tell (Results 1 - 25 of 197) sorted by null

1 2 3 4 5 6 7 8

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_largefile.py 60 self.assertEqual(f.tell(), 0)
62 self.assertEqual(f.tell(), 1)
64 self.assertEqual(f.tell(), 0)
66 self.assertEqual(f.tell(), 0)
68 self.assertEqual(f.tell(), 42)
70 self.assertEqual(f.tell(), 42)
72 self.assertEqual(f.tell(), 84)
74 self.assertEqual(f.tell(), 84)
76 self.assertEqual(f.tell(), size + 1 + 0)
78 self.assertEqual(f.tell(), size + 1 - 10
    [all...]
test_fileio.py 36 self.assertEqual(self.f.tell(), p.tell())
39 self.assertRaises(ReferenceError, getattr, p, 'tell')
43 self.assertEqual(self.f.tell(), 20)
45 self.assertEqual(self.f.tell(), 0)
47 self.assertEqual(self.f.tell(), 10)
49 self.assertEqual(self.f.tell(), 15)
51 self.assertEqual(self.f.tell(), 10)
53 self.assertEqual(self.f.tell(), 15)
130 'seek', 'tell', 'truncate', 'write', 'seekable'
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_largefile.py 60 self.assertEqual(f.tell(), 0)
62 self.assertEqual(f.tell(), 1)
64 self.assertEqual(f.tell(), 0)
66 self.assertEqual(f.tell(), 0)
68 self.assertEqual(f.tell(), 42)
70 self.assertEqual(f.tell(), 42)
72 self.assertEqual(f.tell(), 84)
74 self.assertEqual(f.tell(), 84)
76 self.assertEqual(f.tell(), size + 1 + 0)
78 self.assertEqual(f.tell(), size + 1 - 10
    [all...]
test_fileio.py 36 self.assertEqual(self.f.tell(), p.tell())
39 self.assertRaises(ReferenceError, getattr, p, 'tell')
43 self.assertEqual(self.f.tell(), 20)
45 self.assertEqual(self.f.tell(), 0)
47 self.assertEqual(self.f.tell(), 10)
49 self.assertEqual(self.f.tell(), 15)
51 self.assertEqual(self.f.tell(), 10)
53 self.assertEqual(self.f.tell(), 15)
130 'seek', 'tell', 'truncate', 'write', 'seekable'
    [all...]
  /external/llvm/unittests/Support/
formatted_raw_ostream_test.cpp 29 EXPECT_EQ(100*(i+1), (unsigned) C.tell());
  /external/chromium_org/third_party/opus/src/celt/tests/
test_unit_entropy.c 170 unsigned *tell; local
177 tell=(unsigned *)malloc((sz+1)*sizeof(*tell));
180 tell[0]=ec_tell_frac(&enc);
187 tell[j+1]=ec_tell_frac(&enc);
206 if(ec_tell_frac(&dec)!=tell[0]){
208 "Tell mismatch between encoder and decoder at symbol %i: %i instead of %i (Random seed: %u).\n",
209 0,ec_tell_frac(&dec),tell[0],seed);
219 if(ec_tell_frac(&dec)!=tell[j+1]){
221 "Tell mismatch between encoder and decoder at symbol %i: %i instead of %i (Random seed: %u).\n"
232 unsigned *tell; local
    [all...]
  /external/libopus/celt/tests/
test_unit_entropy.c 170 unsigned *tell; local
177 tell=(unsigned *)malloc((sz+1)*sizeof(*tell));
180 tell[0]=ec_tell_frac(&enc);
187 tell[j+1]=ec_tell_frac(&enc);
206 if(ec_tell_frac(&dec)!=tell[0]){
208 "Tell mismatch between encoder and decoder at symbol %i: %i instead of %i (Random seed: %u).\n",
209 0,ec_tell_frac(&dec),tell[0],seed);
219 if(ec_tell_frac(&dec)!=tell[j+1]){
221 "Tell mismatch between encoder and decoder at symbol %i: %i instead of %i (Random seed: %u).\n"
232 unsigned *tell; local
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
multifile.py 50 self.start = self.fp.tell()
53 def tell(self): member in class:MultiFile
56 return self.fp.tell() - self.start
59 here = self.tell()
106 self.lastpos = self.tell() - len(line)
130 self.start = self.fp.tell()
139 self.start = self.fp.tell()
StringIO.py 9 pos = f.tell() # get current position
114 def tell(self): member in class:StringIO
292 length = f.tell()
298 print 'Position =', f.tell()
308 f.seek(f.tell() - len(line))
313 print 'File length =', f.tell()
314 if f.tell() != length:
318 print 'Truncated length =', f.tell()
319 if f.tell() != length/2:
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
multifile.py 50 self.start = self.fp.tell()
53 def tell(self): member in class:MultiFile
56 return self.fp.tell() - self.start
59 here = self.tell()
106 self.lastpos = self.tell() - len(line)
130 self.start = self.fp.tell()
139 self.start = self.fp.tell()
StringIO.py 9 pos = f.tell() # get current position
114 def tell(self): member in class:StringIO
292 length = f.tell()
298 print 'Position =', f.tell()
308 f.seek(f.tell() - len(line))
313 print 'File length =', f.tell()
314 if f.tell() != length:
318 print 'Truncated length =', f.tell()
319 if f.tell() != length/2:
  /external/flac/include/FLAC/
callback.h 129 /** Signature for the tell callback.
173 FLAC__IOCallback_Tell tell; member in struct:__anon25265
  /external/llvm/lib/TableGen/
TableGenBackend.cpp 25 size_t Pos = (size_t)OS.tell();
30 for (size_t i = (size_t)OS.tell() - Pos; i < e; ++i)
  /external/chromium_org/third_party/opus/src/celt/
quant_bands.c 158 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+3 > budget
435 opus_int32 tell; local
    [all...]
celt_decoder.c 293 opus_uint32 tell; local
296 tell = ec_tell(dec);
298 tf_select_rsv = LM>0 && tell+logp+1<=budget;
303 if (tell+logp<=budget)
306 tell = ec_tell(dec);
689 opus_int32 tell; local
780 tell = ec_tell(dec);
782 if (tell >= total_bits)
784 else if (tell==1)
791 tell = len*8
    [all...]
  /external/libopus/celt/
quant_bands.c 158 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+3 > budget
435 opus_int32 tell; local
    [all...]
  /external/llvm/test/MC/AArch64/
arm64-separator.s 7 ; tell it to show encodings. That will result in the two 'mov' instructions
  /external/mdnsresponder/mDNSShared/
dnsextd.conf 17 // tell BIND to accept packets from localhost:5030, like this:
21 // You also need a "zone" statement in /etc/named.conf to tell BIND the update
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/
af_vfs.h 40 long (*tell) (AFvirtualfile *vfile); member in struct:_AFvirtualfile
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/
af_vfs.h 40 long (*tell) (AFvirtualfile *vfile); member in struct:_AFvirtualfile
  /external/chromium_org/components/bookmarks/test/
bookmark_test_helpers.cc 66 std::string tell; local
68 tell = node_name.substr(part_length - 2, 2);
69 if (tell == folder_tell) {
  /external/clang/lib/Frontend/
TextDiagnosticPrinter.cpp 129 uint64_t StartOfLocationInfo = OS.tell();
142 OS.tell() - StartOfLocationInfo,
  /external/qemu/distrib/libsparse/src/
simg_dump.py 105 print("%4u %10u %10u %7u %7u" % (i, FH.tell(), data_sz, offset, chunk_sz),
155 print(" %10u %7u End" % (FH.tell(), offset))
  /system/core/libsparse/
simg_dump.py 105 print("%4u %10u %10u %7u %7u" % (i, FH.tell(), data_sz, offset, chunk_sz),
155 print(" %10u %7u End" % (FH.tell(), offset))
  /external/chromium_org/ui/file_manager/file_manager/foreground/js/metadata/
id3_parser.js 108 frame.value = this.readString_(reader, frame.encoding, end - reader.tell());
129 end - reader.tell());
134 end - reader.tell());
146 frame.format = reader.readNullTerminatedString(3, end - reader.tell());
150 end - reader.tell());
154 frame.imageUrl = reader.readNullTerminatedString(end - reader.tell());
156 frame.imageUrl = reader.readImage(end - reader.tell());
170 frame.mime = reader.readNullTerminatedString(end - reader.tell());
175 end - reader.tell());
178 frame.imageUrl = reader.readNullTerminatedString(end - reader.tell());
    [all...]

Completed in 4235 milliseconds

1 2 3 4 5 6 7 8