Searched refs:node_header_t (Results 1 - 2 of 2) sorted by relevance

/freebsd-13-stable/contrib/apr-util/buckets/
H A Dapr_buckets_alloc.c25 typedef struct node_header_t { struct
29 struct node_header_t *next;
30 } node_header_t; typedef in typeref:struct:node_header_t
32 #define SIZEOF_NODE_HEADER_T APR_ALIGN_DEFAULT(sizeof(node_header_t))
41 node_header_t *freelist;
159 node_header_t *node;
181 node = (node_header_t *)active->first_avail;
193 node = (node_header_t *)memnode->first_avail;
205 static void check_not_already_free(node_header_t *node)
208 node_header_t *cur
[all...]
/freebsd-13-stable/contrib/serf/buckets/
H A Dallocator.c29 typedef struct node_header_t { struct
32 struct node_header_t *next; /* if size == 0 (freed/inactive) */
36 } node_header_t; typedef in typeref:struct:node_header_t
38 /* The size of a node_header_t, properly aligned. Note that (normally)
40 * mind when altering the node_header_t structure. Also, keep in mind that
41 * node_header_t is an overhead for every allocation performed through
44 #define SIZEOF_NODE_HEADER_T APR_ALIGN_DEFAULT(sizeof(node_header_t))
98 node_header_t *freelist; /* free STANDARD_NODE_SIZE blocks */
175 node_header_t *node;
212 node = (node_header_t *)activ
[all...]

Completed in 104 milliseconds