| /src/lib/libc/include/isc/ |
| list.h | 29 #define INIT_LINK_TYPE(elt, link, type) \ 31 (elt)->link.prev = (type *)(-1); \ 32 (elt)->link.next = (type *)(-1); \ 34 #define INIT_LINK(elt, link) \ 35 INIT_LINK_TYPE(elt, link, void) 36 #define LINKED(elt, link) ((void *)((elt)->link.prev) != (void *)(-1) && \ 37 (void *)((elt)->link.next) != (void *)(-1)) 43 #define PREPEND(list, elt, link) \ 45 INSIST(!LINKED(elt, link)); [all...] |
| /src/external/bsd/libbind/dist/include/isc/ |
| list.h | 29 #define INIT_LINK_TYPE(elt, link, type) \ 31 (elt)->link.prev = (type *)(-1); \ 32 (elt)->link.next = (type *)(-1); \ 34 #define INIT_LINK(elt, link) \ 35 INIT_LINK_TYPE(elt, link, void) 36 #define LINKED(elt, link) ((void *)((elt)->link.prev) != (void *)(-1) && \ 37 (void *)((elt)->link.next) != (void *)(-1)) 43 #define PREPEND(list, elt, link) \ 45 INSIST(!LINKED(elt, link)); [all...] |
| /src/external/mpl/bind/dist/lib/isc/include/isc/ |
| list.h | 54 #define ISC_LINK_INIT_TYPE(elt, link, type) \ 56 (elt)->link.prev = ISC_LINK_TOMBSTONE(type); \ 57 (elt)->link.next = ISC_LINK_TOMBSTONE(type); \ 59 #define ISC_LINK_INIT(elt, link) ISC_LINK_INIT_TYPE(elt, link, void) 60 #define ISC_LINK_LINKED_TYPE(elt, link, type) \ 61 ((type *)((elt)->link.prev) != ISC_LINK_TOMBSTONE(type)) 62 #define ISC_LINK_LINKED(elt, link) ISC_LINK_LINKED_TYPE(elt, link, void) 68 #define __ISC_LIST_PREPENDUNSAFE(list, elt, link) [all...] |
| /src/external/bsd/ntp/dist/libntp/lib/isc/include/isc/ |
| list.h | 38 #define ISC_LINK_INIT_TYPE(elt, link, type) \ 40 (elt)->link.prev = (type *)(-1); \ 41 (elt)->link.next = (type *)(-1); \ 43 #define ISC_LINK_INIT(elt, link) \ 44 ISC_LINK_INIT_TYPE(elt, link, void) 45 #define ISC_LINK_LINKED(elt, link) ((void *)((elt)->link.prev) != (void *)(-1)) 51 #define __ISC_LIST_PREPENDUNSAFE(list, elt, link) \ 54 (list).head->link.prev = (elt); \ 56 (list).tail = (elt); \ [all...] |
| /src/external/mpl/dhcp/bind/dist/lib/isc/include/isc/ |
| list.h | 53 #define ISC_LINK_INIT_TYPE(elt, link, type) \ 55 (elt)->link.prev = ISC_LINK_TOMBSTONE(type); \ 56 (elt)->link.next = ISC_LINK_TOMBSTONE(type); \ 58 #define ISC_LINK_INIT(elt, link) ISC_LINK_INIT_TYPE(elt, link, void) 59 #define ISC_LINK_LINKED_TYPE(elt, link, type) \ 60 ((type *)((elt)->link.prev) != ISC_LINK_TOMBSTONE(type)) 61 #define ISC_LINK_LINKED(elt, link) ISC_LINK_LINKED_TYPE(elt, link, void) 67 #define __ISC_LIST_PREPENDUNSAFE(list, elt, link) [all...] |
| /src/external/mpl/bind/dist/lib/isccc/ |
| symtab.c | 46 typedef struct elt { struct 50 ISC_LINK(struct elt) link; 102 free_elt(isccc_symtab_t *symtab, unsigned int bucket, elt_t *elt) { 103 ISC_LIST_UNLINK(symtab->table[bucket], elt, link); 105 (symtab->undefine_action)(elt->key, elt->type, elt->value, 108 free(elt); 115 elt_t *elt, *nelt; local 123 for (elt = ISC_LIST_HEAD(symtab->table[i]); elt != NULL 192 elt_t *elt; local 212 elt_t *elt; local 255 elt_t *elt; local 275 elt_t *elt, *nelt; local [all...] |
| /src/external/gpl3/gdb/dist/gdb/ |
| type-stack.h | 85 type_stack_elt elt; local 86 elt.piece = tp; 87 m_elements.push_back (elt); 92 type_stack_elt elt; local 93 elt.int_val = n; 94 m_elements.push_back (elt); 101 type_stack_elt elt; local 102 elt.stack_val = stack; 103 m_elements.push_back (elt); 113 type_stack_elt elt; local 135 type_stack_elt elt = m_elements.back (); local 143 type_stack_elt elt = m_elements.back (); local 153 type_stack_elt elt = m_elements.back (); local [all...] |
| /src/external/gpl3/gdb.old/dist/gdb/ |
| type-stack.h | 85 type_stack_elt elt; local 86 elt.piece = tp; 87 m_elements.push_back (elt); 92 type_stack_elt elt; local 93 elt.int_val = n; 94 m_elements.push_back (elt); 101 type_stack_elt elt; local 102 elt.stack_val = stack; 103 m_elements.push_back (elt); 113 type_stack_elt elt; local 135 type_stack_elt elt = m_elements.back (); local 143 type_stack_elt elt = m_elements.back (); local 153 type_stack_elt elt = m_elements.back (); local [all...] |
| /src/external/mpl/bind/dist/tests/ns/ |
| listenlist_test.c | 44 ns_listenelt_t *elt; local 56 elt = ISC_LIST_HEAD(list->elts); 57 while (elt != NULL) { 58 ns_listenelt_t *next = ISC_LIST_NEXT(elt, link); 61 dns_acl_attach(elt->acl, &acl); 62 ISC_LIST_UNLINK(list->elts, elt, link); 63 ns_listenelt_destroy(elt); 64 elt = next; 83 elt = ISC_LIST_HEAD(list->elts); 84 while (elt != NULL) [all...] |
| /src/external/gpl2/gettext/dist/gettext-tools/gnulib-lib/ |
| gl_list.c | 87 gl_list_set_at (gl_list_t list, size_t position, const void *elt) 90 ->set_at (list, position, elt); 94 gl_list_search (gl_list_t list, const void *elt) 98 ->search_from_to (list, 0, size, elt); 102 gl_list_search_from (gl_list_t list, size_t start_index, const void *elt) 106 ->search_from_to (list, start_index, size, elt); 110 gl_list_search_from_to (gl_list_t list, size_t start_index, size_t end_index, const void *elt) 113 ->search_from_to (list, start_index, end_index, elt); 117 gl_list_indexof (gl_list_t list, const void *elt) 121 ->indexof_from_to (list, 0, size, elt); [all...] |
| gl_list.h | 103 typedef size_t (*gl_listelement_hashcode_fn) (const void *elt); 170 const void *elt); 174 extern gl_list_node_t gl_list_search (gl_list_t list, const void *elt); 180 const void *elt); 188 const void *elt); 192 extern size_t gl_list_indexof (gl_list_t list, const void *elt); 198 const void *elt); 205 const void *elt); 209 extern gl_list_node_t gl_list_add_first (gl_list_t list, const void *elt); 213 extern gl_list_node_t gl_list_add_last (gl_list_t list, const void *elt); [all...] |
| /src/external/mpl/bind/dist/lib/isc/ |
| symtab.c | 27 typedef struct elt { struct 31 LINK(struct elt) link; 88 elt_t *elt, *nelt; local 96 for (elt = HEAD(symtab->table[i]); elt != NULL; elt = nelt) { 97 nelt = NEXT(elt, link); 99 (symtab->undefine_action)(elt->key, elt->type, 100 elt->value 155 elt_t *elt; local 189 elt_t *elt, *nelt; local 214 elt_t *elt; local 265 elt_t *elt; local [all...] |
| /src/external/mpl/dhcp/bind/dist/lib/isc/ |
| symtab.c | 27 typedef struct elt { struct 31 LINK(struct elt) link; 88 elt_t *elt, *nelt; local 96 for (elt = HEAD(symtab->table[i]); elt != NULL; elt = nelt) { 97 nelt = NEXT(elt, link); 99 (symtab->undefine_action)(elt->key, elt->type, 100 elt->value 158 elt_t *elt; local 194 elt_t *elt, *nelt; local 219 elt_t *elt; local 270 elt_t *elt; local [all...] |
| /src/external/gpl3/gcc.old/dist/gcc/config/nds32/ |
| nds32-predicates.cc | 58 rtx elt; local 65 elt = XVECEXP (op, 0, i + par_index); 68 if (GET_CODE (elt) != SET) 72 elt_reg = load_p ? SET_DEST (elt) : SET_SRC (elt); 73 elt_mem = load_p ? SET_SRC (elt) : SET_DEST (elt); 111 rtx elt; local 120 elt = XVECEXP (op, 0, 1); 125 elt = XVECEXP (op, 0, 0) 198 rtx elt; local [all...] |
| /src/external/gpl3/gcc.old/dist/libstdc++-v3/src/c++11/ |
| condition_variable.cc | 65 auto elt = (__at_thread_exit_elt*)p; local 66 while (elt) 68 auto next = elt->_M_next; 69 elt->_M_cb(elt); 70 elt = next; 76 auto elt = (__at_thread_exit_elt*)__gthread_getspecific(key); local 78 run(elt); 115 __at_thread_exit(__at_thread_exit_elt* elt) 120 elt->_M_next = (__at_thread_exit_elt*)__gthread_getspecific(key) [all...] |
| /src/external/gpl3/gcc/dist/gcc/config/nds32/ |
| nds32-predicates.cc | 58 rtx elt; local 65 elt = XVECEXP (op, 0, i + par_index); 68 if (GET_CODE (elt) != SET) 72 elt_reg = load_p ? SET_DEST (elt) : SET_SRC (elt); 73 elt_mem = load_p ? SET_SRC (elt) : SET_DEST (elt); 111 rtx elt; local 120 elt = XVECEXP (op, 0, 1); 125 elt = XVECEXP (op, 0, 0) 198 rtx elt; local [all...] |
| /src/external/gpl3/gcc/dist/libstdc++-v3/src/c++11/ |
| condition_variable.cc | 65 auto elt = (__at_thread_exit_elt*)p; local 66 while (elt) 68 auto next = elt->_M_next; 69 elt->_M_cb(elt); 70 elt = next; 76 auto elt = (__at_thread_exit_elt*)__gthread_getspecific(key); local 78 run(elt); 115 __at_thread_exit(__at_thread_exit_elt* elt) 120 elt->_M_next = (__at_thread_exit_elt*)__gthread_getspecific(key) [all...] |
| /src/external/mpl/bind/dist/lib/ns/ |
| listenlist.c | 38 ns_listenelt_t *elt = NULL; local 188 elt = isc_mem_get(mctx, sizeof(*elt)); 189 elt->mctx = mctx; 190 ISC_LINK_INIT(elt, link); 191 elt->port = port; 192 elt->is_http = false; 193 elt->acl = acl; 194 elt->sslctx = sslctx; 195 elt->sslctx_cache = NULL 303 ns_listenelt_t *elt, *next; local 334 ns_listenelt_t *elt = NULL; local [all...] |
| /src/external/gpl3/gcc.old/dist/gcc/ |
| rtx-vector-builder.cc | 73 RTVEC_ELT (v, i) = elt (i); 89 rtx elt = (*this)[0]; 93 if (elt == const1_rtx) 95 else if (elt == constm1_rtx) 97 else if (elt == const0_rtx) 106 if (elt == CONST0_RTX (inner_mode)) 108 else if (elt == CONST1_RTX (inner_mode)) 110 else if (elt == CONSTM1_RTX (inner_mode))
|
| /src/external/gpl3/gcc/dist/gcc/ |
| rtx-vector-builder.cc | 73 RTVEC_ELT (v, i) = elt (i); 89 rtx elt = (*this)[0]; 93 if (elt == const1_rtx) 95 else if (elt == constm1_rtx) 97 else if (elt == const0_rtx) 106 if (elt == CONST0_RTX (inner_mode)) 108 else if (elt == CONST1_RTX (inner_mode)) 110 else if (elt == CONSTM1_RTX (inner_mode))
|
| /src/external/gpl3/gcc.old/dist/libstdc++-v3/libsupc++/ |
| atexit_thread.cc | 58 struct elt struct in namespace:__anon12236 62 elt *next; 71 elt *single_thread; 76 elt *e = static_cast<elt*>(p); 79 elt *old_e = e; 146 elt *first; 148 first = static_cast<elt*>(__gthread_getspecific (key)); 152 elt *new_elt = new (std::nothrow) elt; [all...] |
| /src/external/gpl2/groff/dist/src/preproc/grn/ |
| gprint.h | 80 } ELT; 82 #define DBNextElt(elt) (elt->nextelt) 83 #define DBNextofSet(elt) (elt->setnext) 84 #define DBNullelt(elt) (elt == NULL)
|
| /src/external/gpl3/gcc/dist/libstdc++-v3/libsupc++/ |
| atexit_thread.cc | 76 struct elt 80 elt *next; 89 elt *single_thread; 94 elt *e = static_cast<elt*>(p); 97 elt *old_e = e; 185 elt *first; 187 first = static_cast<elt*>(__gthread_getspecific (key)); 191 elt *new_elt = new (std::nothrow) elt; [all...] |
| /src/external/bsd/nsd/dist/ |
| netio.c | 41 netio_handler_list_type *elt; local 51 elt = netio->deallocated; 52 netio->deallocated = elt->next; 57 elt = (netio_handler_list_type *) region_alloc( 61 elt->next = netio->handlers; 62 elt->handler = handler; 63 elt->handler->pfd = -1; 64 netio->handlers = elt; 116 netio_handler_list_type *elt; local 144 for (elt = netio->handlers; elt; elt = elt->next) [all...] |
| /src/external/gpl3/gcc.old/dist/gcc/config/ |
| vxworks.cc | 113 constructor_elt elt = {field, fold_convert (TREE_TYPE (field), tmpl_addr)}; local 114 v->quick_push (elt); 117 elt.index = field; 118 elt.value = build_int_cst (TREE_TYPE (field), 0); 119 v->quick_push (elt); 122 elt.index = field; 123 elt.value = fold_convert (TREE_TYPE (field), DECL_SIZE_UNIT (decl)); 124 v->quick_push (elt);
|