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

1 2 3

  /external/mdnsresponder/mDNSShared/
GenLinkedList.h 27 void *Head,
47 void *Head,
69 size_t Head,
  /external/skia/include/core/
SkTRegistry.h 40 static const SkTRegistry* Head() { return gHead; }
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/psdk_inc/
_xmitfile.h 11 LPVOID Head;
  /external/opencv3/modules/cudalegacy/src/cuda/
NCVRuntimeTemplates.hpp 85 // Head (first element, a non-typelist type by convention)
92 typedef T Head;
123 template <class Head, class Tail>
124 struct TypeAt<Typelist<Head, Tail>, 0>
126 typedef Head Result;
129 template <class Head, class Tail, unsigned int i>
130 struct TypeAt<Typelist<Head, Tail>, i>
  /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);
201 const DeclRefExpr *DR = cast<DeclRefExpr>(Head);
212 const BlockExpr *B = cast<BlockExpr>(Head);
220 } // switch (head->getStmtClass()
    [all...]
  /external/google-breakpad/src/testing/gtest/samples/
sample3-inl.h 105 QueueNode<E>* Head() { return head_; }
106 const QueueNode<E>* Head() const { return head_; }
129 // 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(nullptr), 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 142 /// The block number of the head of the trace. (When hasValidDepth()).
143 unsigned Head;
177 /// trace head, and any dependencies from such a far away dominator are not
185 // Instruction depths are only comparable if the traces share a head.
186 if (Head != TBI.Head)
190 // flow, a dominator may share a trace head without actually being on the
253 /// 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/vulkan-validation-layers/tests/gtest-1.7.0/samples/
sample3-inl.h 105 QueueNode<E>* Head() { return head_; }
106 const QueueNode<E>* Head() const { return head_; }
129 // Removes the head of the queue and returns it. Returns NULL if
  /frameworks/volley/src/test/java/com/android/volley/mock/
TestRequest.java 137 /** Test example of a HEAD request in the new style. */
138 public static class Head extends Base {
139 public Head() {
140 super(Method.HEAD, TEST_URL, null);
  /ndk/sources/third_party/googletest/googletest/samples/
sample3-inl.h 105 QueueNode<E>* Head() { return head_; }
106 const QueueNode<E>* Head() const { return head_; }
129 // Removes the head of the queue and returns it. Returns NULL if
  /external/clang/test/SemaTemplate/
instantiate-member-class.cpp 67 static node *Head;
69 node(int v) { Head = this; }
  /external/libbrillo/brillo/http/
http_utils.cc 52 RequestID Head(const std::string& url,
  /external/lzma/CPP/Common/
Wildcard.h 101 CCensorNode Head;
  /external/skia/samplecode/
SampleCode.h 90 static const SkViewRegister* Head() { return gHead; }
  /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/clang/lib/Tooling/Core/
Replacement.cpp 327 StringRef Head = TextRef.substr(0, R.getOffset() + Delta - Offset);
329 Text = (Head + R.getReplacementText() + Tail).str();
  /external/llvm/include/llvm/ADT/
ImmutableList.h 28 T Head;
31 ImmutableListImpl(const T& head, const ImmutableListImpl* tail = nullptr)
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 77 static node *Head, *Tail;
96 Head = this;
118 static iterator begin() { return iterator(Head); }
214 typename Registry<T,U>::node *Registry<T,U>::Head;
  /external/llvm/lib/CodeGen/
MachineRegisterInfo.cpp 173 MachineOperand *const Head = HeadRef;
175 // Head points to the first list element.
177 // Prev pointers are circular, so Head->Prev == Last.
179 // Head is NULL for an empty list.
180 if (!Head) {
186 assert(MO->getReg() == Head->getReg() && "Different regs on the same list!");
188 // Insert MO between Last and Head in the circular Prev chain.
189 MachineOperand *Last = Head->Contents.Reg.Prev;
192 Head->Contents.Reg.Prev = MO;
199 MO->Contents.Reg.Next = Head;
    [all...]
ShadowStackGCLowering.cpp 32 GlobalVariable *Head;
75 : FunctionPass(ID), Head(nullptr), StackEntryTy(nullptr),
300 Head = M.getGlobalVariable("llvm_gc_root_chain");
301 if (!Head) {
304 Head = new GlobalVariable(
307 } else if (Head->hasExternalLinkage() && Head->isDeclaration()) {
308 Head->setInitializer(Constant::getNullValue(StackEntryPtrTy));
309 Head->setLinkage(GlobalValue::LinkOnceAnyLinkage);
408 // Initialize the map pointer and load the current head of the shadow stack
    [all...]
  /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/google-breakpad/src/client/mac/handler/
exception_handler.cc 168 mach_msg_header_t Head;
182 mach_msg_header_t Head;
  /external/llvm/lib/Target/AArch64/
AArch64ConditionalCompares.cpp 61 STATISTIC(NumHeadBranchRejs, "Number of ccmps rejected (Head branch)");
86 // From: Head To: Head
96 // The Head block is terminated by a br.cond instruction, and the CmpBB block
100 // compare, and merges CmpBB into Head, speculatively executing its
111 // Head:
123 // Head:
131 // The ccmp condition code is the one that would cause the Head terminator to
135 // between Head and Tail, just like if-converting a diamond.
149 MachineBasicBlock *Head;
    [all...]

Completed in 945 milliseconds

1 2 3