Searched refs:tell (Results 1 - 25 of 85) sorted by relevance

1234

/external/llvm/unittests/Support/
H A Dformatted_raw_ostream_test.cpp29 EXPECT_EQ(100*(i+1), (unsigned) C.tell());
/external/chromium_org/ui/file_manager/file_manager/foreground/js/metadata/
H A Did3_parser.js108 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...]
H A Dexif_parser.js93 filePos + br.tell() + (opt_offset || 0), opt_bytes);
109 var nextSectionStart = br.tell() + markLength;
112 if (filePos + br.tell() + markLength > file.size) {
114 'Invalid section length @' + (filePos + br.tell() - 2));
171 br = new ByteReader(buf, br.tell());
H A Dmpeg_parser.js29 var pos = br.tell();
100 metadata[name] = br.readString(atom.end - br.tell(), atom.end);
105 metadata.thumbnailURL = br.readImage(atom.end - br.tell(), atom.end);
/external/chromium_org/third_party/opus/src/celt/tests/
H A Dtest_unit_entropy.c170 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]){
209 0,ec_tell_frac(&dec),tell[0],seed);
219 if(ec_tell_frac(&dec)!=tell[j+1]){
222 j+1,ec_tell_frac(&dec),tell[j+1],seed);
225 free(tell);
232 unsigned *tell; local
[all...]
/external/libopus/celt/tests/
H A Dtest_unit_entropy.c170 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]){
209 0,ec_tell_frac(&dec),tell[0],seed);
219 if(ec_tell_frac(&dec)!=tell[j+1]){
222 j+1,ec_tell_frac(&dec),tell[j+1],seed);
225 free(tell);
232 unsigned *tell; local
[all...]
/external/flac/include/FLAC/
H A Dcallback.h129 /** Signature for the tell callback.
173 FLAC__IOCallback_Tell tell; member in struct:__anon21456
/external/llvm/lib/TableGen/
H A DTableGenBackend.cpp25 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/
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
435 opus_int32 tell; local
[all...]
H A Dcelt_decoder.c293 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
[all...]
/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
435 opus_int32 tell; local
[all...]
H A Dcelt_decoder.c293 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
[all...]
/external/llvm/test/MC/AArch64/
H A Darm64-separator.s7 ; tell it to show encodings. That will result in the two 'mov' instructions
/external/mdnsresponder/mDNSShared/
H A Ddnsextd.conf17 // 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
/external/chromium_org/components/bookmarks/test/
H A Dbookmark_test_helpers.cc66 std::string tell; local
68 tell = node_name.substr(part_length - 2, 2);
69 if (tell == folder_tell) {
/external/clang/lib/Frontend/
H A DTextDiagnosticPrinter.cpp129 uint64_t StartOfLocationInfo = OS.tell();
142 OS.tell() - StartOfLocationInfo,
H A DCacheTokens.cpp296 uint32_t TokenOff = Out.tell();
335 Offset HashOff = (Offset) Out.tell();
443 Offset PPCondOff = (Offset) Out.tell();
462 Offset SpellingsOff = Out.tell();
477 Offset PrologueOffset = Out.tell();
624 key->FileOffset = Out.tell();
673 Offset IDOff = Out.tell();
/external/qemu/distrib/libsparse/src/
H A Dsimg_dump.py105 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/third_party/cython/src/Cython/
H A DStringIOTree.py33 if self.stream.tell():
/external/llvm/include/llvm/Support/
H A Dcircular_raw_ostream.h92 return TheStream->tell() - TheStream->GetNumBytesInBuffer();
H A DFormattedStream.h68 return TheStream->tell();
110 // had been using, and tell TheStream not to do its own buffering.
/external/llvm/lib/MC/
H A DMachObjectWriter.cpp137 uint64_t Start = OS.tell();
152 assert(OS.tell() - Start ==
167 uint64_t Start = OS.tell();
197 assert(OS.tell() - Start == SegmentLoadCommandSize);
217 uint64_t Start = OS.tell();
246 assert(OS.tell() - Start == (is64Bit() ? sizeof(MachO::section_64) :
256 uint64_t Start = OS.tell();
266 assert(OS.tell() - Start == sizeof(MachO::symtab_command));
279 uint64_t Start = OS.tell();
303 assert(OS.tell()
[all...]
/external/chromium_org/build/mac/
H A Dchange_mach_o_flags.py107 new_offset = file.tell()
237 fat_arch_offset = file.tell()
/external/compiler-rt/lib/sanitizer_common/scripts/
H A Dsancov.py25 size = f.tell()
98 size = f.tell()
/external/llvm/tools/llvm-ar/
H A Dllvm-ar.cpp610 uint64_t OldPos = OS.tell();
612 unsigned SizeSoFar = OS.tell() - OldPos;
672 StartOffset = Out.tell();
674 StringMapIndexes.push_back(Out.tell() - StartOffset);
679 if (Out.tell() % 2)
681 int Pos = Out.tell();
710 StartOffset = Out.tell();
725 MemberOffsetRefs.push_back(std::make_pair(Out.tell(), MemberNum));
735 if (Out.tell() % 2)
738 unsigned Pos = Out.tell();
[all...]

Completed in 8971 milliseconds

1234