Home
last modified time | relevance | path

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

12345678910>>...20

/external/chromium_org/third_party/harfbuzz-ng/src/
Dhb-ot-head-table.hh44 struct head struct
46 static const hb_tag_t tableTag = HB_OT_TAG_head;
48 inline unsigned int get_upem (void) const { in get_upem()
54 inline bool sanitize (hb_sanitize_context_t *c) { in sanitize()
60 FixedVersion version; /* Version of the head table--currently
62 FixedVersion fontRevision; /* Set by font manufacturer. */
63 ULONG checkSumAdjustment; /* To compute: set it to 0, sum the
66 ULONG magicNumber; /* Set to 0x5F0F3CF5u. */
67 USHORT flags; /* Bit 0: Baseline for font at y=0;
113 USHORT unitsPerEm; /* Valid range is from 16 to 16384. This value
[all …]
/external/harfbuzz_ng/src/
Dhb-ot-head-table.hh44 struct head struct
46 static const hb_tag_t tableTag = HB_OT_TAG_head;
48 inline unsigned int get_upem (void) const { in get_upem()
54 inline bool sanitize (hb_sanitize_context_t *c) { in sanitize()
60 FixedVersion version; /* Version of the head table--currently
62 FixedVersion fontRevision; /* Set by font manufacturer. */
63 ULONG checkSumAdjustment; /* To compute: set it to 0, sum the
66 ULONG magicNumber; /* Set to 0x5F0F3CF5u. */
67 USHORT flags; /* Bit 0: Baseline for font at y=0;
113 USHORT unitsPerEm; /* Valid range is from 16 to 16384. This value
[all …]
/external/chromium_org/third_party/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/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
Dcompat-queue.h112 #define SLIST_HEAD_INITIALIZER(head) \ argument
123 #define SLIST_EMPTY(head) ((head)->slh_first == NULL) argument
125 #define SLIST_FIRST(head) ((head)->slh_first) argument
127 #define SLIST_FOREACH(var, head, field) \ argument
132 #define SLIST_FOREACH_SAFE(var, head, field, tvar) \ argument
137 #define SLIST_FOREACH_PREVPTR(var, varp, head, field) \ argument
142 #define SLIST_INIT(head) do { \ argument
151 #define SLIST_INSERT_HEAD(head, elm, field) do { \ argument
158 #define SLIST_REMOVE(head, elm, type, field) do { \ argument
171 #define SLIST_REMOVE_HEAD(head, field) do { \ argument
[all …]
/external/ipsec-tools/src/include-glibc/sys/
Dqueue.h114 #define SLIST_HEAD_INITIALIZER(head) \ argument
125 #define SLIST_EMPTY(head) ((head)->slh_first == NULL) argument
127 #define SLIST_FIRST(head) ((head)->slh_first) argument
129 #define SLIST_FOREACH(var, head, field) \ argument
134 #define SLIST_INIT(head) do { \ argument
143 #define SLIST_INSERT_HEAD(head, elm, field) do { \ argument
150 #define SLIST_REMOVE(head, elm, type, field) do { \ argument
163 #define SLIST_REMOVE_HEAD(head, field) do { \ argument
176 #define STAILQ_HEAD_INITIALIZER(head) \ argument
187 #define STAILQ_EMPTY(head) ((head)->stqh_first == NULL) argument
[all …]
/external/qemu/include/qemu/
Dqueue.h91 #define QLIST_HEAD_INITIALIZER(head) \ argument
103 #define QLIST_INIT(head) do { \ argument
122 #define QLIST_INSERT_HEAD(head, elm, field) do { \ argument
129 #define QLIST_INSERT_HEAD_RCU(head, elm, field) do { \ argument
147 #define QLIST_FOREACH(var, head, field) \ argument
152 #define QLIST_FOREACH_SAFE(var, head, field, next_var) \ argument
160 #define QLIST_EMPTY(head) ((head)->lh_first == NULL) argument
161 #define QLIST_FIRST(head) ((head)->lh_first) argument
173 #define QSLIST_HEAD_INITIALIZER(head) \ argument
184 #define QSLIST_INIT(head) do { \ argument
[all …]
/external/chromium_org/third_party/usrsctp/usrsctplib/
Duser_queue.h117 #define QMD_TRACE_HEAD(head) do { \ argument
133 #define QMD_TRACE_HEAD(head) argument
147 #define SLIST_HEAD_INITIALIZER(head) \ argument
164 #define SLIST_EMPTY(head) ((head)->slh_first == NULL) argument
166 #define SLIST_FIRST(head) ((head)->slh_first) argument
168 #define SLIST_FOREACH(var, head, field) \ argument
173 #define SLIST_FOREACH_SAFE(var, head, field, tvar) \ argument
178 #define SLIST_FOREACH_PREVPTR(var, varp, head, field) \ argument
183 #define SLIST_INIT(head) do { \ argument
192 #define SLIST_INSERT_HEAD(head, elm, field) do { \ argument
[all …]
/external/linux-tools-perf/perf-3.12.0/include/linux/
Dlist.h60 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()
153 static inline void list_move(struct list_head *list, struct list_head *head) in list_move()
165 struct list_head *head) in list_move_tail()
177 const struct list_head *head) in list_is_last()
186 static inline int list_empty(const struct list_head *head) in list_empty()
204 static inline int list_empty_careful(const struct list_head *head) in list_empty_careful()
214 static inline void list_rotate_left(struct list_head *head) in list_rotate_left()
228 static inline int list_is_singular(const struct list_head *head) in list_is_singular()
234 struct list_head *head, struct list_head *entry) in __list_cut_position()
[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/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/ipsec-tools/src/racoon/
Dgenlist.c50 genlist_insert (struct genlist *head, void *data) in genlist_insert()
59 genlist_append (struct genlist *head, void *data) in genlist_append()
68 genlist_foreach (struct genlist *head, genlist_func_t func, void *arg) in genlist_foreach()
82 genlist_next (struct genlist *head, struct genlist_entry **buf) in genlist_next()
96 genlist_free (struct genlist *head, genlist_freedata_t func) in genlist_free()
/external/jemalloc/test/unit/
Dql.c15 test_empty_list(list_head_t *head) in test_empty_list()
39 list_head_t head; in TEST_BEGIN() local
58 test_entries_list(list_head_t *head, list_t *entries, unsigned nentries) in test_entries_list()
96 list_head_t head; in TEST_BEGIN() local
111 list_head_t head; in TEST_BEGIN() local
130 list_head_t head; in TEST_BEGIN() local
145 list_head_t head; in TEST_BEGIN() local
164 list_head_t head; in TEST_BEGIN() local
/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/e2fsprogs/lib/blkid/
Dlist.h58 _INLINE_ void list_add(struct list_head *add, struct list_head *head) in list_add()
71 _INLINE_ void list_add_tail(struct list_head *add, struct list_head *head) in list_add_tail()
116 _INLINE_ int list_empty(struct list_head *head) in list_empty()
126 _INLINE_ void list_splice(struct list_head *list, struct list_head *head) in list_splice()
156 #define list_for_each(pos, head) \ argument
166 #define list_for_each_safe(pos, pnext, head) \ argument
/external/oprofile/libutil/
Dop_list.h64 static __inline__ void list_add(struct list_head * new_entry, struct list_head * head) in list_add()
77 static __inline__ void list_add_tail(struct list_head * new_entry, struct list_head * head) in list_add_tail()
120 static __inline__ int list_empty(struct list_head const * head) in list_empty()
130 static __inline__ void list_splice(struct list_head * list, struct list_head * head) in list_splice()
160 #define list_for_each(pos, head) \ argument
169 #define list_for_each_safe(pos, n, head) \ argument
/external/f2fs-tools/include/
Dlist.h38 static inline void list_add(struct list_head *new, struct list_head *head) in list_add()
43 static inline void list_add_tail(struct list_head *new, struct list_head *head) in list_add_tail()
66 static inline int list_empty(const struct list_head *head) in list_empty()
74 #define list_for_each(pos, head) \ argument
77 #define list_for_each_safe(pos, n, head) \ argument
80 #define list_for_each_entry(pos, head, member) \ argument
84 #define list_for_each_entry_safe(pos, n, head, member) \ argument
/external/chromium_org/sandbox/linux/bpf_dsl/
Dcons.h23 const T& head() const { return head_; } in head() function
29 static List Make(const T& head, List tail) { in Make()
34 Cons(const T& head, List tail) : head_(head), tail_(tail) {} in Cons()
/external/fio/
Dflist.h65 struct flist_head *head) in flist_add()
71 struct flist_head *head) in flist_add_tail()
117 static inline int flist_empty(const struct flist_head *head) in flist_empty()
137 struct flist_head *head) in flist_splice()
144 struct flist_head *head) in flist_splice_init()
166 #define flist_for_each(pos, head) \ argument
175 #define flist_for_each_safe(pos, n, head) \ argument
/external/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
/external/apache-xml/src/main/java/org/apache/xalan/templates/
DTemplateList.java140 TemplateSubPatternAssociation head = in dumpAssociationTables() local
154 TemplateSubPatternAssociation head = m_wildCardPatterns; in dumpAssociationTables() local
188 TemplateSubPatternAssociation head = in compose() local
224 insertAssociationIntoList(TemplateSubPatternAssociation head, in insertAssociationIntoList()
356 TemplateSubPatternAssociation head = isWildCard in insertPatternInTable() local
434 TemplateSubPatternAssociation head; in getHead() local
502 TemplateSubPatternAssociation head; in getTemplateFast() local
601 TemplateSubPatternAssociation head = getHead(xctxt, targetNode, dtm); in getTemplate() local
666 TemplateSubPatternAssociation head = getHead(xctxt, targetNode, dtm); in getTemplate() local
726 private void checkConflicts(TemplateSubPatternAssociation head, in checkConflicts()
/external/mesa3d/src/mesa/drivers/dri/intel/
Dintel_resolve_map.c36 intel_resolve_map_set(struct intel_resolve_map *head, in intel_resolve_map_set()
66 intel_resolve_map_get(struct intel_resolve_map *head, in intel_resolve_map_get()
99 intel_resolve_map_clear(struct intel_resolve_map *head) in intel_resolve_map_clear()
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/intel/
Dintel_resolve_map.c36 intel_resolve_map_set(struct intel_resolve_map *head, in intel_resolve_map_set()
66 intel_resolve_map_get(struct intel_resolve_map *head, in intel_resolve_map_get()
99 intel_resolve_map_clear(struct intel_resolve_map *head) in intel_resolve_map_clear()
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
Dintel_resolve_map.c36 intel_resolve_map_set(struct intel_resolve_map *head, in intel_resolve_map_set()
66 intel_resolve_map_get(struct intel_resolve_map *head, in intel_resolve_map_get()
99 intel_resolve_map_clear(struct intel_resolve_map *head) in intel_resolve_map_clear()
/external/mesa3d/src/mesa/drivers/dri/i915/
Dintel_resolve_map.c36 intel_resolve_map_set(struct intel_resolve_map *head, in intel_resolve_map_set()
66 intel_resolve_map_get(struct intel_resolve_map *head, in intel_resolve_map_get()
99 intel_resolve_map_clear(struct intel_resolve_map *head) in intel_resolve_map_clear()
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i915/
Dintel_resolve_map.c36 intel_resolve_map_set(struct intel_resolve_map *head, in intel_resolve_map_set()
66 intel_resolve_map_get(struct intel_resolve_map *head, in intel_resolve_map_get()
99 intel_resolve_map_clear(struct intel_resolve_map *head) in intel_resolve_map_clear()

12345678910>>...20