Searched defs:head (Results 51 - 75 of 455) sorted by relevance

1234567891011>>

/external/linux-tools-perf/perf-3.12.0/tools/perf/util/
H A Dvdso.c92 struct dso *vdso__dso_findnew(struct list_head *head) argument
94 struct dso *dso = dsos__find(head, VDSO__MAP_NAME, true);
105 dsos__add(head, dso);
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_ringbuffer.c17 unsigned head; member in struct:util_ringbuffer
61 return (ring->tail - (ring->head + 1)) & ring->mask;
98 ring->buf[ring->head] = packet[i];
99 ring->head++;
100 ring->head &= ring->mask;
/external/skia/src/core/
H A DSkTInternalSList.h59 * Push an item onto the head of the list.
85 * Pop an item from the head of the list.
100 T* head() const { function in class:SkTInternalSList
/external/chromium_org/native_client_sdk/src/libraries/xray/
H A Dstringpool.c28 struct XRayStringPoolNode* head; member in struct:XRayStringPool
76 pool->head = XRayStringPoolAllocNode();
77 pool->current = pool->head;
84 struct XRayStringPoolNode* n = pool->head;
/external/chromium_org/net/base/
H A Daddress_list.cc61 AddressList AddressList::CreateFromAddrinfo(const struct addrinfo* head) { argument
62 DCHECK(head);
64 if (head->ai_canonname)
65 list.set_canonical_name(std::string(head->ai_canonname));
66 for (const struct addrinfo* ai = head; ai; ai = ai->ai_next) {
/external/chromium_org/net/cert/
H A Dnss_profile_filter_chromeos_unittest.cc25 SECMODModuleList* head = SECMOD_GetDefaultModuleList(); local
26 for (SECMODModuleList* item = head; item != NULL; item = item->next) {
/external/chromium_org/net/websockets/
H A Dwebsocket_extension_parser.cc79 const char* head = current_; local
83 if (current_ == head) {
87 *token = base::StringPiece(head, current_ - head);
125 const char* head = current_; local
129 current_ = head;
136 const char* head = current_; local
140 current_ = head;
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DMediaDocument.cpp83 RefPtrWillBeRawPtr<HTMLHeadElement> head = HTMLHeadElement::create(*document()); local
87 head->appendChild(meta.release());
105 rootElement->appendChild(head.release());
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DDoublyLinkedList.h77 T* head() const;
116 template<typename T> inline T* DoublyLinkedList<T>::head() const function in class:WTF::DoublyLinkedList
183 T* node = head();
/external/chromium_org/third_party/boringssl/src/crypto/lhash/
H A Dlhash_test.c30 struct dummy_lhash_node *head; member in struct:dummy_lhash
36 for (cur = lh->head; cur != NULL; cur = next) {
47 for (cur = lh->head; cur != NULL; cur = cur->next) {
57 for (cur = lh->head; cur != NULL; cur = cur->next) {
69 for (cur = lh->head; cur != NULL; cur = cur->next) {
80 node->next = lh->head;
81 lh->head = node;
89 next_ptr = &lh->head;
90 for (cur = lh->head; cur != NULL; cur = cur->next) {
/external/chromium_org/third_party/harfbuzz-ng/src/
H A Dhb-ot-head-table.hh39 * head -- Font Header
44 struct head struct in namespace:OT
50 /* If no valid head table found, assume 1000, which matches typical Type1 usage. */
60 FixedVersion version; /* Version of the head table--currently
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nouveau/
H A Dnouveau_screen.h31 struct nouveau_fence *head; member in struct:nouveau_screen::__anon13818
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/
H A Dsvga_resource_buffer.h176 * Linked list head, used to gather all buffers with pending dma uploads on
179 struct list_head head; member in struct:svga_buffer
H A Dsvga_screen_cache.h77 struct list_head head; member in struct:svga_host_surface_cache_entry
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/dri/common/
H A Ddri_drawable.h64 unsigned int head; member in struct:dri_drawable
/external/chromium_org/third_party/skia/src/core/
H A DSkRegionPriv.h68 RunHead* head = (RunHead*)sk_malloc_throw(sizeof(RunHead) + count * sizeof(RunType)); local
69 head->fRefCnt = 1;
70 head->fRunCount = count;
72 head->fYSpanCount = 0;
73 head->fIntervalCount = 0;
74 return head;
81 RunHead* head = Alloc(count); local
82 head->fYSpanCount = yspancount;
83 head->fIntervalCount = intervalCount;
84 return head;
[all...]
/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Dcentral_freelist.h87 void *head; // Head of chain of objects. member in struct:tcmalloc::CentralFreeList::TCEntry
/external/chromium_org/third_party/tcmalloc/vendor/src/
H A Dcentral_freelist.h87 void *head; // Head of chain of objects. member in struct:tcmalloc::CentralFreeList::TCEntry
/external/chromium_org/tools/json_to_struct/
H A Djson_to_struct.py83 def _GenerateH(basepath, fileroot, head, namespace, schema, description):
91 head: The string to output as the header of the .h file.
100 f.write(head)
136 def _GenerateCC(basepath, fileroot, head, namespace, schema, description):
144 head: The string to output as the header of the .cc file.
152 f.write(head)
209 head = HEAD % (datetime.now().year, opts.schema, description_filename) variable
210 _GenerateH(basepath, output_root, head, opts.namespace, schema, description)
211 _GenerateCC(basepath, output_root, head, opts.namespace, schema, description)
/external/e2fsprogs/lib/blkid/
H A Dlist.h53 * @head: list head to add it after
55 * Insert a new entry after the specified head.
58 _INLINE_ void list_add(struct list_head *add, struct list_head *head) argument
60 __list_add(add, head, head->next);
66 * @head: list head to add it before
68 * Insert a new entry before the specified head.
71 _INLINE_ void list_add_tail(struct list_head *add, struct list_head *head) argument
116 list_empty(struct list_head *head) argument
126 list_splice(struct list_head *list, struct list_head *head) argument
[all...]
/external/e2fsprogs/lib/ext2fs/
H A Dkernel-list.h45 * Insert a new entry after the specified head..
47 static __inline__ void list_add(struct list_head *new, struct list_head *head) argument
49 __list_add(new, head, head->next);
55 static __inline__ void list_add_tail(struct list_head *new, struct list_head *head) argument
57 __list_add(new, head->prev, head);
79 static __inline__ int list_empty(struct list_head *head) argument
81 return head->next == head;
87 list_splice(struct list_head *list, struct list_head *head) argument
[all...]
/external/f2fs-tools/include/
H A Dlist.h38 static inline void list_add(struct list_head *new, struct list_head *head) argument
40 __list_add(new, head, head->next);
43 static inline void list_add_tail(struct list_head *new, struct list_head *head) argument
45 __list_add(new, head->prev, head);
66 static inline int list_empty(const struct list_head *head) argument
68 return head->next == head;
74 #define list_for_each(pos, head) \
[all...]
/external/fio/
H A Dflist.h59 * @head: list head to add it after
61 * Insert a new entry after the specified head.
65 struct flist_head *head)
67 __flist_add(new_entry, head, head->next);
71 struct flist_head *head)
73 __flist_add(new_entry, head->prev, head);
115 * @head
64 flist_add(struct flist_head *new_entry, struct flist_head *head) argument
70 flist_add_tail(struct flist_head *new_entry, struct flist_head *head) argument
117 flist_empty(const struct flist_head *head) argument
136 flist_splice(const struct flist_head *list, struct flist_head *head) argument
143 flist_splice_init(struct flist_head *list, struct flist_head *head) argument
[all...]
/external/glide/library/src/main/java/com/bumptech/glide/load/engine/bitmap_recycle/
H A DGroupedLinkedMap.java18 private final LinkedEntry<K, V> head = new LinkedEntry<K, V>(); field in class:GroupedLinkedMap
50 LinkedEntry<K, V> last = head.prev;
52 while (last != head) {
75 LinkedEntry<K, V> current = head.next;
77 while (current != head) {
91 entry.prev = head;
92 entry.next = head.next;
99 entry.prev = head.prev;
100 entry.next = head;
/external/harfbuzz_ng/src/
H A Dhb-ot-head-table.hh39 * head -- Font Header
44 struct head struct in namespace:OT
50 /* If no valid head table found, assume 1000, which matches typical Type1 usage. */
60 FixedVersion version; /* Version of the head table--currently

Completed in 6049 milliseconds

1234567891011>>