Home
last modified time | relevance | path

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

12345678910>>...25

/third_party/harfbuzz/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()
69 enum mac_style_flag_t {
78 bool is_bold () const { return macStyle & BOLD; } in is_bold()
79 bool is_italic () const { return macStyle & ITALIC; } in is_italic()
80 bool is_condensed () const { return macStyle & CONDENSED; } in is_condensed()
82 bool sanitize (hb_sanitize_context_t *c) const in sanitize()
[all …]
/third_party/skia/third_party/externals/harfbuzz/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()
69 enum mac_style_flag_t {
79 bool is_bold () const { return macStyle & BOLD; } in is_bold()
80 bool is_italic () const { return macStyle & ITALIC; } in is_italic()
81 bool is_condensed () const { return macStyle & CONDENSED; } in is_condensed()
82 bool is_expanded () const { return macStyle & EXPANDED; } in is_expanded()
[all …]
/third_party/flutter/skia/third_party/externals/harfbuzz/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 enum mac_style_flag_t {
66 bool is_bold () const { return macStyle & BOLD; } in is_bold()
67 bool is_italic () const { return macStyle & ITALIC; } in is_italic()
68 bool is_condensed () const { return macStyle & CONDENSED; } in is_condensed()
70 bool sanitize (hb_sanitize_context_t *c) const in sanitize()
79 FixedVersion<>version; /* Version of the head table--currently
81 FixedVersion<>fontRevision; /* Set by font manufacturer. */
[all …]
/third_party/libcoap/include/coap3/
Dutlist.h314 #define LL_PREPEND(head,add) \ argument
317 #define LL_PREPEND2(head,add,next) \ argument
338 #define LL_APPEND(head,add) \ argument
341 #define LL_APPEND2(head,add,next) \ argument
354 #define LL_INSERT_INORDER(head,add,cmp) \ argument
357 #define LL_INSERT_INORDER2(head,add,cmp,next) \ argument
369 #define LL_LOWER_BOUND(head,elt,like,cmp) \ argument
372 #define LL_LOWER_BOUND2(head,elt,like,cmp,next) \ argument
385 #define LL_DELETE(head,del) \ argument
388 #define LL_DELETE2(head,del,next) \ argument
[all …]
Duthash.h139 #define HASH_ROLLBACK_BKT(hh, head, itemptrhh) \ argument
154 #define HASH_FIND_BYHASHVALUE(hh,head,keyptr,keylen,hashval,out) \ argument
166 #define HASH_FIND(hh,head,keyptr,keylen,out) \ argument
213 #define HASH_MAKE_TABLE(hh,head,oomed) \ argument
245 #define HASH_REPLACE_BYHASHVALUE_INORDER(hh,head,fieldname,keylen_in,hashval,add,replaced,cmpfcn) \ argument
255 #define HASH_REPLACE_BYHASHVALUE(hh,head,fieldname,keylen_in,hashval,add,replaced) \ argument
265 #define HASH_REPLACE(hh,head,fieldname,keylen_in,add,replaced) \ argument
272 #define HASH_REPLACE_INORDER(hh,head,fieldname,keylen_in,add,replaced,cmpfcn) \ argument
279 #define HASH_APPEND_LIST(hh, head, add) \ argument
287 #define HASH_AKBI_INNER_LOOP(hh,head,add,cmpfcn) \ argument
[all …]
/third_party/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, int 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 …]
/third_party/FreeBSD/sys/sys/
Dqueue.h132 #define QMD_TRACE_HEAD(head) do { \ argument
148 #define QMD_TRACE_HEAD(head) argument
189 #define SLIST_HEAD_INITIALIZER(head) \ argument
228 #define SLIST_EMPTY(head) ((head)->slh_first == NULL) argument
230 #define SLIST_FIRST(head) ((head)->slh_first) argument
232 #define SLIST_FOREACH(var, head, field) \ argument
237 #define SLIST_FOREACH_FROM(var, head, field) \ argument
242 #define SLIST_FOREACH_SAFE(var, head, field, tvar) \ argument
247 #define SLIST_FOREACH_FROM_SAFE(var, head, field, tvar) \ argument
252 #define SLIST_FOREACH_PREVPTR(var, varp, head, field) \ argument
[all …]
/third_party/exfat-utils/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 …]
/third_party/ltp/testcases/realtime/include/
Dlist.h99 static inline void list_add(struct list_head *new, struct list_head *head) in list_add()
112 static inline void list_add_tail(struct list_head *new, struct list_head *head) in list_add_tail()
158 static inline void list_move(struct list_head *list, struct list_head *head) in list_move()
170 struct list_head *head) in list_move_tail()
180 static inline int list_empty(const struct list_head *head) in list_empty()
197 static inline int list_empty_careful(const struct list_head *head) in list_empty_careful()
204 struct list_head *head) in __list_splice()
222 static inline void list_splice(struct list_head *list, struct list_head *head) in list_splice()
236 struct list_head *head) in list_splice_init()
271 #define list_for_each(pos, head) \ argument
[all …]
/third_party/uboot/u-boot-2020.01/include/linux/
Dlist.h61 static inline void list_add(struct list_head *new, struct list_head *head) in list_add()
74 static inline void list_add_tail(struct list_head *new, struct list_head *head) in list_add_tail()
143 static inline void list_move(struct list_head *list, struct list_head *head) in list_move()
155 struct list_head *head) in list_move_tail()
167 const struct list_head *head) in list_is_last()
176 static inline int list_empty(const struct list_head *head) in list_empty()
194 static inline int list_empty_careful(const struct list_head *head) in list_empty_careful()
204 static inline int list_is_singular(const struct list_head *head) in list_is_singular()
210 struct list_head *head, struct list_head *entry) in __list_cut_position()
236 struct list_head *head, struct list_head *entry) in list_cut_position()
[all …]
/third_party/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()
202 lws_buflist_describe(struct lws_buflist **head, void *id, const char *reason) in lws_buflist_describe()
/third_party/libnl/include/netlink/
Dlist.h40 struct nl_list_head *head) in nl_list_add_tail()
46 struct nl_list_head *head) in nl_list_add_head()
57 static inline int nl_list_empty(struct nl_list_head *head) in nl_list_empty()
69 #define nl_list_at_tail(pos, head, member) \ argument
72 #define nl_list_at_head(pos, head, member) \ argument
78 #define nl_list_first_entry(head, type, member) \ argument
81 #define nl_list_for_each_entry(pos, head, member) \ argument
86 #define nl_list_for_each_entry_safe(pos, n, head, member) \ argument
92 #define nl_init_list_head(head) \ argument
/third_party/quickjs/
Dlist.h42 static inline void init_list_head(struct list_head *head) in init_list_head()
59 static inline void list_add(struct list_head *el, struct list_head *head) in list_add()
65 static inline void list_add_tail(struct list_head *el, struct list_head *head) in list_add_tail()
86 #define list_for_each(el, head) \ argument
89 #define list_for_each_safe(el, el1, head) \ argument
93 #define list_for_each_prev(el, head) \ argument
96 #define list_for_each_prev_safe(el, el1, head) \ argument
/third_party/FreeBSD/sys/compat/linuxkpi/common/include/linux/
Dlist.h70 list_empty(const struct list_head *head) in list_empty()
77 list_empty_careful(const struct list_head *head) in list_empty_careful()
160 #define list_for_each(p, head) \ argument
163 #define list_for_each_safe(p, n, head) \ argument
183 #define list_for_each_entry_safe_from(pos, n, head, member) \ argument
208 list_add(struct list_head *new, struct list_head *head) in list_add()
215 list_add_tail(struct list_head *new, struct list_head *head) in list_add_tail()
222 list_move(struct list_head *list, struct list_head *head) in list_move()
230 list_move_tail(struct list_head *entry, struct list_head *head) in list_move_tail()
238 list_bulk_move_tail(struct list_head *head, struct list_head *first, in list_bulk_move_tail()
[all …]
/third_party/eudev/src/shared/
Dlist.h34 #define LIST_HEAD_INIT(head) \ argument
48 #define LIST_PREPEND(name,head,item) \ argument
59 #define LIST_REMOVE(name,head,item) \ argument
75 #define LIST_FIND_HEAD(name,item,head) \ argument
101 #define LIST_INSERT_AFTER(name,head,a,b) \ argument
121 #define LIST_FOREACH(name,i,head) \ argument
124 #define LIST_FOREACH_SAFE(name,i,n,head) \ argument
135 #define LIST_LOOP_BUT_ONE(name,i,head,p) \ argument
/third_party/pulseaudio/src/pulsecore/
Dllist.h51 #define PA_LLIST_PREPEND(t,head,item) \ argument
62 #define PA_LLIST_REMOVE(t,head,item) \ argument
78 #define PA_LLIST_FIND_HEAD(t,item,head) \ argument
88 #define PA_LLIST_INSERT_AFTER(t,head,a,b) \ argument
105 #define PA_LLIST_FOREACH(i,head) \ argument
108 #define PA_LLIST_FOREACH_SAFE(i,n,head) \ argument
/third_party/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 …]
/third_party/e2fsprogs/lib/blkid/
Dlist.h66 _INLINE_ void list_add(struct list_head *add, struct list_head *head) in list_add()
79 _INLINE_ void list_add_tail(struct list_head *add, struct list_head *head) in list_add_tail()
124 _INLINE_ int list_empty(struct list_head *head) in list_empty()
134 _INLINE_ void list_splice(struct list_head *list, struct list_head *head) in list_splice()
164 #define list_for_each(pos, head) \ argument
174 #define list_for_each_safe(pos, pnext, head) \ argument
/third_party/ntfs-3g/ntfsprogs/
Dlist.h77 struct ntfs_list_head *head) in ntfs_list_add()
91 struct ntfs_list_head *head) in ntfs_list_add_tail()
139 static __inline__ int ntfs_list_empty(struct ntfs_list_head *head) in ntfs_list_empty()
150 struct ntfs_list_head *head) in ntfs_list_splice()
180 #define ntfs_list_for_each(pos, head) \ argument
189 #define ntfs_list_for_each_safe(pos, n, head) \ argument
/third_party/libxkbcommon/src/
Dutil-list.h54 #define list_first_entry(head, pos, member) \ argument
57 #define list_last_entry(head, pos, member) \ argument
60 #define list_for_each(pos, head, member) \ argument
65 #define list_for_each_safe(pos, tmp, head, member) \ argument
/third_party/e2fsprogs/lib/ext2fs/
Dkernel-list.h47 static __inline__ void list_add(struct list_head *new, struct list_head *head) in list_add()
55 static __inline__ void list_add_tail(struct list_head *new, struct list_head *head) in list_add_tail()
79 static __inline__ int list_empty(struct list_head *head) in list_empty()
87 static __inline__ void list_splice(struct list_head *list, struct list_head *head) in list_splice()
106 #define list_for_each(pos, head) \ argument
/third_party/libuv/include/uv/
Dtree.h84 #define SPLAY_ROOT(head) (head)->sph_root argument
85 #define SPLAY_EMPTY(head) (SPLAY_ROOT(head) == NULL) argument
88 #define SPLAY_ROTATE_RIGHT(head, tmp, field) do { \ argument
94 #define SPLAY_ROTATE_LEFT(head, tmp, field) do { \ argument
100 #define SPLAY_LINKLEFT(head, tmp, field) do { \ argument
106 #define SPLAY_LINKRIGHT(head, tmp, field) do { \ argument
112 #define SPLAY_ASSEMBLE(head, node, left, right, field) do { \ argument
292 #define SPLAY_FOREACH(x, name, head) \ argument
324 #define RB_ROOT(head) (head)->rbh_root argument
325 #define RB_EMPTY(head) (RB_ROOT(head) == NULL) argument
[all …]
/third_party/boost/boost/preprocessor/list/
Dadt.hpp24 # define BOOST_PP_LIST_CONS(head, tail) (head, tail) argument
40 # define BOOST_PP_LIST_FIRST_I(head, tail) head argument
52 # define BOOST_PP_LIST_REST_I(head, tail) tail argument
59 # define BOOST_PP_LIST_IS_CONS_(head, tail) 1 argument
/third_party/libinput/src/
Dutil-list.h53 #define list_first_entry(head, pos, member) \ argument
56 #define list_for_each(pos, head, member) \ argument
61 #define list_for_each_safe(pos, tmp, head, member) \ argument
/third_party/node/deps/cares/src/lib/
Dares_freeaddrinfo.c27 void ares__freeaddrinfo_cnames(struct ares_addrinfo_cname *head) in ares__freeaddrinfo_cnames()
40 void ares__freeaddrinfo_nodes(struct ares_addrinfo_node *head) in ares__freeaddrinfo_nodes()

12345678910>>...25