HomeSort by: relevance | last modified time | path
    Searched defs:phn (Results 1 - 4 of 4) sorted by relevancy

  /src/external/bsd/jemalloc.old/dist/include/jemalloc/internal/
ph.h 19 #define phn(a_type) \ macro
202 a_attr void a_prefix##insert(a_ph_type *ph, a_type *phn); \
205 a_attr void a_prefix##remove(a_ph_type *ph, a_type *phn);
240 a_prefix##insert(a_ph_type *ph, a_type *phn) { \
241 memset(&phn->a_field, 0, sizeof(phn(a_type))); \
252 ph->ph_root = phn; \
254 phn_next_set(a_type, a_field, phn, phn_next_get(a_type, \
260 phn); \
262 phn_prev_set(a_type, a_field, phn, ph->ph_root);
    [all...]
  /src/external/bsd/jemalloc.old/include/jemalloc/internal/
ph.h 19 #define phn(a_type) \ macro
202 a_attr void a_prefix##insert(a_ph_type *ph, a_type *phn); \
205 a_attr void a_prefix##remove(a_ph_type *ph, a_type *phn);
240 a_prefix##insert(a_ph_type *ph, a_type *phn) { \
241 memset(&phn->a_field, 0, sizeof(phn(a_type))); \
252 ph->ph_root = phn; \
254 phn_next_set(a_type, a_field, phn, phn_next_get(a_type, \
260 phn); \
262 phn_prev_set(a_type, a_field, phn, ph->ph_root);
    [all...]
  /src/external/bsd/jemalloc/dist/include/jemalloc/internal/
ph.h 75 phn_link_get(void *phn, size_t offset) {
76 return (phn_link_t *)(((uintptr_t)phn) + offset);
80 phn_link_init(void *phn, size_t offset) {
81 phn_link_get(phn, offset)->prev = NULL;
82 phn_link_get(phn, offset)->next = NULL;
83 phn_link_get(phn, offset)->lchild = NULL;
88 phn_lchild_get(void *phn, size_t offset) {
89 return phn_link_get(phn, offset)->lchild;
93 phn_lchild_set(void *phn, void *lchild, size_t offset) {
94 phn_link_get(phn, offset)->lchild = lchild
226 void *phn = phn_next_get(ph->root, offset); local
    [all...]
  /src/external/bsd/jemalloc/include/jemalloc/internal/
ph.h 75 phn_link_get(void *phn, size_t offset) {
76 return (phn_link_t *)(((uintptr_t)phn) + offset);
80 phn_link_init(void *phn, size_t offset) {
81 phn_link_get(phn, offset)->prev = NULL;
82 phn_link_get(phn, offset)->next = NULL;
83 phn_link_get(phn, offset)->lchild = NULL;
88 phn_lchild_get(void *phn, size_t offset) {
89 return phn_link_get(phn, offset)->lchild;
93 phn_lchild_set(void *phn, void *lchild, size_t offset) {
94 phn_link_get(phn, offset)->lchild = lchild
226 void *phn = phn_next_get(ph->root, offset); local
    [all...]

Completed in 15 milliseconds