HomeSort by relevance Sort by last modified time
    Searched defs:head_ (Results 1 - 25 of 30) sorted by null

1 2

  /external/v8/src/
locked-queue.h 34 Node* head_; member in class:v8::internal::BASE_EMBEDDED
futex-emulation.h 75 FutexWaitListNode* head_; member in class:v8::internal::FutexWaitList
log.cc 563 if (Succ(head_) == static_cast<int>(base::NoBarrier_Load(&tail_))) {
566 buffer_[head_] = *sample;
567 head_ = Succ(head_);
598 int head_; // Index to the buffer head. member in class:v8::internal::Profiler
679 head_(0),
    [all...]
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_lfstack.h 29 atomic_store(&head_, 0, memory_order_relaxed);
33 return (atomic_load(&head_, memory_order_relaxed) & kPtrMask) == 0;
37 u64 cmp = atomic_load(&head_, memory_order_relaxed);
42 if (atomic_compare_exchange_weak(&head_, &cmp, xch,
49 u64 cmp = atomic_load(&head_, memory_order_acquire);
57 if (atomic_compare_exchange_weak(&head_, &cmp, xch,
69 atomic_uint64_t head_; member in struct:__sanitizer::LFStack
  /external/v8/src/compiler/
redundancy-elimination.h 38 EffectPathChecks(Check* head, size_t size) : head_(head), size_(size) {}
42 Check* head_; member in class:v8::internal::compiler::final::final
branch-elimination.h 55 : head_(head), condition_count_(condition_count) {}
57 BranchCondition* head_; member in class:v8::internal::compiler::final::ControlPathConditions
  /external/libchrome/sandbox/linux/bpf_dsl/
cons.h 75 Cell(const T& head, const List<T>& tail) : head_(head), tail_(tail) {}
78 const T& head() const { return head_; }
86 T head_; member in class:sandbox::cons::Cell
  /external/google-breakpad/src/testing/gtest/samples/
sample3-inl.h 77 Queue() : head_(NULL), last_(NULL), size_(0) {}
86 QueueNode<E>* node = head_;
96 head_ = last_ = NULL;
105 QueueNode<E>* Head() { return head_; }
106 const QueueNode<E>* Head() const { return head_; }
120 head_ = last_ = new_node;
136 const QueueNode<E>* const old_head = head_;
137 head_ = head_->next_;
155 for (const QueueNode<E>* node = head_; node != NULL; node = node->next_)
163 QueueNode<E>* head_; \/\/ The first node of the queue. member in class:Queue
    [all...]
  /external/protobuf/gtest/samples/
sample3-inl.h 78 Queue() : head_(NULL), last_(NULL), size_(0) {}
87 QueueNode<E>* node = head_;
97 head_ = last_ = NULL;
106 QueueNode<E>* Head() { return head_; }
107 const QueueNode<E>* Head() const { return head_; }
121 head_ = last_ = new_node;
137 const QueueNode<E>* const old_head = head_;
138 head_ = head_->next_;
156 for (const QueueNode<E>* node = head_; node != NULL; node = node->next_)
164 QueueNode<E>* head_; \/\/ The first node of the queue. member in class:Queue
    [all...]
  /external/vulkan-validation-layers/tests/gtest-1.7.0/samples/
sample3-inl.h 77 Queue() : head_(NULL), last_(NULL), size_(0) {}
86 QueueNode<E>* node = head_;
96 head_ = last_ = NULL;
105 QueueNode<E>* Head() { return head_; }
106 const QueueNode<E>* Head() const { return head_; }
120 head_ = last_ = new_node;
136 const QueueNode<E>* const old_head = head_;
137 head_ = head_->next_;
155 for (const QueueNode<E>* node = head_; node != NULL; node = node->next_)
163 QueueNode<E>* head_; \/\/ The first node of the queue. member in class:Queue
    [all...]
  /frameworks/native/vulkan/libvulkan/
debug_report.h 40 : head_{nullptr, 0, nullptr, nullptr, VK_NULL_HANDLE} {}
83 Node head_; member in class:vulkan::driver::DebugReportCallbackList
  /ndk/sources/third_party/googletest/googletest/samples/
sample3-inl.h 77 Queue() : head_(NULL), last_(NULL), size_(0) {}
86 QueueNode<E>* node = head_;
96 head_ = last_ = NULL;
105 QueueNode<E>* Head() { return head_; }
106 const QueueNode<E>* Head() const { return head_; }
120 head_ = last_ = new_node;
136 const QueueNode<E>* const old_head = head_;
137 head_ = head_->next_;
155 for (const QueueNode<E>* node = head_; node != NULL; node = node->next_)
163 QueueNode<E>* head_; \/\/ The first node of the queue. member in class:Queue
    [all...]
  /bionic/linker/
linked_list.h 71 LinkedList() : head_(nullptr), tail_(nullptr) {}
77 this->head_ = that.head_;
79 that.head_ = that.tail_ = nullptr;
84 new_entry->next = head_;
86 head_ = new_entry;
97 tail_ = head_ = new_entry;
105 if (head_ == nullptr) {
109 LinkedListEntry<T>* entry = head_;
111 head_ = entry->next
236 LinkedListEntry<T>* head_; member in class:LinkedList
    [all...]
  /toolchain/binutils/binutils-2.25/gold/
token.h 40 : head_(NULL), tail_(NULL)
44 { gold_assert(this->head_ == NULL && this->tail_ == NULL); }
49 { return this->head_ == NULL; }
66 Task* head_; member in class:gold::Task_list
  /packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/
pointer.h 981 const Ch* head_; \/\/!< Original head of the string. member in class:GenericPointer::PercentDecodeStream
    [all...]
rapidjson.h 574 GenericStringStream(const Ch *src) : src_(src), head_(src) {}
578 size_t Tell() const { return static_cast<size_t>(src_ - head_); }
586 const Ch* head_; //!< Original head of the string. member in struct:GenericStringStream
608 GenericInsituStringStream(Ch *src) : src_(src), dst_(0), head_(src) {}
613 size_t Tell() { return static_cast<size_t>(src_ - head_); }
627 Ch* head_; member in struct:GenericInsituStringStream
  /packages/apps/Test/connectivity/sl4n/rapidjson/test/unittest/
readertest.cpp 992 const Ch* head_; \/\/!< Original head of the string. member in class:CustomStringStream
    [all...]
  /art/runtime/gc/allocator/
rosalloc.h 144 SlotFreeList() : head_(0U), tail_(0), size_(0) {}
146 return reinterpret_cast<Slot*>(head_);
161 Slot** headp = reinterpret_cast<Slot**>(&head_);
196 Slot** headp = reinterpret_cast<Slot**>(&head_);
235 Slot** headp = reinterpret_cast<Slot**>(&head_);
261 head_ = 0;
269 Slot* head = reinterpret_cast<Slot*>(head_);
298 uint64_t head_; member in class:art::gc::allocator::RosAlloc::SlotFreeList
834 return OFFSETOF_MEMBER(SlotFreeList<false>, head_);
    [all...]
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/apache/maven/doxia/doxia-sink-api/1.0-alpha-7/
doxia-sink-api-1.0-alpha-7.jar 
  /prebuilts/tools/common/m2/repository/org/apache/maven/doxia/doxia-sink-api/1.0/
doxia-sink-api-1.0.jar 
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
basic-block.h 200 rtx head_; member in struct:basic_block_il_dependent::__anon41449
404 #define BB_HEAD(B) (B)->il.x.head_
    [all...]
  /prebuilts/tools/common/m2/repository/org/apache/maven/doxia/doxia-module-xdoc/1.0/
doxia-module-xdoc-1.0.jar 
  /prebuilts/tools/common/m2/repository/org/apache/maven/reporting/maven-reporting-impl/2.0.5/
maven-reporting-impl-2.0.5.jar 
  /prebuilts/tools/common/m2/repository/org/apache/maven/doxia/doxia-module-xhtml/1.0/
doxia-module-xhtml-1.0.jar 
  /prebuilts/tools/common/m2/repository/org/apache/maven/doxia/doxia-site-renderer/1.0/
doxia-site-renderer-1.0.jar 

Completed in 3436 milliseconds

1 2