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

1 2

  /external/mdnsresponder/mDNSShared/
GenLinkedList.h 27 void *Head,
47 void *Head,
69 size_t Head,
  /external/skia/include/core/
SkTRegistry.h 41 static const SkTRegistry* Head() { return gHead; }
  /external/skia/legacy/include/core/
SkTRegistry.h 41 static const SkTRegistry* Head() { return gHead; }
  /external/chromium/testing/gtest/samples/
sample3-inl.h 106 QueueNode<E>* Head() { return head_; }
107 const QueueNode<E>* Head() const { return head_; }
130 // Removes the head of the queue and returns it. Returns NULL if
  /external/clang/lib/Analysis/
PseudoConstantAnalysis.cpp 85 const Stmt *Head = WorkList.front();
88 if (const Expr *Ex = dyn_cast<Expr>(Head))
89 Head = Ex->IgnoreParenCasts();
91 switch (Head->getStmtClass()) {
94 const BinaryOperator *BO = cast<BinaryOperator>(Head);
139 const UnaryOperator *UO = cast<UnaryOperator>(Head);
172 const DeclStmt *DS = cast<DeclStmt>(Head);
202 const DeclRefExpr *DR = cast<DeclRefExpr>(Head);
213 const BlockExpr *B = cast<BlockExpr>(Head);
221 } // switch (head->getStmtClass()
    [all...]
  /external/gtest/samples/
sample3-inl.h 106 QueueNode<E>* Head() { return head_; }
107 const QueueNode<E>* Head() const { return head_; }
130 // Removes the head of the queue and returns it. Returns NULL if
  /external/libvpx/libvpx/third_party/googletest/src/samples/
sample3-inl.h 106 QueueNode<E>* Head() { return head_; }
107 const QueueNode<E>* Head() const { return head_; }
130 // Removes the head of the queue and returns it. Returns NULL if
  /external/llvm/include/llvm/CodeGen/
ScoreboardHazardRecognizer.h 35 // indicated by Head.
48 size_t Head;
50 Scoreboard():Data(NULL), Depth(0), Head(0) { }
61 return Data[(Head + idx) & (Depth-1)];
71 Head = 0;
75 Head = (Head + 1) & (Depth-1);
79 Head = (Head - 1) & (Depth-1);
MachineTraceMetrics.h 135 /// The block number of the head of the trace. (When hasValidDepth()).
136 unsigned Head;
170 /// trace head, and any dependencies from such a far away dominator are not
178 // Instruction depths are only comparable if the traces share a head.
179 if (Head != TBI.Head)
183 // flow, a dominator may share a trace head without actually being on the
246 /// the trace head to the trace center block. The resource depth only
  /external/protobuf/gtest/samples/
sample3-inl.h 106 QueueNode<E> * Head() { return head_; }
107 const QueueNode<E> * Head() const { return head_; }
130 // Removes the head of the queue and returns it. Returns NULL if
  /external/chromium/base/
mach_ipc_mac.h 213 mach_msg_header_t *Head() { return &(storage_->head); }
217 mach_msg_header_t head; member in struct:base::MachMessage::MachMessageData
  /external/clang/test/SemaTemplate/
instantiate-member-class.cpp 67 static node *Head;
69 node(int v) { Head = this; }
  /external/llvm/lib/CodeGen/
MachineRegisterInfo.cpp 120 MachineOperand *const Head = HeadRef;
122 // Head points to the first list element.
124 // Prev pointers are circular, so Head->Prev == Last.
126 // Head is NULL for an empty list.
127 if (!Head) {
133 assert(MO->getReg() == Head->getReg() && "Different regs on the same list!");
135 // Insert MO between Last and Head in the circular Prev chain.
136 MachineOperand *Last = Head->Contents.Reg.Prev;
139 Head->Contents.Reg.Prev = MO;
146 MO->Contents.Reg.Next = Head;
    [all...]
ShadowStackGC.cpp 44 GlobalVariable *Head;
197 ShadowStackGC::ShadowStackGC() : Head(0), StackEntryTy(0) {
299 Head = M.getGlobalVariable("llvm_gc_root_chain");
300 if (!Head) {
303 Head = new GlobalVariable(M, StackEntryPtrTy, false,
307 } else if (Head->hasExternalLinkage() && Head->isDeclaration()) {
308 Head->setInitializer(Constant::getNullValue(StackEntryPtrTy));
309 Head->setLinkage(GlobalValue::LinkOnceAnyLinkage);
399 // Initialize the map pointer and load the current head of the shadow stack
    [all...]
EarlyIfConversion.cpp 68 // Triangle: Head Diamond: Head
77 // Head block, and phis in the Tail block are converted to select instructions.
87 MachineBasicBlock *Head;
103 MachineBasicBlock *getTPred() const { return TBB == Tail ? Head : TBB; }
106 MachineBasicBlock *getFPred() const { return FBB == Tail ? Head : FBB; }
125 /// Instructions in Head that define values used by the conditional blocks.
135 /// Insertion point in Head for speculatively executed instructions form TBB
143 /// Find a valid insertion point in Head.
178 /// If instructions use any values that are defined in the head basic block
    [all...]
  /external/skia/legacy/src/core/
SkDeque.cpp 14 struct SkDeque::Head {
15 Head* fNext;
16 Head* fPrev;
40 if (storageSize >= sizeof(Head) + elemSize) {
41 fFront = (Head*)storage;
50 Head* head = fFront; local
51 Head* initialHead = (Head*)fInitialStorage;
53 while (head) {
    [all...]
  /frameworks/native/services/sensorservice/
traits.h 31 typedef T Head;
55 template <typename Head, typename Tail, typename T>
56 struct IndexOf<TypeList<Head, Tail>, T> {
  /external/llvm/include/llvm/ADT/
ImmutableList.h 28 T Head;
31 ImmutableListImpl(const T& head, const ImmutableListImpl* tail = 0)
32 : Head(head), Tail(tail) {}
40 const T& getHead() const { return Head; }
50 Profile(ID, Head, Tail);
94 /// begin - Returns an iterator referring to the head of the list, or
122 /// getHead - Returns the head of the list.
124 assert (!isEmpty() && "Cannot get the head of an empty list.");
166 ImmutableList<T> concat(const T& Head, ImmutableList<T> Tail)
    [all...]
  /external/llvm/include/llvm/Support/
Registry.h 74 static node *Head, *Tail;
93 Head = this;
116 static iterator begin() { return iterator(Head); }
211 typename Registry<T,U>::node *Registry<T,U>::Head;
  /external/clang/test/CodeGenCXX/
debug-info-use-after-free.cpp 8 typedef T1 Head;
21 typedef TemplateSel < T1 > Head;
40 typedef typename Types::Head Type;
49 typedef typename Tests::Head Head;
50 TypeParameterizedTest < Fixture, Head, Types >::Register;
  /external/llvm/lib/Transforms/Utils/
BasicBlockUtils.cpp 696 /// Head
700 /// Head
713 BasicBlock *Head = SplitBefore->getParent();
714 BasicBlock *Tail = Head->splitBasicBlock(SplitBefore);
715 TerminatorInst *HeadOldTerm = Head->getTerminator();
716 LLVMContext &C = Head->getContext();
717 BasicBlock *ThenBlock = BasicBlock::Create(C, "", Head->getParent(), Tail);
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
queue.h 41 // // Returns the head of the queue
42 // StateId Head() const;
45 // // Removes the head of the queue
78 StateId Head() const { return Head_(); }
107 StateId Head() const { return front_; }
116 virtual StateId Head_() const { return Head(); }
140 StateId Head() const { return back(); }
148 virtual StateId Head_() const { return Head(); }
170 StateId Head() const { return front(); }
178 virtual StateId Head_() const { return Head(); }
    [all...]
  /external/open-vcdiff/gtest/include/gtest/internal/
gtest-internal.h 677 typedef typename Types::Head Type;
719 typedef typename Tests::Head Head;
722 TypeParameterizedTest<Fixture, Head, Types>::Register(
    [all...]
  /external/openfst/src/include/fst/
queue.h 45 // // Returns the head of the queue
46 // StateId Head() const;
49 // // Removes the head of the queue
82 StateId Head() const { return Head_(); }
117 StateId Head() const { return front_; }
129 virtual StateId Head_() const { return Head(); }
153 StateId Head() const { return back(); }
164 virtual StateId Head_() const { return Head(); }
186 StateId Head() const { return front(); }
197 virtual StateId Head_() const { return Head(); }
    [all...]
  /external/protobuf/gtest/include/gtest/internal/
gtest-internal.h 670 typedef typename Types::Head Type;
712 typedef typename Tests::Head Head;
715 TypeParameterizedTest<Fixture, Head, Types>::Register(
    [all...]

Completed in 393 milliseconds

1 2