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

  /external/v8/src/compiler/
node.h 371 Node* to() const { return *input_ptr_; }
378 bool operator==(const Edge& other) { return input_ptr_ == other.input_ptr_; }
382 Node* old_to = *input_ptr_;
385 *input_ptr_ = new_to;
395 Edge(Node::Use* use, Node** input_ptr) : use_(use), input_ptr_(input_ptr) {
402 Node** input_ptr_; member in class:v8::internal::compiler::final
440 iterator() : use_(nullptr), input_ptr_(nullptr) {}
442 : use_(other.use_), input_ptr_(other.input_ptr_) {}
474 Node** input_ptr_; member in class:v8::internal::compiler::final
530 Node* const* input_ptr_; member in class:v8::internal::compiler::final
    [all...]
  /external/libbrillo/brillo/streams/
fake_stream.cc 97 input_ptr_ = 0;
182 return input_ptr_ >= input_buffer_.size();
189 input_ptr_ = 0;
227 size_to_read = std::min(size_to_read, input_buffer_.size() - input_ptr_);
228 std::memcpy(buffer, input_buffer_.data() + input_ptr_, size_to_read);
229 input_ptr_ += size_to_read;
fake_stream.h 154 size_t input_ptr_{0};

Completed in 95 milliseconds