Searched refs:head (Results 26 - 50 of 638) sorted by relevance

1234567891011>>

/external/kernel-headers/original/linux/
H A Dlist.h55 * @head: list head to add it after
57 * Insert a new entry after the specified head.
60 static inline void list_add(struct list_head *new, struct list_head *head) argument
62 __list_add(new, head, head->next);
68 * @head: list head to add it before
70 * Insert a new entry before the specified head.
73 static inline void list_add_tail(struct list_head *new, struct list_head *head) argument
110 list_add_rcu(struct list_head *new, struct list_head *head) argument
131 list_add_tail_rcu(struct list_head *new, struct list_head *head) argument
249 list_move(struct list_head *list, struct list_head *head) argument
260 list_move_tail(struct list_head *list, struct list_head *head) argument
272 list_is_last(const struct list_head *list, const struct list_head *head) argument
282 list_empty(const struct list_head *head) argument
300 list_empty_careful(const struct list_head *head) argument
306 __list_splice(struct list_head *list, struct list_head *head) argument
325 list_splice(struct list_head *list, struct list_head *head) argument
338 list_splice_init(struct list_head *list, struct list_head *head) argument
[all...]
/external/ipsec-tools/src/racoon/
H A Dgenlist.c50 genlist_insert (struct genlist *head, void *data) argument
54 TAILQ_INSERT_HEAD(head, entry, chain);
59 genlist_append (struct genlist *head, void *data) argument
63 TAILQ_INSERT_TAIL(head, entry, chain);
68 genlist_foreach (struct genlist *head, genlist_func_t func, void *arg) argument
72 TAILQ_FOREACH(p, head, chain) {
82 genlist_next (struct genlist *head, struct genlist_entry **buf) argument
86 if (head)
87 p = TAILQ_FIRST(head);
96 genlist_free (struct genlist *head, genlist_freedata_ argument
[all...]
/external/skia/third_party/glu/libtess/
H A Ddict.c51 DictNode *head; local
55 head = &dict->head;
57 head->key = NULL;
58 head->next = head;
59 head->prev = head;
72 for( node = dict->head.next; node != &dict->head; nod
[all...]
/external/qemu/
H A Dsys-tree.h88 #define SPLAY_ROOT(head) (head)->sph_root
89 #define SPLAY_EMPTY(head) (SPLAY_ROOT(head) == NULL)
92 #define SPLAY_ROTATE_RIGHT(head, tmp, field) do { \
93 SPLAY_LEFT((head)->sph_root, field) = SPLAY_RIGHT(tmp, field); \
94 SPLAY_RIGHT(tmp, field) = (head)->sph_root; \
95 (head)->sph_root = tmp; \
98 #define SPLAY_ROTATE_LEFT(head, tmp, field) do { \
99 SPLAY_RIGHT((head)
[all...]
H A Dqlist.c35 QTAILQ_INIT(&qlist->head);
70 QTAILQ_INSERT_TAIL(&qlist->head, entry, next);
84 QTAILQ_FOREACH(entry, &qlist->head, next)
93 if (qlist == NULL || QTAILQ_EMPTY(&qlist->head)) {
97 entry = QTAILQ_FIRST(&qlist->head);
98 QTAILQ_REMOVE(&qlist->head, entry, next);
111 if (qlist == NULL || QTAILQ_EMPTY(&qlist->head)) {
115 entry = QTAILQ_FIRST(&qlist->head);
124 return QTAILQ_EMPTY(&qlist->head);
150 QTAILQ_FOREACH_SAFE(entry, &qlist->head, nex
[all...]
H A Dnotify.h32 #define NOTIFIER_LIST_INITIALIZER(head) \
33 { QTAILQ_HEAD_INITIALIZER((head).notifiers) }
/external/clang/test/CodeGen/
H A D2008-08-07-AlignPadding1.c16 PyGC_Head head; member in struct:gc_generation
21 #define GEN_HEAD(n) (&generations[n].head)
H A Dunion-init.c16 PyGC_Head head; member in struct:gc_generation
23 #define GEN_HEAD(n) (&generations[n].head)
/external/linux-tools-perf/util/include/linux/
H A Dlist.h33 * @head: the head for your list.
35 #define list_for_each_from(pos, head) \
36 for (; pos != (head); pos = pos->next)
/external/v8/test/mjsunit/regress/
H A Dregress-1708.js34 var head = new Array(1);
35 var tail = head;
/external/webkit/Source/WebKit/mac/Misc/
H A DOutlookQuirksUserScript.js27 // <html><head></head><body></body></html>
28 if (document.documentElement.outerHTML != "<html><head></head><body></body></html>")
33 document.documentElement.removeChild(document.head);
/external/openssh/openbsd-compat/
H A Dsys-tree.h79 #define SPLAY_ROOT(head) (head)->sph_root
80 #define SPLAY_EMPTY(head) (SPLAY_ROOT(head) == NULL)
83 #define SPLAY_ROTATE_RIGHT(head, tmp, field) do { \
84 SPLAY_LEFT((head)->sph_root, field) = SPLAY_RIGHT(tmp, field); \
85 SPLAY_RIGHT(tmp, field) = (head)->sph_root; \
86 (head)->sph_root = tmp; \
89 #define SPLAY_ROTATE_LEFT(head, tmp, field) do { \
90 SPLAY_RIGHT((head)
[all...]
/external/checkpolicy/
H A Dqueue.c21 q->head = q->tail = NULL;
40 if (q->head == NULL) {
41 q->head = q->tail = newnode;
64 if (q->head == NULL) {
65 q->head = q->tail = newnode;
67 newnode->next = q->head;
68 q->head = newnode;
82 if (q->head == NULL)
85 node = q->head;
86 q->head
[all...]
/external/yaffs2/yaffs2/
H A Ddevextras.h88 * @head: list head to add it after
90 * Insert a new entry after the specified head.
93 static __inline__ void list_add(struct list_head *new, struct list_head *head) argument
95 __list_add(new, head, head->next);
101 * @head: list head to add it before
103 * Insert a new entry before the specified head.
107 struct list_head *head)
106 list_add_tail(struct list_head *new, struct list_head *head) argument
151 list_empty(struct list_head *head) argument
161 list_splice(struct list_head *list, struct list_head *head) argument
[all...]
/external/skia/src/utils/
H A DSkSfntUtils.cpp33 bool SkSfntUtils::ReadTable_head(SkFontID fontID, SkSfntTable_head* head) { argument
44 head->fVersion = parse_be32(p);
45 head->fRevision = parse_be32(p);
46 head->fCheckSumAdjustment = parse_be32(p);
47 head->fMagicNumber = parse_be32(p);
48 head->fFlags = parse_be16(p);
49 head->fUnitsPerEm = parse_be16(p);
50 head->fDateCreated = parse_be64(p);
51 head->fDateModified = parse_be64(p);
52 head
[all...]
/external/apache-xml/src/main/java/org/apache/xalan/templates/
H A DTemplateList.java140 TemplateSubPatternAssociation head =
143 while (null != head)
145 System.out.print("(" + head.getTargetString() + ", "
146 + head.getPattern() + ")");
148 head = head.getNext();
154 TemplateSubPatternAssociation head = m_wildCardPatterns;
158 while (null != head)
160 System.out.print("(" + head.getTargetString() + ", "
161 + head
224 insertAssociationIntoList(TemplateSubPatternAssociation head, TemplateSubPatternAssociation item, boolean isWildCardInsert) argument
726 checkConflicts(TemplateSubPatternAssociation head, XPathContext xctxt, int targetNode, QName mode) argument
[all...]
/external/webkit/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/LeaksViewer/
H A DWebInspectorShims.js45 profileReady: function(head) {
46 this._callback({ head: head });
/external/fsck_msdos/
H A Dfat.c420 clearchain(struct bootblock *boot, struct fatEntry *fat, cl_t head) argument
424 for (p = head; p >= CLUST_FIRST && p < boot->NumClusters; p = q) {
425 if (fat[p].head != head)
428 fat[p].next = fat[p].head = CLUST_FREE;
434 tryclear(struct bootblock *boot, struct fatEntry *fat, cl_t head, cl_t *trunc) argument
436 if (ask(1, "Clear chain starting at %u", head)) {
437 clearchain(boot, fat, head);
452 cl_t head, p, h, n, wdk; local
460 for (head
663 cl_t head; local
[all...]
/external/srec/seti/sltsEngine/src/
H A Dlinklist_impl.c131 if(list->head == NULL){
132 /* if list is empty, assign to head */
133 list->head = newnode;
134 (list->head)->next = NULL;
135 (list->head)->prev = NULL;
138 list->curr = list->head;
139 list->tail = list->head;
160 }else if(list->curr == list->head){
161 /* insert at head */
162 newnode->next = list->head;
[all...]
/external/chromium/net/base/
H A Daddress_list.h38 void Adopt(struct addrinfo* head);
41 // all linked struct addrinfos will be copied as well. Otherwise only the head
43 void Copy(const struct addrinfo* head, bool recursive);
45 // Appends a copy of |head| and all its linked addrinfos to the stored
47 void Append(const struct addrinfo* head);
74 // Get access to the head of the addrinfo list.
75 const struct addrinfo* head() const;
/external/javassist/src/main/javassist/compiler/ast/
H A DMethodDecl.java34 public Declarator getReturn() { return (Declarator)tail().head(); }
36 public ASTList getParams() { return (ASTList)sublist(2).head(); }
38 public ASTList getThrows() { return (ASTList)sublist(3).head(); }
40 public Stmnt getBody() { return (Stmnt)sublist(4).head(); }
H A DFieldDecl.java27 public Declarator getDeclarator() { return (Declarator)tail().head(); }
29 public ASTree getInit() { return (ASTree)sublist(2).head(); }
/external/webkit/Source/JavaScriptCore/runtime/
H A DStructureChain.h45 static StructureChain* create(JSGlobalData& globalData, Structure* head) { return new (&globalData) StructureChain(globalData, globalData.structureChainStructure.get(), head); } argument
46 WriteBarrier<Structure>* head() { return m_vector.get(); } function in class:JSC::StructureChain
52 StructureChain(JSGlobalData&, Structure*, Structure* head);
/external/webkit/Source/WebCore/inspector/
H A DScriptProfile.idl32 readonly attribute ScriptProfileNode head;
/external/chromium/third_party/libevent/
H A Devent-internal.h75 #define TAILQ_FIRST(head) ((head)->tqh_first)
76 #define TAILQ_END(head) NULL
78 #define TAILQ_FOREACH(var, head, field) \
79 for((var) = TAILQ_FIRST(head); \
80 (var) != TAILQ_END(head); \

Completed in 2827 milliseconds

1234567891011>>