Home
last modified time | relevance | path

Searched defs:head (Results 1 – 25 of 1090) sorted by relevance

12345678910>>...44

/external/harfbuzz_ng/src/
Dhb-ot-head-table.hh44 struct head struct
48 static constexpr hb_tag_t tableTag = HB_OT_TAG_head;
50 unsigned int get_upem () const in get_upem()
57 bool serialize (hb_serialize_context_t *c) const in serialize()
63 bool subset (hb_subset_context_t *c) const in subset()
87 enum mac_style_flag_t {
97 bool is_bold () const { return macStyle & BOLD; } in is_bold()
98 bool is_italic () const { return macStyle & ITALIC; } in is_italic()
99 bool is_condensed () const { return macStyle & CONDENSED; } in is_condensed()
100 bool is_expanded () const { return macStyle & EXPANDED; } in is_expanded()
[all …]
/external/coreboot/payloads/libpayload/include/
Dqueue.h99 #define SLIST_HEAD_INITIALIZER(head) \ argument
110 #define SLIST_FIRST(head) ((head)->slh_first) argument
111 #define SLIST_END(head) NULL argument
112 #define SLIST_EMPTY(head) (SLIST_FIRST(head) == SLIST_END(head)) argument
115 #define SLIST_FOREACH(var, head, field) \ argument
120 #define SLIST_FOREACH_SAFE(var, head, field, tvar) \ argument
128 #define SLIST_INIT(head) { \ argument
137 #define SLIST_INSERT_HEAD(head, elm, field) do { \ argument
146 #define SLIST_REMOVE_HEAD(head, field) do { \ argument
150 #define SLIST_REMOVE(head, elm, type, field) do { \ argument
[all …]
/external/libevent/compat/sys/
Dqueue.h93 #define SLIST_HEAD_INITIALIZER(head) \ argument
106 #define SLIST_FIRST(head) ((head)->slh_first) argument
107 #define SLIST_END(head) NULL argument
108 #define SLIST_EMPTY(head) (SLIST_FIRST(head) == SLIST_END(head)) argument
111 #define SLIST_FOREACH(var, head, field) \ argument
119 #define SLIST_INIT(head) { \ argument
128 #define SLIST_INSERT_HEAD(head, elm, field) do { \ argument
133 #define SLIST_REMOVE_HEAD(head, field) do { \ argument
145 #define LIST_HEAD_INITIALIZER(head) \ argument
157 #define LIST_FIRST(head) ((head)->lh_first) argument
[all …]
/external/iperf3/src/
Dqueue.h99 #define SLIST_HEAD_INITIALIZER(head) \ argument
110 #define SLIST_FIRST(head) ((head)->slh_first) argument
111 #define SLIST_END(head) NULL argument
112 #define SLIST_EMPTY(head) (SLIST_FIRST(head) == SLIST_END(head)) argument
115 #define SLIST_FOREACH(var, head, field) \ argument
120 #define SLIST_FOREACH_PREVPTR(var, varp, head, field) \ argument
128 #define SLIST_INIT(head) { \ argument
137 #define SLIST_INSERT_HEAD(head, elm, field) do { \ argument
142 #define SLIST_REMOVE_NEXT(head, elm, field) do { \ argument
146 #define SLIST_REMOVE_HEAD(head, field) do { \ argument
[all …]
/external/openthread/third_party/tcplp/bsdtcp/sys/
Dqueue.h126 #define QMD_TRACE_HEAD(head) do { \ argument
142 #define QMD_TRACE_HEAD(head) argument
171 #define SLIST_HEAD_INITIALIZER(head) \ argument
187 #define SLIST_EMPTY(head) ((head)->slh_first == NULL) argument
189 #define SLIST_FIRST(head) ((head)->slh_first) argument
191 #define SLIST_FOREACH(var, head, field) \ argument
196 #define SLIST_FOREACH_FROM(var, head, field) \ argument
201 #define SLIST_FOREACH_SAFE(var, head, field, tvar) \ argument
206 #define SLIST_FOREACH_FROM_SAFE(var, head, field, tvar) \ argument
211 #define SLIST_FOREACH_PREVPTR(var, varp, head, field) \ argument
[all …]
/external/wmediumd/wmediumd/
Dlist.h88 static inline void list_add(struct list_head *new_elem, struct list_head *head) in list_add()
102 static inline void list_add_tail(struct list_head *new_elem, struct list_head *head) in list_add_tail()
217 static inline void list_move(struct list_head *list, struct list_head *head) in list_move()
229 struct list_head *head) in list_move_tail()
244 static inline void list_bulk_move_tail(struct list_head *head, in list_bulk_move_tail()
264 const struct list_head *head) in list_is_first()
275 const struct list_head *head) in list_is_last()
284 static inline int list_empty(const struct list_head *head) in list_empty()
302 static inline int list_empty_careful(const struct list_head *head) in list_empty_careful()
312 static inline void list_rotate_left(struct list_head *head) in list_rotate_left()
[all …]
/external/ltp/testcases/realtime/include/
Dlist.h101 static inline void list_add(struct list_head *new, struct list_head *head) in list_add()
114 static inline void list_add_tail(struct list_head *new, struct list_head *head) in list_add_tail()
160 static inline void list_move(struct list_head *list, struct list_head *head) in list_move()
172 struct list_head *head) in list_move_tail()
182 static inline int list_empty(const struct list_head *head) in list_empty()
199 static inline int list_empty_careful(const struct list_head *head) in list_empty_careful()
206 struct list_head *head) in __list_splice()
224 static inline void list_splice(struct list_head *list, struct list_head *head) in list_splice()
238 struct list_head *head) in list_splice_init()
272 #define list_for_each(pos, head) \ argument
[all …]
/external/cronet/stable/third_party/llvm-libc/src/include/llvm-libc-macros/
Dsys-queue-macros.h33 #define SLIST_HEAD_INITIALIZER(head) \ argument
48 #define SLIST_EMPTY(head) ((head)->slh_first == NULL) argument
49 #define SLIST_FIRST(head) ((head)->slh_first) argument
52 #define SLIST_FOREACH(var, head, field) \ argument
55 #define SLIST_FOREACH_FROM(var, head, field) \ argument
60 #define SLIST_FOREACH_SAFE(var, head, field, tvar) \ argument
64 #define SLIST_FOREACH_FROM_SAFE(var, head, field, tvar) \ argument
85 #define SLIST_INIT(head) \ argument
96 #define SLIST_INSERT_HEAD(head, elem, field) \ argument
102 #define SLIST_REMOVE(head, elem, type, field) \ argument
[all …]
/external/llvm-libc/include/llvm-libc-macros/
Dsys-queue-macros.h33 #define SLIST_HEAD_INITIALIZER(head) \ argument
48 #define SLIST_EMPTY(head) ((head)->slh_first == NULL) argument
49 #define SLIST_FIRST(head) ((head)->slh_first) argument
52 #define SLIST_FOREACH(var, head, field) \ argument
55 #define SLIST_FOREACH_FROM(var, head, field) \ argument
60 #define SLIST_FOREACH_SAFE(var, head, field, tvar) \ argument
64 #define SLIST_FOREACH_FROM_SAFE(var, head, field, tvar) \ argument
85 #define SLIST_INIT(head) \ argument
96 #define SLIST_INSERT_HEAD(head, elem, field) \ argument
102 #define SLIST_REMOVE(head, elem, type, field) \ argument
[all …]
/external/cronet/tot/third_party/llvm-libc/src/include/llvm-libc-macros/
Dsys-queue-macros.h33 #define SLIST_HEAD_INITIALIZER(head) \ argument
48 #define SLIST_EMPTY(head) ((head)->slh_first == NULL) argument
49 #define SLIST_FIRST(head) ((head)->slh_first) argument
52 #define SLIST_FOREACH(var, head, field) \ argument
55 #define SLIST_FOREACH_FROM(var, head, field) \ argument
60 #define SLIST_FOREACH_SAFE(var, head, field, tvar) \ argument
64 #define SLIST_FOREACH_FROM_SAFE(var, head, field, tvar) \ argument
85 #define SLIST_INIT(head) \ argument
96 #define SLIST_INSERT_HEAD(head, elem, field) \ argument
102 #define SLIST_REMOVE(head, elem, type, field) \ argument
[all …]
/external/blktrace/iowatcher/
Dlist.h94 static inline void list_add(struct list_head *new, struct list_head *head) in list_add()
111 static inline void list_add_tail(struct list_head *new, struct list_head *head) in list_add_tail()
182 static inline void list_move(struct list_head *list, struct list_head *head) in list_move()
194 struct list_head *head) in list_move_tail()
206 const struct list_head *head) in list_is_last()
215 static inline int list_empty(const struct list_head *head) in list_empty()
233 static inline int list_empty_careful(const struct list_head *head) in list_empty_careful()
240 struct list_head *head) in __list_splice()
258 static inline void list_splice(struct list_head *list, struct list_head *head) in list_splice()
272 struct list_head *head) in list_splice_init()
[all …]
/external/exfatprogs/include/
Dlist.h69 static inline void list_add(struct list_head *new, struct list_head *head) in list_add()
82 static inline void list_add_tail(struct list_head *new, struct list_head *head) in list_add_tail()
128 static inline void list_move(struct list_head *list, struct list_head *head) in list_move()
140 struct list_head *head) in list_move_tail()
150 static inline int list_empty(const struct list_head *head) in list_empty()
156 struct list_head *head) in __list_splice()
174 static inline void list_splice(struct list_head *list, struct list_head *head) in list_splice()
188 struct list_head *head) in list_splice_init()
211 #define list_for_each(pos, head) \ argument
225 #define __list_for_each(pos, head) \ argument
[all …]
/external/libwebsockets/lib/misc/lwsac/
Dlwsac.c29 lws_list_ptr_insert(lws_list_ptr *head, lws_list_ptr *add, in lws_list_ptr_insert()
73 lwsac_extend(struct lwsac *head, size_t amount) in lwsac_extend()
96 _lwsac_use(struct lwsac **head, size_t ensure, size_t chunk_size, char backfill) in _lwsac_use()
202 lwsac_use(struct lwsac **head, size_t ensure, size_t chunk_size) in lwsac_use()
208 lwsac_use_backfill(struct lwsac **head, size_t ensure, size_t chunk_size) in lwsac_use_backfill()
214 lwsac_scan_extant(struct lwsac *head, uint8_t *find, size_t len, int nul) in lwsac_scan_extant()
237 lwsac_total_overhead(struct lwsac *head) in lwsac_total_overhead()
251 lwsac_use_zero(struct lwsac **head, size_t ensure, size_t chunk_size) in lwsac_use_zero()
262 lwsac_free(struct lwsac **head) in lwsac_free()
278 lwsac_info(struct lwsac *head) in lwsac_info()
[all …]
/external/libnfnetlink/include/
Dlinux_list.h94 static inline void list_add(struct list_head *new, struct list_head *head) in list_add()
107 static inline void list_add_tail(struct list_head *new, struct list_head *head) in list_add_tail()
144 static inline void list_add_rcu(struct list_head *new, struct list_head *head) in list_add_rcu()
166 struct list_head *head) in list_add_tail_rcu()
242 static inline void list_move(struct list_head *list, struct list_head *head) in list_move()
254 struct list_head *head) in list_move_tail()
264 static inline int list_empty(const struct list_head *head) in list_empty()
281 static inline int list_empty_careful(const struct list_head *head) in list_empty_careful()
288 struct list_head *head) in __list_splice()
306 static inline void list_splice(struct list_head *list, struct list_head *head) in list_splice()
[all …]
/external/libnetfilter_conntrack/include/internal/
Dlinux_list.h95 static inline void list_add(struct list_head *new, struct list_head *head) in list_add()
108 static inline void list_add_tail(struct list_head *new, struct list_head *head) in list_add_tail()
145 static inline void list_add_rcu(struct list_head *new, struct list_head *head) in list_add_rcu()
167 struct list_head *head) in list_add_tail_rcu()
243 static inline void list_move(struct list_head *list, struct list_head *head) in list_move()
255 struct list_head *head) in list_move_tail()
265 static inline int list_empty(const struct list_head *head) in list_empty()
282 static inline int list_empty_careful(const struct list_head *head) in list_empty_careful()
289 struct list_head *head) in __list_splice()
307 static inline void list_splice(struct list_head *list, struct list_head *head) in list_splice()
[all …]
/external/iptables/libiptc/
Dlinux_list.h90 static inline void list_add(struct list_head *new, struct list_head *head) in list_add()
103 static inline void list_add_tail(struct list_head *new, struct list_head *head) in list_add_tail()
140 static inline void list_add_rcu(struct list_head *new, struct list_head *head) in list_add_rcu()
162 struct list_head *head) in list_add_tail_rcu()
238 static inline void list_move(struct list_head *list, struct list_head *head) in list_move()
250 struct list_head *head) in list_move_tail()
260 static inline int list_empty(const struct list_head *head) in list_empty()
277 static inline int list_empty_careful(const struct list_head *head) in list_empty_careful()
284 struct list_head *head) in __list_splice()
302 static inline void list_splice(struct list_head *list, struct list_head *head) in list_splice()
[all …]
/external/libwebsockets/lib/core/
Dbuflist.c34 lws_buflist_append_segment(struct lws_buflist **head, const uint8_t *buf, in lws_buflist_append_segment()
83 lws_buflist_destroy_segment(struct lws_buflist **head) in lws_buflist_destroy_segment()
97 lws_buflist_destroy_all_segments(struct lws_buflist **head) in lws_buflist_destroy_all_segments()
112 lws_buflist_next_segment_len(struct lws_buflist **head, uint8_t **buf) in lws_buflist_next_segment_len()
139 lws_buflist_use_segment(struct lws_buflist **head, size_t len) in lws_buflist_use_segment()
162 lws_buflist_total_len(struct lws_buflist **head) in lws_buflist_total_len()
176 lws_buflist_linear_copy(struct lws_buflist **head, size_t ofs, uint8_t *buf, in lws_buflist_linear_copy()
201 lws_buflist_linear_use(struct lws_buflist **head, uint8_t *buf, size_t len) in lws_buflist_linear_use()
221 lws_buflist_fragment_use(struct lws_buflist **head, uint8_t *buf, in lws_buflist_fragment_use()
250 lws_buflist_describe(struct lws_buflist **head, void *id, const char *reason) in lws_buflist_describe()
/external/libevent/
Dht-internal.h41 #define HT_EMPTY(head) \ argument
45 #define HT_SIZE(head) \ argument
49 #define HT_MEM_USAGE(head) \ argument
52 #define HT_FIND(name, head, elm) name##_HT_FIND((head), (elm)) argument
53 #define HT_INSERT(name, head, elm) name##_HT_INSERT((head), (elm)) argument
54 #define HT_REPLACE(name, head, elm) name##_HT_REPLACE((head), (elm)) argument
55 #define HT_REMOVE(name, head, elm) name##_HT_REMOVE((head), (elm)) argument
56 #define HT_START(name, head) name##_HT_START(head) argument
57 #define HT_NEXT(name, head, elm) name##_HT_NEXT((head), (elm)) argument
58 #define HT_NEXT_RMV(name, head, elm) name##_HT_NEXT_RMV((head), (elm)) argument
[all …]
/external/libnl/include/netlink/
Dlist.h38 struct nl_list_head *head) in nl_list_add_tail()
44 struct nl_list_head *head) in nl_list_add_head()
55 static inline int nl_list_empty(struct nl_list_head *head) in nl_list_empty()
67 #define nl_list_at_tail(pos, head, member) \ argument
70 #define nl_list_at_head(pos, head, member) \ argument
76 #define nl_list_first_entry(head, type, member) \ argument
79 #define nl_list_for_each_entry(pos, head, member) \ argument
84 #define nl_list_for_each_entry_safe(pos, n, head, member) \ argument
90 #define nl_init_list_head(head) \ argument
/external/libdrm/intel/
Duthash.h119 #define HASH_FIND_BYHASHVALUE(hh,head,keyptr,keylen,hashval,out) \ argument
131 #define HASH_FIND(hh,head,keyptr,keylen,out) \ argument
172 #define HASH_MAKE_TABLE(hh,head) \ argument
191 #define HASH_REPLACE_BYHASHVALUE_INORDER(hh,head,fieldname,keylen_in,hashval,add,replaced,cmpfcn) \ argument
201 #define HASH_REPLACE_BYHASHVALUE(hh,head,fieldname,keylen_in,hashval,add,replaced) \ argument
211 #define HASH_REPLACE(hh,head,fieldname,keylen_in,add,replaced) \ argument
218 #define HASH_REPLACE_INORDER(hh,head,fieldname,keylen_in,add,replaced,cmpfcn) \ argument
225 #define HASH_APPEND_LIST(hh, head, add) \ argument
233 #define HASH_ADD_KEYPTR_BYHASHVALUE_INORDER(hh,head,keyptr,keylen_in,hashval,add,cmpfcn) \ argument
271 #define HASH_ADD_KEYPTR_INORDER(hh,head,keyptr,keylen_in,add,cmpfcn) \ argument
[all …]
/external/python/cpython3/Include/internal/
Dpycore_llist.h43 #define llist_for_each(node, head) \ argument
47 #define llist_for_each_safe(node, head) \ argument
51 #define LLIST_INIT(head) { &head, &head } argument
54 llist_init(struct llist_node *head) in llist_init()
62 llist_empty(struct llist_node *head) in llist_empty()
69 llist_insert_tail(struct llist_node *head, struct llist_node *node) in llist_insert_tail()
/external/jemalloc_new/test/unit/
Dql.c17 test_empty_list(list_head_t *head) { in test_empty_list()
39 list_head_t head; in TEST_BEGIN() local
57 test_entries_list(list_head_t *head, list_t *entries, unsigned nentries) { in test_entries_list()
93 list_head_t head; in TEST_BEGIN() local
108 list_head_t head; in TEST_BEGIN() local
127 list_head_t head; in TEST_BEGIN() local
142 list_head_t head; in TEST_BEGIN() local
161 list_head_t head; in TEST_BEGIN() local
/external/erofs-utils/include/erofs/
Dlist.h45 static inline void list_add(struct list_head *entry, struct list_head *head) in list_add()
51 struct list_head *head) in list_add_tail()
68 static inline int list_empty(struct list_head *head) in list_empty()
87 struct list_head *head) in list_splice_tail()
107 #define list_for_each(pos, head) \ argument
110 #define list_for_each_safe(pos, n, head) \ argument
114 #define list_for_each_entry(pos, head, member) \ argument
119 #define list_for_each_entry_reverse(pos, head, member) \ argument
124 #define list_for_each_entry_from(pos, head, member) \ argument
127 #define list_for_each_entry_safe(pos, n, head, member) \ argument
/external/blktrace/btt/
Dlist.h73 static inline void list_add(struct list_head *new, struct list_head *head) in list_add()
86 static inline void list_add_tail(struct list_head *new, struct list_head *head) in list_add_tail()
127 #define __list_for_each(pos, head) \ argument
136 #define list_for_each_safe(pos, n, head) \ argument
165 static inline int list_empty(const struct list_head *head) in list_empty()
174 static inline struct list_head *list_first(const struct list_head *head) in list_first()
185 struct list_head *head) in list_move_tail()
192 struct list_head *head) in __list_splice()
210 static inline void list_splice(struct list_head *list, struct list_head *head) in list_splice()
/external/intel-media-driver/media_softlet/linux/common/os/
Dlist.h175 #define LIST_FOR_EACH_ENTRY(pos, head, member) \ argument
180 #define LIST_FOR_EACH_ENTRY_SAFE(pos, storage, head, member) \ argument
186 #define LIST_FOR_EACH_ENTRY_SAFE_REV(pos, storage, head, member) \ argument
192 #define LIST_FOR_EACH_ENTRY_FROM(pos, start, head, member) \ argument
197 #define LIST_FOR_EACH_ENTRY_FROM_REV(pos, start, head, member) \ argument
202 #define list_for_each_entry(type, pos, head, member) \ argument
209 #define list_for_each_entry_safe(type, pos, head, member) \ argument
216 #define list_for_each_entry_rev(type, pos, head, member) \ argument
223 #define list_for_each_entry_safe_rev(type, pos, head, member) \ argument
230 #define list_for_each_entry_from(type, pos, start, head, member) \ argument
[all …]

12345678910>>...44