HomeSort by relevance Sort by last modified time
    Searched refs:pos_ (Results 26 - 50 of 74) sorted by null

12 3

  /external/webp/src/utils/
bit_reader_utils.c 159 br->pos_ = length;
170 // pos_ > len_ should be considered a param error.
171 br->eos_ = (br->pos_ > br->len_) || VP8LIsEndOfStream(br);
181 while (br->bit_pos_ >= 8 && br->pos_ < br->len_) {
183 br->val_ |= ((vp8l_val_t)br->buf_[br->pos_]) << (VP8L_LBITS - 8);
184 ++br->pos_;
195 if (br->pos_ + sizeof(br->val_) < br->len_) {
198 br->val_ |= (vp8l_val_t)HToLE32(WebPMemToUint32(br->buf_ + br->pos_)) <<
200 br->pos_ += VP8L_LOG8_WBITS;
bit_reader_utils.h 125 size_t pos_; // byte position in buf_ member in struct:__anon38576
152 assert(br->pos_ <= br->len_);
153 return br->eos_ || ((br->pos_ == br->len_) && (br->bit_pos_ > VP8L_LBITS));
bit_writer_utils.h 33 size_t pos_; member in struct:VP8BitWriter
58 return (bw->pos_ + bw->run_) * 8 + nb_bits;
67 return bw->pos_;
bit_writer_utils.c 29 const uint64_t needed_size_64b = (uint64_t)bw->pos_ + extra_size;
45 if (bw->pos_ > 0) {
47 memcpy(new_buf, bw->buf_, bw->pos_);
62 size_t pos = bw->pos_;
74 bw->pos_ = pos;
167 bw->pos_ = 0;
186 memcpy(bw->buf_ + bw->pos_, data, size);
187 bw->pos_ += size;
  /external/webrtc/webrtc/common_audio/
wav_header_unittest.cc 24 pos_(0),
30 pos_(0),
37 EXPECT_EQ(size_, pos_);
43 EXPECT_GE(size_, pos_ + num_bytes);
46 const size_t bytes_remaining = size_ - pos_;
54 memcpy(buf, &buf_[pos_], num_bytes);
55 pos_ += num_bytes;
62 size_t pos_; member in class:webrtc::ReadableWavBuffer
  /art/runtime/
dex_file.h 1272 uint32_t pos_; member in class:art::DexFile::DexFileParameterIterator
1518 size_t pos_; \/\/ integral number of items passed member in class:art::DexFile::ClassDataItemIterator
1562 size_t pos_; \/\/ Current position. member in class:art::DexFile::EncodedArrayValueIterator
    [all...]
handle_scope-inl.h 111 SetReference(pos_, object);
112 MutableHandle<T> h(GetHandle<T>(pos_));
113 pos_++;
handle_scope.h 235 return kNumReferences - pos_;
253 uint32_t pos_ = 0; variable
307 - /* FixedSizeHandleScope<>::pos_ */ sizeof(uint32_t);
  /external/libchrome/base/json/
json_parser.h 133 const char* pos_; member in class:base::internal::JSONParser::StringBuilder
135 // Number of bytes in |pos_| that make up the string being built.
231 const char* pos_; member in class:base::internal::JSONParser
  /external/v8/src/
assembler.cc 387 *--pos_ = b << kLastChunkTagBits;
390 *pos_ = *pos_ | kLastChunkTag;
399 *--pos_ = pc_delta << kTagBits | tag;
404 *--pos_ = static_cast<byte>(data_delta << kShortDataTypeTagBits | tag);
410 *--pos_ = static_cast<int>((rmode << kTagBits) | kDefaultTag);
418 *--pos_ = pc_delta;
424 *--pos_ = static_cast<byte>(number);
433 *--pos_ = static_cast<byte>(data_delta);
443 byte* begin_pos = pos_;
    [all...]
log-utils.h 96 int pos_; member in class:v8::internal::Log::BASE_EMBEDDED
assembler.h 647 RelocInfoWriter() : pos_(NULL), last_pc_(NULL), last_id_(0) {}
648 RelocInfoWriter(byte* pos, byte* pc) : pos_(pos), last_pc_(pc), last_id_(0) {}
650 byte* pos() const { return pos_; }
658 pos_ = pos;
680 byte* pos_; member in class:v8::internal::BASE_EMBEDDED
720 void Advance(int bytes = 1) { pos_ -= bytes; }
742 byte* pos_; member in class:v8::internal::RelocIterator
    [all...]
  /bionic/libc/async_safe/
async_safe_log.cpp 66 pos_ = buffer_;
67 pos_[0] = '\0';
80 int avail = end_ - pos_;
87 memcpy(pos_, data, avail);
88 pos_ += avail;
89 pos_[0] = '\0';
98 char* pos_; member in struct:BufferOutputStream
  /external/gemmlowp/internal/
pack.h 53 : allocator_(allocator), pos_(0) {
66 pos_ = params_.l2_width * start_depth + start_width * kernel_run_depth;
69 void seek_next_cell() const { pos_ += KernelSideFormat::Cell::kSize; }
72 pos_ += n * KernelSideFormat::Cell::kSize;
76 return allocator_->GetPointer<std::uint8_t>(data_handle_) + pos_;
80 return allocator_->GetPointer<std::uint8_t>(data_handle_) + pos_;
112 // pos_ is the current position in the buffer, which we access
121 // pos_ is mutable because during the computation we will want to
123 mutable int pos_; member in class:gemmlowp::PackedSideBlock
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_flag_parser.h 89 uptr pos_; member in class:__sanitizer::FlagParser
  /external/vulkan-validation-layers/demos/smoke/
Simulation.cpp 147 pos_ += unit_dir_ * (t - last_);
150 return pos_;
165 pos_ = segment_start_;
179 glm::vec3 pos_; member in class:__anon38388::RandomCurve
  /system/nvram/messages/tests/
io_test.cpp 46 pos_ = buffer;
191 for (; check_pos_ < pos_; check_pos_++, count_++) {
204 pos_ = end_;
209 pos_ = buffer;
  /external/v8/src/compiler/
code-generator-impl.h 182 : deoptimization_id_(deoptimization_id), pos_(pos) {}
186 SourcePosition pos() const { return pos_; }
191 SourcePosition const pos_; member in class:v8::internal::compiler::DeoptimizationExit
code-generator.h 41 : instr_(instr), pos_(pos) {}
44 InstructionOperand* Advance() { return instr_->InputAt(pos_++); }
48 size_t pos_; member in class:v8::internal::compiler::InstructionOperandIterator
  /external/v8/src/third_party/vtune/
vtune-jit.cc 84 : pc_(pc), pos_(pos) { }
87 int pos_; member in struct:vTune::internal::JITCodeLineInfo::LineNumInfo
211 script->GetLineNumber(Iter->pos_) + 1;
  /art/compiler/dex/
inline_method_analyser.cc 68 pos_(0u),
75 size_t pos_; member in class:art::__anon5::Matcher
85 matcher->pos_ += 1u; // Advance to the next match function before marking.
86 matcher->mark_ = matcher->pos_;
95 matcher->pos_ += 1u;
104 matcher->pos_ += 1u;
107 matcher->pos_ = matcher->mark_;
132 while (matcher.pos_ != size) {
133 if (!pattern[matcher.pos_](&matcher)) {
  /external/v8/src/ast/
ast-value-factory.cc 45 literal_bytes_(lb), pos_(0) {}
47 bool HasMore() { return pos_ < literal_bytes_.length(); }
48 uint16_t GetNext() { return literal_bytes_[pos_++]; }
52 int pos_; member in class:v8::internal::__anon35743::OneByteStringStream
prettyprinter.h 108 int pos_; // current printing position member in class:v8::internal::final
  /external/webrtc/webrtc/base/
stream_unittest.cc 24 TestStream() : pos_(0) { }
31 uc_buffer[i] = static_cast<unsigned char>(pos_++);
45 pos_ = position;
49 if (position) *position = pos_;
60 size_t pos_; member in class:rtc::TestStream
  /toolchain/binutils/binutils-2.25/gold/
reloc.cc     [all...]

Completed in 969 milliseconds

12 3