HomeSort by relevance Sort by last modified time
    Searched refs:current_pos (Results 1 - 21 of 21) sorted by null

  /external/llvm/lib/Support/
raw_os_ostream.cpp 30 uint64_t raw_os_ostream::current_pos() const { return OS.tellp(); } function in class:raw_os_ostream
raw_ostream.cpp 744 uint64_t raw_svector_ostream::current_pos() const { return OS.size(); } function in class:raw_svector_ostream
771 uint64_t raw_null_ostream::current_pos() const { function in class:raw_null_ostream
  /external/llvm/include/llvm/Support/
raw_os_ostream.h 31 /// current_pos - Return the current position within the stream, not
33 uint64_t current_pos() const override;
raw_ostream.h 92 uint64_t tell() const { return current_pos() + GetNumBytesInBuffer(); }
284 virtual uint64_t current_pos() const = 0;
363 uint64_t current_pos() const override { return pos; }
458 uint64_t current_pos() const override { return OS.size(); }
486 uint64_t current_pos() const override;
512 uint64_t current_pos() const override;
FormattedStream.h 46 /// current_pos - Return the current position within the stream,
48 uint64_t current_pos() const override {
circular_raw_ostream.h 85 /// current_pos - Return the current position within the stream,
88 uint64_t current_pos() const override {
89 // This has the same effect as calling TheStream.current_pos(),
  /external/webrtc/webrtc/modules/audio_coding/neteq/tools/
input_audio_file.cc 47 const long current_pos = ftell(fp_); local
48 RTC_CHECK_NE(EOF, current_pos)
54 long new_pos = current_pos + sizeof(int16_t) * samples; // Samples to bytes.
  /external/webrtc/webrtc/modules/remote_bitrate_estimator/test/
bwe_test_fileutils.cc 36 int32_t current_pos = ftell(file_); local
39 fseek(file_, current_pos, SEEK_SET);
40 return current_pos == end_pos;
  /external/libbrillo/brillo/streams/
stream_utils_unittest.cc 102 const uint64_t current_pos = 1234; local
107 FROM_HERE, 0, Whence::FROM_BEGIN, current_pos, end_pos, &pos, nullptr));
111 FROM_HERE, 0, Whence::FROM_CURRENT, current_pos, end_pos, &pos, nullptr));
112 EXPECT_EQ(current_pos, pos);
115 FROM_HERE, 0, Whence::FROM_END, current_pos, end_pos, &pos, nullptr));
119 FROM_HERE, 10, Whence::FROM_BEGIN, current_pos, end_pos, &pos, nullptr));
123 FROM_HERE, 10, Whence::FROM_CURRENT, current_pos, end_pos, &pos,
125 EXPECT_EQ(current_pos + 10, pos);
128 FROM_HERE, 10, Whence::FROM_END, current_pos, end_pos, &pos, nullptr));
132 FROM_HERE, -10, Whence::FROM_CURRENT, current_pos, end_pos, &pos
    [all...]
  /toolchain/binutils/binutils-2.25/bfd/
liboasys.h 47 file_ptr current_pos; member in struct:_oasys_per_section
libieee.h 57 file_ptr current_pos; member in struct:ieee_per_section
  /external/webrtc/webrtc/p2p/base/
stun.cc 144 size_t current_pos = kStunHeaderSize; local
146 while (current_pos < size) {
149 attr_type = rtc::GetBE16(&data[current_pos]);
150 attr_length = rtc::GetBE16(&data[current_pos + sizeof(attr_type)]);
155 current_pos + attr_length > size) {
163 current_pos += sizeof(attr_type) + sizeof(attr_length) + attr_length;
165 current_pos += (4 - (attr_length % 4));
174 size_t mi_pos = current_pos;
175 rtc::scoped_ptr<char[]> temp_data(new char[current_pos]);
176 memcpy(temp_data.get(), data, current_pos);
    [all...]
  /external/v8/src/compiler/
graph-visualizer.cc 573 UsePosition* current_pos = range->first_pos(); local
574 while (current_pos != nullptr) {
575 if (current_pos->RegisterIsBeneficial() || FLAG_trace_all_uses) {
576 os_ << " " << current_pos->pos().value() << " M";
578 current_pos = current_pos->next();
  /external/mesa3d/src/gallium/auxiliary/gallivm/
lp_bld_debug.cpp 93 uint64_t current_pos() const { return pos; } function in class:raw_debug_ostream
96 uint64_t current_pos() { return pos; } function in class:raw_debug_ostream
  /external/llvm/include/llvm/MC/
MCLinkerOptimizationHint.h 140 uint64_t current_pos() const override { return Count; }
  /external/chromium-trace/catapult/third_party/gsutil/third_party/apitools/apitools/base/py/
transfer.py     [all...]
  /external/libvpx/libvpx/vp8/encoder/
firstpass.c 2841 FIRSTPASS_STATS *current_pos = cpi->twopass.stats_in; local
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/
firstpass.c 2842 FIRSTPASS_STATS *current_pos = cpi->twopass.stats_in; local
    [all...]
  /external/webrtc/talk/app/webrtc/
webrtcsdp.cc 901 size_t current_pos = 0; local
    [all...]
  /external/v8/src/crankshaft/
hydrogen.cc 13490 UsePosition* current_pos = range->first_pos(); local
    [all...]
  /toolchain/binutils/binutils-2.25/binutils/
readelf.c 15123 unsigned long current_pos; local
    [all...]

Completed in 726 milliseconds