Searched refs:current_ (Results 1 - 25 of 68) sorted by relevance

123

/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_procmaps_linux.cc33 if (current_ >= last) return false;
39 char *next_line = (char*)internal_memchr(current_, '\n', last - current_);
43 *start = ParseHex(&current_);
44 CHECK_EQ(*current_++, '-');
45 *end = ParseHex(&current_);
46 CHECK_EQ(*current_++, ' ');
47 CHECK(IsOneOf(*current_, '-', 'r'));
49 if (*current_++ == 'r')
51 CHECK(IsOneOf(*current_, '
[all...]
H A Dsanitizer_list.h124 explicit IteratorBase(ItemTy *current) : current_(current) {}
126 current_ = current_->next;
130 return current_ != other.current_;
133 return *current_;
136 ItemTy *current_; member in class:__sanitizer::IntrusiveList::IteratorBase
H A Dsanitizer_procmaps_freebsd.cc55 if (current_ >= last) return false;
61 struct kinfo_vmentry *VmEntry = (struct kinfo_vmentry*)current_;
81 current_ += VmEntry->kve_structsize;
/external/webrtc/webrtc/modules/desktop_capture/
H A Dscreen_capture_frame_queue.cc23 ScreenCaptureFrameQueue::ScreenCaptureFrameQueue() : current_(0) {}
28 current_ = (current_ + 1) % kQueueLength;
32 assert(!frames_[current_].get() || !frames_[current_]->IsShared());
36 frames_[current_].reset(SharedDesktopFrame::Wrap(frame));
H A Dscreen_capture_frame_queue.h55 return frames_[current_].get();
59 return frames_[(current_ + kQueueLength - 1) % kQueueLength].get();
64 int current_; member in class:webrtc::ScreenCaptureFrameQueue
/external/v8/src/crankshaft/
H A Dlithium-inl.h36 : instr_(instr), limit_(instr->TempCount()), current_(0) {
41 bool TempIterator::Done() { return current_ >= limit_; }
46 return instr_->TempAt(current_);
51 while (current_ < limit_ && instr_->TempAt(current_) == NULL) ++current_;
56 ++current_;
62 : instr_(instr), limit_(instr->InputCount()), current_(0) {
67 bool InputIterator::Done() { return current_ >= limit_; }
72 DCHECK(instr_->InputAt(current_) !
[all...]
/external/v8/src/heap/
H A Dgc-tracer.cc102 current_(Event::START, GarbageCollectionReason::kUnknown, nullptr),
103 previous_(current_),
116 current_.end_time = heap_->MonotonicallyIncreasingTimeInMs();
120 current_ = Event(Event::START, GarbageCollectionReason::kTesting, nullptr);
121 current_.end_time = heap_->MonotonicallyIncreasingTimeInMs();
122 previous_ = current_;
145 DCHECK(current_.type == Event::SCAVENGER || start_counter_ > 1);
156 previous_ = current_;
163 current_ = Event(Event::SCAVENGER, gc_reason, collector_reason);
166 current_
[all...]
H A Dstore-buffer.cc21 current_(0),
65 current_ = 0;
66 top_ = start_[current_];
88 int other = (current_ + 1) % kStoreBuffers;
90 lazy_top_[current_] = top_;
91 current_ = other;
92 top_ = start_[current_];
131 int other = (current_ + 1) % kStoreBuffers;
133 lazy_top_[current_] = top_;
134 MoveEntriesToRememberedSet(current_);
[all...]
/external/v8/tools/clang/blink_gc_plugin/
H A DCheckFieldsVisitor.cpp13 : current_(0),
31 current_ = &it->second;
32 current_->edge()->Accept(this);
47 invalid_fields_.push_back(std::make_pair(current_, kMemberInUnmanaged));
55 invalid_fields_.push_back(std::make_pair(current_, kIteratorToGCManaged));
64 invalid_fields_.push_back(std::make_pair(current_, kPtrFromHeapToStack));
71 invalid_fields_.push_back(std::make_pair(current_, kGCDerivedPartObject));
87 invalid_fields_.push_back(std::make_pair(current_,
101 current_, InvalidSmartPtr(Parent())));
108 invalid_fields_.push_back(std::make_pair(current_, erro
[all...]
H A DCheckGCRootsVisitor.cpp18 current_.push_back(&it->second);
20 current_.pop_back();
47 gc_roots_.push_back(current_);
52 gc_roots_.push_back(current_);
H A DCheckGCRootsVisitor.h33 RootPath current_; member in class:CheckGCRootsVisitor
/external/webrtc/webrtc/base/
H A Dhttpserver.cc122 current_(NULL), signalling_(false), close_(false) {
128 Thread::Current()->Dispose(current_);
135 current_ = new HttpServerTransaction(connection_id_);
137 base_.recv(&current_->request);
149 ASSERT(current_ == NULL);
150 current_ = transaction;
151 if (current_->response.begin() == current_->response.end()) {
152 current_->response.set_error(HC_INTERNAL_SERVER_ERROR);
154 bool keep_alive = HttpShouldKeepAlive(current_
[all...]
H A Dmultipart.cc27 current_(0),
90 ASSERT(0 == current_);
135 return (current_ < parts_.size()) ? SS_OPEN : SS_CLOSED;
145 while (current_ < parts_.size()) {
146 StreamResult result = parts_[current_]->Read(buffer, buffer_len, read,
154 ++current_;
173 current_ = 0;
187 for (size_t j = i + 1; j < std::min(parts_.size(), current_ + 1); ++j) {
195 current_ = i;
230 for (size_t i = current_;
[all...]
/external/vulkan-validation-layers/demos/smoke/
H A DSimulation.cpp79 current_.axis = glm::normalize(glm::vec3(x, y, z));
81 current_.speed = speed_(rng_);
82 current_.scale = scale;
84 current_.matrix = glm::scale(glm::mat4(1.0f), glm::vec3(current_.scale));
88 current_.matrix = glm::rotate(current_.matrix, current_.speed * t, current_.axis);
90 return current_
[all...]
/external/v8/src/compiler/
H A Dnode-aux-data.h54 : data_(data), current_(current) {}
56 : data_(other.data_), current_(other.current_) {}
59 return std::make_pair(current_, (*data_)[current_]);
62 return current_ == other.current_ && data_ == other.data_;
68 ++current_;
75 size_t current_; member in class:v8::internal::compiler::NodeAuxData::const_iterator
H A Dnode.h549 : current_(other.current_), next_(other.next_) {}
551 Edge operator*() const { return Edge(current_, current_->input_ptr()); }
553 return current_ == other.current_;
557 DCHECK_NOT_NULL(current_);
558 current_ = next_;
559 next_ = current_ ? current_
572 Node::Use* current_; member in class:v8::internal::compiler::final
618 Node::Use* current_; member in class:v8::internal::compiler::final
[all...]
/external/protobuf/src/google/protobuf/util/internal/
H A Ddefault_value_objectwriter.cc65 current_(NULL),
81 if (current_ == NULL) {
91 if (current_ == NULL) {
101 if (current_ == NULL) {
111 if (current_ == NULL) {
121 if (current_ == NULL) {
131 if (current_ == NULL) {
141 if (current_ == NULL) {
151 if (current_ == NULL) {
164 if (current_
[all...]
H A Dprotostream_objectwriter.cc65 current_(NULL),
73 current_(NULL),
77 if (current_ == NULL) return;
83 static_cast<BaseElement*>(current_.get())->pop<BaseElement>());
418 if (current_ == NULL) {
420 current_.reset(new Item(
457 if (current_->IsAny()) {
458 current_->any()->StartObject(name);
464 if (current_->IsMap()) {
558 if (current_
[all...]
/external/v8/src/
H A Dsource-position-table.h70 return current_.code_offset;
74 return SourcePosition::FromRaw(current_.source_position);
78 return current_.is_statement;
87 PositionTableEntry current_; member in class:v8::internal::SourcePositionTableIterator
H A Dbit-vector.cc30 current_++;
36 current_ = current_index_ << kDataBitShift;
H A Dallocation-site-scopes.h24 Handle<AllocationSite> current() { return current_; }
32 *(current_.location()) = site;
37 current_ = Handle<AllocationSite>::New(*top_, isolate());
43 Handle<AllocationSite> current_; member in class:v8::internal::AllocationSiteContext
/external/v8/src/parsing/
H A Dscanner.h207 Token::Value current_token() { return current_.token; }
210 Location location() const { return current_.location; }
241 return LiteralContainsEscapes(current_);
244 DCHECK(current_.token == Token::IDENTIFIER ||
245 current_.token == Token::ESCAPED_STRICT_RESERVED_WORD);
246 DCHECK_NOT_NULL(current_.literal_chars);
247 return current_.literal_chars->is_contextual_keyword(keyword);
261 if (!current_.literal_chars) {
262 return !strncmp(Token::Name(current_.token), data, length);
301 uint32_t smi_value() const { return current_
749 TokenDesc current_; // desc for current token (as returned by Next()) member in class:v8::internal::Scanner
[all...]
H A Dscanner-character-streams.cc200 : current_({0, {0, 0, unibrow::Utf8::Utf8IncrementalBuffer(0)}}),
238 // Within the current chunk, skip forward from current_ towards position.
242 // Fetch a new chunk (assuming current_ is at the end of the current data).
244 // Search through the chunks and set current_ to point to the given position.
249 Position current_; member in class:v8::internal::Utf8ExternalStreamingStream
255 DCHECK_LE(current_.pos.chars, position); // We can only skip forward.
258 if (current_.pos.chars == position) return true;
260 const Chunk& chunk = chunks_[current_.chunk_no];
261 DCHECK(current_.pos.bytes >= chunk.start.bytes);
265 size_t it = current_
[all...]
/external/libcxx/test/support/
H A Dtest_iterators.h345 : begin_(nullptr), end_(nullptr), current_(nullptr), action_(TADereference), index_(0) {}
347 : begin_(first), end_(last), current_(first), action_(action), index_(index) {}
349 : begin_(rhs.begin_), end_(rhs.end_), current_(rhs.current_), action_(rhs.action_), index_(rhs.index_) {}
366 current_ = rhs.current_;
386 return *current_;
402 ++current_;
426 --current_;
449 bool atEndL = current_
459 const T* current_; member in struct:ThrowingIterator
539 const T* current_; member in struct:NonThrowingIterator
[all...]
/external/protobuf/src/google/protobuf/io/
H A Dtokenizer.cc204 current_.line = 0;
205 current_.column = 0;
206 current_.end_column = 0;
207 current_.type = TYPE_START;
292 current_.type = TYPE_START; // Just for the sake of initializing it.
293 current_.text.clear();
294 current_.line = line_;
295 current_.column = column_;
296 RecordTo(&current_.text);
301 current_
[all...]

Completed in 498 milliseconds

123